/** Shopify CDN: Minification failed

Line 84:19 Unexpected "*"

**/
/* ==========================================================================
   WheelTireHub.ca — B2B Dealer Portal Stylesheet
   Complete CSS overhaul: DT Tire-inspired dense, functional portal design.
   Built on Shopify Dawn theme with aggressive overrides.
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --wth-navy: #001f41;
  --wth-navy-light: #002b5a;
  --wth-navy-dark: #001332;
  --wth-accent: #074a93;
  --wth-accent-hover: #0851a2;
  --wth-bg: #ffffff;
  --wth-card: #FFFFFF;
  --wth-white: #ffffff;
  --wth-text: #001332;
  --wth-text-secondary: #626d78;
  --wth-text-muted: #999999;
  --wth-border: #e5e5e5;
  --wth-border-light: #ececec;
  --wth-success: #5cb85c;
  --wth-success-bg: #e6f4ea;
  --wth-warning: #f0ad4e;
  --wth-warning-bg: #fff8e1;
  --wth-danger: #d9534f;
  --wth-danger-bg: #fde8e8;
  --wth-info: #074a93;
  --wth-info-bg: #c4e3f3;
  --wth-row-alt: #f5f5f5;
  --wth-font: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --wth-radius: 8px;
  --wth-radius-sm: 3px;
  --wth-max-width: 1400px;
  --wth-sidebar-width: 260px;
  --wth-transition: 0.15s ease;
  --wth-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --wth-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
  --wth-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  /* Additional color definitions */
  --wth-blue: #074a93;
  --wth-blue-light: #c4e3f3;
  --wth-green: #16a34a;
  --wth-green-bg: #e6f4ea;
  --wth-red: #dc2626;
  --wth-red-bg: #fde8e8;

  /* Primary color aliases for fitment components */
  --wth-primary-dark: #001332;
  --wth-primary-light: #074a93;
  --wth-primary-hover: #0851a2;
}

/* Icon size scale: 12px (inline), 16px (button), 20px (nav), 24px (heading), 32px (feature), 48px (hero) */
/* Z-index scale: 10 (sticky), 50 (dropdown), 100 (overlay), 1000 (modal), 9999 (drawer), 10000 (toast) */
/* Breakpoints: 640px (mobile), 768px (tablet-portrait), 1024px (tablet-landscape), 1400px (desktop max-width) */


/* ==========================================================================
   2. GLOBAL DAWN OVERRIDES — Strip consumer styling, enforce portal density
   ========================================================================== */

/* --- Kill ALL Dawn section spacing --- */
.shopify-section {
  --section-padding-top: 0px;
  --section-padding-bottom: 0px;
  margin: 0;
  padding: 0;
}

.shopify-section + .shopify-section {
  margin-top: 0;
  border-top: none;
}

.section-template--*,
.shopify-section .section-template--* {
  --section-padding-top: 0px;
  --section-padding-bottom: 0px;
}

/* Dawn section internal padding — flatten */
.shopify-section .section {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Page width container */
.page-width {
  max-width: var(--wth-max-width);
  padding-left: 16px;
  padding-right: 16px;
}

/* --- Hide Dawn's default header section (we use wth-header) --- */
/* Must override Shopify rendered styles; !important required */
.section-header {
  display: none !important;
}

/* --- Hide Dawn's default announcement bar (we use wth-announce) --- */
/* Must override Shopify rendered styles; !important required */
.shopify-section-announcement-bar,
.shopify-section--announcement-bar,
.announcement-bar-section {
  display: none !important;
}

/* --- Body --- */
body {
  font-family: var(--wth-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--wth-text);
  background-color: var(--wth-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* --- No scroll-reveal animations --- */
/* Must override Shopify animations; !important required */
.scroll-trigger,
.scroll-trigger.scroll-trigger--design-mode,
[class*="scroll-trigger"] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* --- Typography — tighter, denser --- */
h1, .h1 { font-size: 1.5rem; font-weight: 700; line-height: 1.2; color: var(--wth-navy); margin: 0 0 12px; }
h2, .h2 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; color: var(--wth-navy); margin: 0 0 10px; }
h3, .h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; color: var(--wth-text); margin: 0 0 8px; }
h4, .h4 { font-size: 0.9375rem; font-weight: 700; line-height: 1.3; color: var(--wth-text); margin: 0 0 6px; }
h5, .h5 { font-size: 0.8125rem; font-weight: 700; line-height: 1.3; color: var(--wth-text-secondary); margin: 0 0 4px; }

p, .rte, .rte p {
  color: var(--wth-text);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--wth-info);
  text-decoration: none;
  transition: color var(--wth-transition);
}

a:hover {
  color: var(--wth-accent-hover);
}

/* --- Dawn card defaults — override entirely --- */
.card,
.card--standard,
.card--card {
  --card-padding: 0px;
  border-radius: var(--wth-radius);
  border: 1px solid var(--wth-border);
  box-shadow: none;
}

.card__inner {
  border-radius: var(--wth-radius);
  overflow: hidden;
}

/* --- Dawn buttons — compact, portal style --- */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 36px;
  border-radius: var(--wth-radius);
  transition: background-color var(--wth-transition), box-shadow var(--wth-transition);
  font-family: var(--wth-font);
}

/* --- Dawn section headings override --- */
.section__heading,
.title--primary,
h2.title,
.collection__title,
.featured-collection h2,
.rich-text__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wth-navy);
  padding-left: 12px;
  border-left: 3px solid var(--wth-accent);
  line-height: 1.25;
  margin-bottom: 12px;
}

/* --- Dawn product card overrides --- */
.card-wrapper,
.product-card-wrapper .card {
  transition: box-shadow var(--wth-transition);
}

.card-wrapper:hover,
.product-card-wrapper:hover .card {
  box-shadow: var(--wth-shadow-md);
}

.card__heading a,
.card-information__text a {
  font-weight: 600;
  font-size: 13px;
  color: var(--wth-text);
  text-decoration: none;
}

.card__heading a:hover,
.card-information__text a:hover {
  color: var(--wth-accent);
}

.card__information .caption-with-letter-spacing,
.card__information .card__text--vendor,
.card-information .price__vendor {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wth-text-secondary);
}


/* ==========================================================================
   3. .wth-card — Universal white card container
   ========================================================================== */
.wth-card {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  padding: 16px;
  margin-bottom: 16px;
}

.wth-card--flush {
  padding: 0;
}

.wth-card--compact {
  padding: 12px;
}

.wth-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--wth-border-light);
}

.wth-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wth-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.wth-card__action {
  font-size: 12px;
  font-weight: 600;
  color: var(--wth-accent);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--wth-font);
}

.wth-card__action:hover {
  text-decoration: underline;
}


/* ==========================================================================
   4. .wth-table — Styled data tables (order history, inventory, etc.)
   ========================================================================== */
.wth-table-wrap {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  overflow-x: auto;
}

.wth-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--wth-font);
}

.wth-table thead {
  background-color: var(--wth-bg);
}

.wth-table th {
  padding: 8px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-text-secondary);
  border-bottom: 2px solid var(--wth-border);
  white-space: nowrap;
  user-select: none;
}

.wth-table td {
  padding: 8px 14px;
  border-bottom: 1px solid var(--wth-border-light);
  vertical-align: middle;
  color: var(--wth-text);
}

.wth-table tbody tr:nth-child(even) {
  background-color: var(--wth-row-alt);
}

.wth-table tbody tr:last-child td {
  border-bottom: none;
}

.wth-table tbody tr:hover {
  background-color: #eef1f6;
}

.wth-table--compact th,
.wth-table--compact td {
  padding: 6px 10px;
  font-size: 12px;
}

.wth-table--striped tbody tr:nth-child(odd) {
  background-color: var(--wth-card);
}

.wth-table--striped tbody tr:nth-child(even) {
  background-color: var(--wth-row-alt);
}

/* Sortable column header */
.wth-table th[data-sort] {
  cursor: pointer;
}

.wth-table th[data-sort]:hover {
  color: var(--wth-navy);
  background-color: #e8eaed;
}

/* Numeric/price column */
.wth-table .col-right {
  text-align: right;
}

.wth-table .col-center {
  text-align: center;
}


/* ==========================================================================
   5. .wth-badge — Status & attribute badges
   ========================================================================== */
.wth-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 1.4;
  font-family: var(--wth-font);
}

/* Season badges */
.wth-badge--winter {
  background-color: #dbeafe;
  color: #1e40af;
}

.wth-badge--summer {
  background-color: #fef3c7;
  color: #92400e;
}

.wth-badge--all-season {
  background-color: #d1fae5;
  color: #065f46;
}

.wth-badge--all-weather {
  background-color: #e0e7ff;
  color: #3730a3;
}

/* Status badges */
.wth-badge--completed,
.wth-badge--fulfilled,
.wth-badge--in-stock {
  background-color: var(--wth-success-bg);
  color: var(--wth-success);
}

.wth-badge--in-progress,
.wth-badge--processing,
.wth-badge--info {
  background-color: var(--wth-info-bg);
  color: var(--wth-info);
}

.wth-badge--partial,
.wth-badge--pending,
.wth-badge--low-stock {
  background-color: var(--wth-warning-bg);
  color: #b45309;
}

.wth-badge--cancelled,
.wth-badge--out-of-stock,
.wth-badge--error {
  background-color: var(--wth-danger-bg);
  color: var(--wth-danger);
}

.wth-badge--neutral {
  background-color: var(--wth-bg);
  color: var(--wth-text-secondary);
}

/* Sale badge */
.wth-badge--sale {
  background-color: var(--wth-accent);
  color: var(--wth-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
}

/* Small dot variant */
.wth-badge--dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  flex-shrink: 0;
}


/* ==========================================================================
   6. .wth-brand-badge — Brand name colored tags
   ========================================================================== */
.wth-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--wth-radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-family: var(--wth-font);
}

.wth-brand-badge img {
  height: 16px;
  width: auto;
}

/* Default brand badge */
.wth-brand-badge--default {
  background-color: var(--wth-bg);
  color: var(--wth-text-secondary);
  border: 1px solid var(--wth-border);
}

/* Colored brand badges (e.g., Michelin = blue, Bridgestone = red, etc.) */
.wth-brand-badge--michelin  { background-color: #002f5f; color: var(--wth-white); }
.wth-brand-badge--bridgestone { background-color: #cc0000; color: var(--wth-white); }
.wth-brand-badge--goodyear  { background-color: #003087; color: #ffd100; }
.wth-brand-badge--continental { background-color: #f0ab00; color: #1a1a1a; }
.wth-brand-badge--pirelli   { background-color: #1a1a1a; color: var(--wth-white); }
.wth-brand-badge--hankook   { background-color: #f37021; color: var(--wth-white); }
.wth-brand-badge--toyo      { background-color: #e31837; color: var(--wth-white); }
.wth-brand-badge--yokohama  { background-color: #e60012; color: var(--wth-white); }
.wth-brand-badge--cooper    { background-color: #004b87; color: var(--wth-white); }
.wth-brand-badge--nokian    { background-color: #009639; color: var(--wth-white); }
.wth-brand-badge--bfgoodrich { background-color: #c8102e; color: var(--wth-white); }
.wth-brand-badge--general   { background-color: #1a1a1a; color: #d4a843; }
.wth-brand-badge--firestone { background-color: #d0103a; color: var(--wth-white); }
.wth-brand-badge--kumho     { background-color: #003478; color: var(--wth-white); }
.wth-brand-badge--nexen     { background-color: #e31e26; color: var(--wth-white); }
.wth-brand-badge--sailun    { background-color: #004ea2; color: var(--wth-white); }
.wth-brand-badge--gislaved  { background-color: #003b73; color: var(--wth-white); }


/* ==========================================================================
   7. .wth-tabs — Tab bar (DT Tire search-style tabs)
   ========================================================================== */
.wth-tabs {
  display: flex;
  gap: 0;
  background-color: var(--wth-navy);
  border-radius: var(--wth-radius) var(--wth-radius) 0 0;
  overflow: hidden;
}

.wth-tabs__item {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--wth-font);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 3px solid transparent;
  transition: color var(--wth-transition), background-color var(--wth-transition), border-color var(--wth-transition);
}

.wth-tabs__item:hover {
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.06);
}

.wth-tabs__item.is-active,
.wth-tabs__item.active {
  color: var(--wth-white);
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--wth-accent);
}

.wth-tabs__panel {
  display: none;
  background-color: var(--wth-card);
  padding: 16px;
  border: 1px solid var(--wth-border);
  border-top: none;
  border-radius: 0 0 var(--wth-radius) var(--wth-radius);
}

.wth-tabs__panel.is-active,
.wth-tabs__panel.active {
  display: block;
}

/* Light variant tabs (for use on white backgrounds) */
.wth-tabs--light {
  background-color: var(--wth-bg);
  border: 1px solid var(--wth-border);
  border-bottom: none;
}

.wth-tabs--light .wth-tabs__item {
  color: var(--wth-text-secondary);
}

.wth-tabs--light .wth-tabs__item:hover {
  color: var(--wth-text);
  background-color: rgba(0, 0, 0, 0.03);
}

.wth-tabs--light .wth-tabs__item.is-active,
.wth-tabs--light .wth-tabs__item.active {
  color: var(--wth-accent);
  background-color: var(--wth-card);
  border-bottom-color: var(--wth-accent);
  font-weight: 700;
}


/* ==========================================================================
   8. .wth-form — Compact form inputs
   ========================================================================== */
.wth-form__group {
  margin-bottom: 12px;
}

.wth-form__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wth-text-secondary);
  margin-bottom: 4px;
  font-family: var(--wth-font);
}

.wth-form__input,
.wth-form__select,
.wth-form__textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
}

.wth-form__textarea {
  min-height: 80px;
  resize: vertical;
  transition: border-color var(--wth-transition), box-shadow var(--wth-transition);
  box-sizing: border-box;
}

.wth-form__input:focus,
.wth-form__select:focus,
.wth-form__textarea:focus {
  border-color: var(--wth-navy);
  outline: none;
  box-shadow: 0 0 0 2px rgba(27, 43, 75, 0.15);
}

.wth-form__input::placeholder {
  color: var(--wth-text-muted);
}

.wth-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}

.wth-form__select:disabled {
  background-color: var(--wth-bg);
  color: var(--wth-text-muted);
  cursor: not-allowed;
}

.wth-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.wth-form__help {
  font-size: 11px;
  color: var(--wth-text-muted);
  margin-top: 3px;
}

.wth-form__error {
  font-size: 11px;
  color: var(--wth-danger);
  margin-top: 3px;
}

/* Inline form (search bar style) */
.wth-form--inline {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.wth-form--inline .wth-form__group {
  margin-bottom: 0;
  flex: 1;
}


/* ==========================================================================
   9. .wth-btn — Button system
   ========================================================================== */
.wth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--wth-font);
  border: 1px solid transparent;
  border-radius: var(--wth-radius);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: background-color var(--wth-transition), border-color var(--wth-transition), box-shadow var(--wth-transition), color var(--wth-transition);
}

.wth-btn:disabled,
.wth-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary (navy) */
.wth-btn--primary {
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border-color: var(--wth-navy);
}

.wth-btn--primary:hover {
  background-color: var(--wth-navy-light);
  border-color: var(--wth-navy-light);
  color: var(--wth-white);
  box-shadow: var(--wth-shadow-sm);
}
.wth-btn--primary:focus-visible { outline: 2px solid var(--wth-navy); outline-offset: 2px; }

/* Accent (red) */
.wth-btn--accent {
  background-color: var(--wth-accent);
  color: var(--wth-white);
  border-color: var(--wth-accent);
}

.wth-btn--accent:hover {
  background-color: var(--wth-accent-hover);
  border-color: var(--wth-accent-hover);
  color: var(--wth-white);
  box-shadow: 0 2px 8px rgba(204, 45, 55, 0.25);
}
.wth-btn--accent:focus-visible { outline: 2px solid var(--wth-accent); outline-offset: 2px; }

/* Outline */
.wth-btn--outline {
  background-color: transparent;
  color: var(--wth-navy);
  border-color: var(--wth-border);
}

.wth-btn--outline:hover {
  border-color: var(--wth-navy);
  background-color: rgba(27, 43, 75, 0.04);
  color: var(--wth-navy);
}
.wth-btn--outline:focus-visible { outline: 2px solid var(--wth-navy); outline-offset: 2px; }

/* Outline accent */
.wth-btn--outline-accent {
  background-color: transparent;
  color: var(--wth-accent);
  border-color: var(--wth-accent);
}

.wth-btn--outline-accent:hover {
  background-color: var(--wth-accent);
  color: var(--wth-white);
}
.wth-btn--outline-accent:focus-visible { outline: 2px solid var(--wth-accent); outline-offset: 2px; }

/* Ghost (text-only feel) */
.wth-btn--ghost {
  background-color: transparent;
  color: var(--wth-text-secondary);
  border-color: transparent;
  padding: 6px 10px;
}

.wth-btn--ghost:hover {
  background-color: var(--wth-bg);
  color: var(--wth-text);
}
.wth-btn--ghost:focus-visible { outline: 2px solid var(--wth-navy); outline-offset: 2px; }

/* Success */
.wth-btn--success {
  background-color: var(--wth-success);
  color: var(--wth-white);
  border-color: var(--wth-success);
}

.wth-btn--success:hover {
  background-color: #22963e;
  color: var(--wth-white);
}
.wth-btn--success:focus-visible { outline: 2px solid var(--wth-success); outline-offset: 2px; }

/* Global :active press feedback */
button:active, .wth-login-btn:active, [class*="__btn"]:active { transform: scale(0.97); }

/* Compact sizing */
.wth-btn--sm {
  padding: 5px 12px;
  font-size: 11px;
  min-height: 28px;
}

.wth-btn--lg {
  padding: 12px 28px;
  font-size: 15px;
  min-height: 44px;
}

/* Full-width */
.wth-btn--full {
  width: 100%;
}

/* Uppercase */
.wth-btn--caps {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Loading spinner */
/* Hiding text with transparent color; must ensure spinner visibility; !important required */
.wth-btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.wth-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--wth-white);
  border-radius: 50%;
  animation: wth-spin 0.5s linear infinite;
}

@keyframes wth-spin {
  to { transform: rotate(360deg); }
}

/* Button on dark background loading */
.wth-btn--outline.is-loading::after {
  border-color: rgba(27, 43, 75, 0.2);
  border-top-color: var(--wth-navy);
}


/* ==========================================================================
   10. .wth-countdown — Countdown timer
   ========================================================================== */
.wth-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wth-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--wth-accent);
}

.wth-countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border-radius: var(--wth-radius-sm);
  padding: 4px 8px;
  min-width: 40px;
}

.wth-countdown__number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.wth-countdown__label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.wth-countdown__sep {
  font-size: 16px;
  font-weight: 700;
  color: var(--wth-text-muted);
}

.wth-countdown__message {
  font-size: 12px;
  color: var(--wth-accent);
  font-weight: 600;
}


/* ==========================================================================
   11. .wth-search-history — Recent searches list
   ========================================================================== */
.wth-search-history {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--wth-font);
}

.wth-search-history__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-text-secondary);
  padding: 8px 12px 6px;
  margin: 0;
}

.wth-search-history__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--wth-text);
  cursor: pointer;
  transition: background-color var(--wth-transition);
  border-bottom: 1px solid var(--wth-border-light);
}

.wth-search-history__item:last-child {
  border-bottom: none;
}

.wth-search-history__item:hover {
  background-color: var(--wth-row-alt);
}

.wth-search-history__icon {
  width: 14px;
  height: 14px;
  color: var(--wth-text-muted);
  flex-shrink: 0;
}

.wth-search-history__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wth-search-history__remove {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--wth-text-muted);
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  font-size: 12px;
  flex-shrink: 0;
}

.wth-search-history__remove:hover {
  background-color: var(--wth-border);
  color: var(--wth-text);
}


/* ==========================================================================
   12. .wth-pagination — Compact numbered pagination
   ========================================================================== */
.wth-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 0;
  font-family: var(--wth-font);
}

.wth-pagination a,
.wth-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  color: var(--wth-text);
  text-decoration: none;
  transition: background-color var(--wth-transition), border-color var(--wth-transition);
}

.wth-pagination a:hover {
  background-color: var(--wth-bg);
  border-color: #ccc;
  color: var(--wth-text);
}

.wth-pagination .current,
.wth-pagination .is-active {
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border-color: var(--wth-navy);
  font-weight: 600;
}

.wth-pagination .disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.wth-pagination .ellipsis {
  border: none;
  min-width: auto;
  padding: 0 2px;
  color: var(--wth-text-muted);
}

.wth-pagination__info {
  font-size: 12px;
  color: var(--wth-text-secondary);
  margin-left: 12px;
}


/* ==========================================================================
   13. PRODUCT CARD — List view (matches wth-product-card-list snippet)
   ========================================================================== */

/* Note: The snippet renders inline <style> for its own layout.
   These supplemental rules ensure consistency with the global palette. */

.wth-card-list {
  font-family: var(--wth-font);
}

.wth-card-list:hover {
  background-color: var(--wth-row-alt);
}

.wth-card-list__vendor {
  color: var(--wth-text-secondary);
}

.wth-card-list__title a {
  color: var(--wth-text);
}

.wth-card-list__title a:hover {
  color: var(--wth-accent);
  text-decoration: underline;
}

.wth-card-list__tag {
  background-color: var(--wth-bg);
  color: var(--wth-text-secondary);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--wth-radius-sm);
}

.wth-card-list__tag--season {
  background-color: var(--wth-info-bg);
  color: var(--wth-info);
}

.wth-card-list__tag--winter {
  background-color: #dbeafe;
  color: #1e40af;
}

.wth-card-list__tag--summer {
  background-color: #fef3c7;
  color: #92400e;
}

.wth-card-list__price {
  color: var(--wth-navy);
}

.wth-card-list__price--sale {
  color: var(--wth-accent);
}

.wth-card-list__add-btn {
  background-color: var(--wth-accent);
}

.wth-card-list__add-btn:hover {
  background-color: var(--wth-accent-hover);
}


/* ==========================================================================
   14. PRODUCT CARD — Grid view
   ========================================================================== */
.wth-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.wth-product-card {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  padding: 12px;
  font-family: var(--wth-font);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--wth-transition), border-color var(--wth-transition);
}

.wth-product-card:hover {
  border-color: #ccc;
  box-shadow: var(--wth-shadow-md);
}

.wth-product-card__brand {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  height: 24px;
}

.wth-product-card__brand img {
  max-height: 20px;
  width: auto;
}

.wth-product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 8px;
  background: var(--wth-row-alt);
  border-radius: var(--wth-radius-sm);
}

.wth-product-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--wth-text);
  margin: 0 0 4px;
  line-height: 1.3;
}

.wth-product-card__name a {
  color: inherit;
  text-decoration: none;
}

.wth-product-card__name a:hover {
  color: var(--wth-accent);
}

.wth-product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}

.wth-product-card__spec {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--wth-text-secondary);
  background-color: var(--wth-bg);
  padding: 1px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

.wth-product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wth-navy);
  margin: 0 0 2px;
}

.wth-product-card__price-note {
  font-size: 11px;
  color: var(--wth-text-muted);
  margin: 0 0 8px;
}

.wth-product-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wth-product-card__qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wth-product-card__qty label {
  font-size: 11px;
  font-weight: 500;
  color: var(--wth-text-secondary);
}

.wth-product-card__qty-input {
  width: 52px;
  padding: 5px;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  font-family: var(--wth-font);
  -moz-appearance: textfield;
  appearance: textfield;
}
.wth-product-card__qty-input::-webkit-outer-spin-button,
.wth-product-card__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.wth-product-card__qty-input:focus {
  border-color: var(--wth-navy);
  outline: none;
}

.wth-product-card__add-btn {
  display: block;
  width: 100%;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--wth-font);
  color: var(--wth-white);
  background-color: var(--wth-accent);
  border: none;
  border-radius: var(--wth-radius);
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--wth-transition);
}

.wth-product-card__add-btn:hover {
  background-color: var(--wth-accent-hover);
}


/* ==========================================================================
   15. SIDEBAR FILTERS
   ========================================================================== */
.wth-filters {
  position: sticky;
  top: 16px;
  width: var(--wth-sidebar-width);
  flex-shrink: 0;
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  overflow: hidden;
  font-family: var(--wth-font);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.wth-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--wth-border);
  background-color: var(--wth-bg);
}

.wth-filters__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-navy);
  margin: 0;
}

.wth-filters__clear {
  font-size: 11px;
  color: var(--wth-accent);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--wth-font);
}

.wth-filters__clear:hover {
  text-decoration: underline;
}

.wth-filters__group {
  border-bottom: 1px solid var(--wth-border-light);
}

.wth-filters__group:last-child {
  border-bottom: none;
}

.wth-filters__group-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wth-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--wth-font);
  text-align: left;
}

.wth-filters__group-toggle:hover {
  background-color: var(--wth-row-alt);
}

.wth-filters__group-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--wth-text-secondary);
  border-bottom: 2px solid var(--wth-text-secondary);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--wth-transition);
}

.wth-filters__group.is-collapsed .wth-filters__group-toggle::after {
  transform: rotate(-45deg);
}

.wth-filters__group-body {
  padding: 0 14px 10px;
}

.wth-filters__group.is-collapsed .wth-filters__group-body {
  display: none;
}

.wth-filters__option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  cursor: pointer;
  font-size: 12px;
  color: var(--wth-text);
  line-height: 1.3;
}

.wth-filters__option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 2px solid var(--wth-border);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background-color: var(--wth-card);
}

.wth-filters__option input[type="checkbox"]:checked {
  background-color: var(--wth-navy);
  border-color: var(--wth-navy);
}

.wth-filters__option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 8px;
  border: solid var(--wth-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wth-filters__option-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--wth-text-muted);
}

.wth-filters__active {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--wth-border);
}

.wth-filters__tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--wth-text);
  background-color: var(--wth-bg);
  border-radius: 10px;
  white-space: nowrap;
}

.wth-filters__tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 11px;
  line-height: 1;
  color: var(--wth-text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-radius: 50%;
}

.wth-filters__tag-remove:hover {
  background-color: var(--wth-border);
  color: var(--wth-text);
}


/* ==========================================================================
   16. CART TABLE STYLES (old table-based styles removed — see section 39+)
   ========================================================================== */

/* Dawn cart overrides */
.cart__contents,
.cart-items,
cart-items {
  font-family: var(--wth-font);
}

.cart-item__details {
  font-size: 13px;
}

.cart-item__name {
  font-weight: 600;
  color: var(--wth-text);
}

.cart__footer,
.cart__ctas {
  border-top: 1px solid var(--wth-border);
}

.totals__subtotal-value {
  font-weight: 700;
  color: var(--wth-navy);
}


/* ==========================================================================
   17. ACCOUNT / PROFILE STYLES
   ========================================================================== */
.wth-account {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  padding: 16px;
  font-family: var(--wth-font);
}

.wth-account__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.wth-account__welcome {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wth-navy);
  margin: 0;
}

.wth-account__welcome span {
  color: var(--wth-accent);
}

.wth-account__actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wth-account__action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--wth-transition), color var(--wth-transition);
}

.wth-account__action:hover {
  border-color: var(--wth-navy);
  color: var(--wth-navy);
}

.wth-account__action--primary {
  background-color: var(--wth-accent);
  border-color: var(--wth-accent);
  color: var(--wth-white);
}

.wth-account__action--primary:hover {
  background-color: var(--wth-accent-hover);
  border-color: var(--wth-accent-hover);
  color: var(--wth-white);
}

/* Dawn customer account overrides */
.customer {
  font-family: var(--wth-font);
}

.customer h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wth-navy);
}

.customer .field__input {
  font-family: var(--wth-font);
  font-size: 13px;
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  padding: 8px 10px;
}

.customer .field__input:focus {
  border-color: var(--wth-navy);
  box-shadow: 0 0 0 2px rgba(27, 43, 75, 0.15);
}

.customer .field__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wth-text-secondary);
}

.customer a[href*="recover"] {
  font-size: 12px;
  color: var(--wth-info);
}

.customer button[type="submit"],
.customer .button {
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border: none;
  border-radius: var(--wth-radius);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  font-family: var(--wth-font);
}

.customer button[type="submit"]:hover,
.customer .button:hover {
  background-color: var(--wth-navy-light);
}


/* ==========================================================================
   18. ORDER HISTORY TABLE
   ========================================================================== */
.wth-account__table-wrap {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  overflow-x: auto;
}

.wth-account__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.wth-account__table thead {
  background-color: var(--wth-bg);
}

.wth-account__table th {
  padding: 8px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-text-secondary);
  border-bottom: 2px solid var(--wth-border);
  white-space: nowrap;
}

.wth-account__table td {
  padding: 8px 14px;
  border-bottom: 1px solid var(--wth-border-light);
  vertical-align: middle;
  color: var(--wth-text);
}

.wth-account__table tbody tr:nth-child(even) {
  background-color: var(--wth-row-alt);
}

.wth-account__table tbody tr:last-child td {
  border-bottom: none;
}

.wth-account__table tbody tr:hover {
  background-color: #eef1f6;
}

.wth-account__order-id {
  font-weight: 600;
  color: var(--wth-info);
  text-decoration: none;
}

.wth-account__order-id:hover {
  text-decoration: underline;
  color: var(--wth-accent);
}

.wth-account__status {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
}

.wth-account__status--fulfilled {
  background-color: var(--wth-success-bg);
  color: var(--wth-success);
}

.wth-account__status--pending {
  background-color: var(--wth-warning-bg);
  color: #b45309;
}

.wth-account__status--cancelled {
  background-color: var(--wth-danger-bg);
  color: var(--wth-danger);
}

/* Dawn customer order table overrides */
.customer .order-table,
.customer table {
  font-family: var(--wth-font);
  font-size: 13px;
}

.customer .order-table th,
.customer table th {
  background-color: var(--wth-bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-text-secondary);
  padding: 8px 12px;
  border-bottom: 2px solid var(--wth-border);
}

.customer .order-table td,
.customer table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--wth-border-light);
}

.customer .order-table tbody tr:nth-child(even),
.customer table tbody tr:nth-child(even) {
  background-color: var(--wth-row-alt);
}

.customer .order-table tbody tr:hover,
.customer table tbody tr:hover {
  background-color: #eef1f6;
}


/* ==========================================================================
   19. ORDER DETAIL CARD
   ========================================================================== */
.wth-order-detail {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  padding: 16px;
  font-family: var(--wth-font);
}

.wth-order-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.wth-order-detail__number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wth-navy);
  margin: 0;
}

.wth-order-detail__date {
  font-size: 12px;
  color: var(--wth-text-secondary);
  margin-top: 2px;
}

.wth-order-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.wth-order-detail__section {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  padding: 14px;
}

.wth-order-detail__section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wth-text-secondary);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--wth-border-light);
}

.wth-order-detail__field {
  margin-bottom: 4px;
  font-size: 13px;
}

.wth-order-detail__field-label {
  font-weight: 600;
  color: var(--wth-text-secondary);
  font-size: 11px;
  display: block;
}

.wth-order-detail__field-value {
  color: var(--wth-text);
}


/* ==========================================================================
   20. TOP BAR / ANNOUNCEMENT BAR (.wth-top-bar, .wth-announce)
   ========================================================================== */
.wth-top-bar {
  background-color: var(--wth-navy-dark);
  color: var(--wth-white);
  font-family: var(--wth-font);
  font-size: 12px;
  line-height: 1;
  padding: 6px 16px;
}

.wth-top-bar__inner {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.wth-top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.wth-top-bar__separator {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

.wth-top-bar a {
  color: var(--wth-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wth-top-bar a:hover {
  color: var(--wth-accent);
}


/* ==========================================================================
   21. HEADER (.wth-header)
   ========================================================================== */
.wth-header {
  background-color: var(--wth-card);
  border-bottom: 2px solid var(--wth-border);
  padding: 8px 16px;
  box-shadow: var(--wth-shadow-sm);
  position: relative;
  z-index: 100;
}

.wth-header__inner {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.wth-header__logo {
  flex: 0 0 auto;
  max-width: 180px;
}

.wth-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.wth-header__search {
  flex: 1 1 360px;
  min-width: 0;
}

.wth-header__search-form {
  display: flex;
  border: 2px solid var(--wth-navy);
  border-radius: var(--wth-radius);
  overflow: hidden;
}

.wth-header__search-input {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background: var(--wth-card);
  outline: none;
  min-width: 0;
}

.wth-header__search-input::placeholder {
  color: var(--wth-text-muted);
}

.wth-header__search-btn {
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background-color var(--wth-transition);
}

.wth-header__search-btn:hover {
  background-color: var(--wth-navy-light);
}

.wth-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.wth-header__account,
.wth-header__cart {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--wth-navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--wth-radius);
  transition: background-color var(--wth-transition);
}

.wth-header__account:hover,
.wth-header__cart:hover {
  background-color: var(--wth-bg);
  color: var(--wth-navy);
}


/* ==========================================================================
   22. TIRE SEARCH WIDGET (.wth-tire-search)
   ========================================================================== */
.wth-tire-search {
  background-color: var(--wth-navy);
  padding: 20px 16px;
  font-family: var(--wth-font);
}

.wth-tire-search__inner {
  max-width: 900px;
  margin: 0 auto;
}

.wth-tire-search__title {
  color: var(--wth-white);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
}

.wth-tire-search__tabs {
  display: flex;
  gap: 0;
}

.wth-tire-search__tab {
  flex: 1;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--wth-font);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-radius: var(--wth-radius) var(--wth-radius) 0 0;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--wth-transition), background-color var(--wth-transition);
}

.wth-tire-search__tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.wth-tire-search__tab.is-active {
  background-color: var(--wth-card);
  color: var(--wth-navy);
  border-color: var(--wth-card);
}

.wth-tire-search__panel {
  display: none;
  background-color: var(--wth-card);
  padding: 16px;
  border-radius: 0 0 var(--wth-radius) var(--wth-radius);
  border: 2px solid var(--wth-card);
}

.wth-tire-search__panel.is-active {
  display: block;
}

.wth-tire-search__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.wth-tire-search__row--size {
  grid-template-columns: repeat(3, 1fr);
}

.wth-tire-search__field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--wth-text-secondary);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wth-tire-search__select {
  width: 100%;
  padding: 8px 28px 8px 10px;
  font-size: 13px;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.wth-tire-search__select:focus {
  border-color: var(--wth-navy);
  outline: none;
  box-shadow: 0 0 0 2px rgba(27, 43, 75, 0.15);
}

.wth-tire-search__select:disabled {
  background-color: var(--wth-bg);
  color: var(--wth-text-muted);
  cursor: not-allowed;
}

.wth-tire-search__submit {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--wth-font);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wth-white);
  background-color: var(--wth-accent);
  border: none;
  border-radius: var(--wth-radius);
  cursor: pointer;
  transition: background-color var(--wth-transition);
}

.wth-tire-search__submit:hover {
  background-color: var(--wth-accent-hover);
}

.wth-tire-search__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/* ==========================================================================
   23. STOCK INDICATORS
   ========================================================================== */
.wth-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--wth-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.wth-stock::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wth-stock--in::before  { background-color: var(--wth-success); }
.wth-stock--in          { color: var(--wth-success); }
.wth-stock--low::before { background-color: var(--wth-warning); }
.wth-stock--low         { color: #b45309; }
.wth-stock--out::before { background-color: var(--wth-danger); }
.wth-stock--out         { color: var(--wth-danger); }


/* ==========================================================================
   24. QUANTITY INPUT (.wth-qty)
   ========================================================================== */
.wth-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  overflow: hidden;
  min-width: 80px;
  height: 34px;
}

.wth-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  background-color: var(--wth-bg);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--wth-text);
  font-family: var(--wth-font);
  line-height: 1;
  user-select: none;
  padding: 0;
  transition: background-color var(--wth-transition);
}

.wth-qty__btn:hover {
  background-color: var(--wth-border);
}

.wth-qty__btn:active {
  background-color: #ccc;
}

.wth-qty__input {
  width: 38px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--wth-border);
  border-right: 1px solid var(--wth-border);
  text-align: center;
  font-size: 13px;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background-color: var(--wth-card);
  -moz-appearance: textfield;
  padding: 0;
}

.wth-qty__input::-webkit-inner-spin-button,
.wth-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wth-qty__input:focus {
  outline: none;
  background-color: #fffde7;
}


/* ==========================================================================
   25. PRICE DISPLAY (.wth-price)
   ========================================================================== */
.wth-price {
  font-family: var(--wth-font);
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.2;
}

.wth-price__current {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wth-navy);
}

.wth-price__current--large {
  font-size: 1.75rem;
}

.wth-price__compare {
  font-size: 13px;
  font-weight: 400;
  color: var(--wth-text-muted);
  text-decoration: line-through;
}

.wth-price__per {
  font-size: 11px;
  font-weight: 400;
  color: var(--wth-text-secondary);
}

.wth-price__savings {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--wth-white);
  background-color: var(--wth-success);
  padding: 2px 6px;
  border-radius: var(--wth-radius-sm);
  white-space: nowrap;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}


/* ==========================================================================
   26. HOMEPAGE (.wth-homepage)
   ========================================================================== */
.wth-homepage {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  padding: 16px;
  font-family: var(--wth-font);
}

.wth-homepage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wth-homepage__card {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  padding: 16px;
}

.wth-homepage__card--full {
  grid-column: 1 / -1;
}

.wth-homepage__card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--wth-navy);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--wth-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Search widget on homepage */
.wth-homepage__search {
  grid-column: 1 / -1;
}

.wth-homepage__search-form {
  display: flex;
  border: 2px solid var(--wth-navy);
  border-radius: var(--wth-radius);
  overflow: hidden;
}

.wth-homepage__search-input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--wth-font);
  color: var(--wth-text);
  background: var(--wth-card);
  outline: none;
  min-width: 0;
}

.wth-homepage__search-input::placeholder {
  color: var(--wth-text-muted);
}

.wth-homepage__search-btn {
  background-color: var(--wth-accent);
  color: var(--wth-white);
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--wth-font);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--wth-transition);
}

.wth-homepage__search-btn:hover {
  background-color: var(--wth-accent-hover);
}

/* Promo banner */
.wth-homepage__promo {
  grid-column: 1 / -1;
  background-color: var(--wth-navy);
  color: var(--wth-white);
  border-radius: var(--wth-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wth-homepage__promo-text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.wth-homepage__promo-cta {
  display: inline-block;
  background-color: var(--wth-accent);
  color: var(--wth-white);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--wth-radius);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--wth-transition);
}

.wth-homepage__promo-cta:hover {
  background-color: var(--wth-accent-hover);
  color: var(--wth-white);
}


/* ==========================================================================
   27. QUICK ADD BUTTON (.wth-add-btn)
   ========================================================================== */
.wth-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--wth-font);
  color: var(--wth-white);
  background-color: var(--wth-accent);
  border: none;
  border-radius: var(--wth-radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  min-height: 34px;
  line-height: 1;
  transition: background-color var(--wth-transition), box-shadow var(--wth-transition);
}

.wth-add-btn:hover {
  background-color: var(--wth-accent-hover);
  box-shadow: 0 2px 6px rgba(204, 45, 55, 0.2);
}

.wth-add-btn:disabled,
.wth-add-btn.is-loading {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.wth-add-btn.is-loading {
  position: relative;
}

.wth-add-btn.is-loading .wth-add-btn__label {
  visibility: hidden;
}

.wth-add-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--wth-white);
  border-radius: 50%;
  animation: wth-spin 0.5s linear infinite;
}


/* ==========================================================================
   28. TRUST BAR
   ========================================================================== */
.wth-trust-bar {
  border-top: 1px solid var(--wth-border);
  background-color: var(--wth-card);
  padding: 12px 16px;
  font-family: var(--wth-font);
}

.wth-trust-bar__inner {
  max-width: var(--wth-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wth-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--wth-text);
}

.wth-trust-bar__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.wth-trust-bar__icon--svg {
  fill: var(--wth-text-secondary);
}

.wth-trust-bar__label {
  line-height: 1.2;
}

.wth-trust-bar__sublabel {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--wth-text-secondary);
}


/* ==========================================================================
   29. CATEGORY GRID
   ========================================================================== */
.wth-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
  font-family: var(--wth-font);
}

.wth-category-grid__item {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  text-align: center;
  overflow: hidden;
  transition: border-color var(--wth-transition);
}

.wth-category-grid__item:hover {
  border-color: var(--wth-navy);
}

.wth-category-grid__link {
  display: block;
  padding: 16px 10px;
  text-decoration: none;
  color: var(--wth-text);
}

.wth-category-grid__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.wth-category-grid__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--wth-navy);
}

.wth-category-grid__count {
  display: block;
  font-size: 11px;
  color: var(--wth-text-muted);
  margin-top: 2px;
}


/* ==========================================================================
   30. CONTENT LAYOUT (sidebar + content)
   ========================================================================== */
.wth-layout {
  display: flex;
  gap: 16px;
  max-width: var(--wth-max-width);
  margin: 0 auto;
  padding: 16px;
  align-items: flex-start;
}

.wth-layout__sidebar {
  flex: 0 0 var(--wth-sidebar-width);
}

.wth-layout__content {
  flex: 1;
  min-width: 0;
}


/* ==========================================================================
   31. QUICK ORDER TABLE
   ========================================================================== */
.wth-quick-order-wrapper {
  background-color: var(--wth-card);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  overflow-x: auto;
}

.wth-quick-order {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--wth-font);
  font-size: 13px;
}

.wth-quick-order thead {
  background-color: var(--wth-navy);
  color: var(--wth-white);
}

.wth-quick-order th {
  padding: 8px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.wth-quick-order td {
  padding: 8px 14px;
  border-bottom: 1px solid var(--wth-border-light);
  vertical-align: middle;
  color: var(--wth-text);
}

.wth-quick-order tbody tr:nth-child(even) {
  background-color: var(--wth-row-alt);
}

.wth-quick-order tbody tr:hover {
  background-color: #eef1f6;
}

.wth-quick-order__product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wth-quick-order__thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--wth-radius-sm);
  background: var(--wth-row-alt);
}

.wth-quick-order__name {
  font-weight: 600;
  color: var(--wth-text);
}

.wth-quick-order__sku {
  font-size: 11px;
  color: var(--wth-text-muted);
  margin-top: 1px;
}

.wth-quick-order__qty-input {
  width: 56px;
  padding: 5px;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  font-family: var(--wth-font);
  -moz-appearance: textfield;
  appearance: textfield;
}
.wth-quick-order__qty-input::-webkit-outer-spin-button,
.wth-quick-order__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.wth-quick-order__qty-input:focus {
  border-color: var(--wth-navy);
  outline: none;
}

.wth-quick-order__price {
  font-weight: 700;
  color: var(--wth-navy);
  white-space: nowrap;
}

.wth-quick-order__add-btn {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--wth-font);
  color: var(--wth-white);
  background-color: var(--wth-accent);
  border: none;
  border-radius: var(--wth-radius);
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--wth-transition);
}

.wth-quick-order__add-btn:hover {
  background-color: var(--wth-accent-hover);
}

.wth-quick-order__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--wth-border);
}

.wth-quick-order__add-all {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--wth-font);
  color: var(--wth-white);
  background-color: var(--wth-accent);
  border: none;
  border-radius: var(--wth-radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--wth-transition);
}

.wth-quick-order__add-all:hover {
  background-color: var(--wth-accent-hover);
}


/* ==========================================================================
   32. SECTION & UTILITY
   ========================================================================== */
.wth-section {
  padding: 16px;
  max-width: var(--wth-max-width);
  margin: 0 auto;
}

.wth-section--gray {
  background-color: var(--wth-bg);
  max-width: none;
}

.wth-section--gray > .wth-section__inner {
  max-width: var(--wth-max-width);
  margin: 0 auto;
}

.wth-section__title {
  font-family: var(--wth-font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wth-navy);
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--wth-accent);
  line-height: 1.25;
}

/* Brand badge (compact) — used in order history and small UI contexts */
.wth-brand-badge--compact {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background-color: var(--wth-bg);
  border: 1px solid var(--wth-border);
  border-radius: var(--wth-radius);
  font-family: var(--wth-font);
  font-size: 11px;
  font-weight: 600;
  color: var(--wth-text);
}

.wth-brand-badge--compact img {
  height: 16px;
  width: auto;
}

/* Visually hidden (accessible) */
.wth-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utility: text truncation */
.wth-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Utility: no-wrap flex row */
.wth-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wth-flex--between {
  justify-content: space-between;
}

/* Utility: gap helpers */
.wth-gap-xs { gap: 4px; }
.wth-gap-sm { gap: 8px; }
.wth-gap-md { gap: 16px; }
.wth-gap-lg { gap: 24px; }

/* Utility: text alignment */
.wth-text-right { text-align: right; }
.wth-text-center { text-align: center; }
.wth-text-muted { color: var(--wth-text-muted); }
.wth-text-accent { color: var(--wth-accent); }
.wth-text-navy { color: var(--wth-navy); }
.wth-text-success { color: var(--wth-success); }
.wth-text-warning { color: var(--wth-warning); }
.wth-text-danger { color: var(--wth-danger); }
.wth-text-sm { font-size: 12px; }
.wth-text-xs { font-size: 11px; }

/* Utility: font weight */
.wth-bold { font-weight: 700; }
.wth-semibold { font-weight: 600; }

/* Divider */
.wth-divider {
  border: none;
  border-top: 1px solid var(--wth-border);
  margin: 12px 0;
}

/* Empty state */
.wth-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--wth-text-muted);
  font-size: 14px;
}

.wth-empty__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.3;
}


/* ==========================================================================
   33. HERO SECTION POLISH (wth-homepage-hero snippet)
   ========================================================================== */

/* Hero tab active state: red underline */
.wth-hero__tab {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
  transition: color var(--wth-transition), background var(--wth-transition), border-color var(--wth-transition);
}

.wth-hero__tab.active {
  border-bottom-color: var(--wth-accent);
  color: var(--wth-accent);
  background: var(--wth-white);
  font-weight: 700;
}

.wth-hero__tab:not(.active):hover {
  border-bottom-color: var(--wth-border);
  color: var(--wth-text);
}

/* Banner placeholders */
.wth-hero__banner-placeholder {
  border: 2px dashed #ccc;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  color: var(--wth-text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--wth-radius);
}

.wth-hero__banner {
  transition: box-shadow 0.2s ease;
}

.wth-hero__banner:hover {
  box-shadow: var(--wth-shadow-md);
}

/* Trust bar polish */
.wth-hero__trust {
  padding: 14px 20px;
  gap: 8px 32px;
  background: var(--wth-white);
  box-shadow: var(--wth-shadow-sm);
}

.wth-hero__trust-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--wth-text);
  gap: 6px;
}

.wth-hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--wth-accent);
  stroke: var(--wth-accent);
}

.wth-hero__trust-sep {
  font-size: 16px;
  color: #ccc;
}


/* ==========================================================================
   34. FOOTER OVERRIDES
   ========================================================================== */
.footer,
.section-footer {
  background-color: var(--wth-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--wth-font);
  font-size: 13px;
}

.footer a,
.section-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer a:hover,
.section-footer a:hover {
  color: var(--wth-accent);
}

.footer h2,
.footer h3,
.footer .footer-block__heading {
  color: var(--wth-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ==========================================================================
   35. RESPONSIVE — Mobile (<768px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Base font size */
  body {
    font-size: 13px;
  }

  /* Top bar stacks */
  .wth-top-bar__inner {
    flex-direction: column;
    gap: 3px;
  }

  .wth-top-bar__separator {
    display: none;
  }

  /* Header stacks */
  .wth-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .wth-header__logo {
    max-width: 140px;
    margin: 0 auto;
  }

  .wth-header__actions {
    justify-content: center;
  }

  /* Tire search: 2-col on mobile */
  .wth-tire-search__row,
  .wth-tire-search__row--size {
    grid-template-columns: repeat(2, 1fr);
  }

  .wth-tire-search__title {
    font-size: 1rem;
  }

  /* Homepage: single column */
  .wth-homepage__grid {
    grid-template-columns: 1fr;
  }

  .wth-homepage__promo {
    flex-direction: column;
    text-align: center;
  }

  /* Layout: stack sidebar above content */
  .wth-layout {
    flex-direction: column;
  }

  .wth-layout__sidebar {
    flex: none;
    width: 100%;
  }

  .wth-filters {
    position: static;
    width: 100%;
    max-height: none;
  }

  /* Product grid: 2-col */
  .wth-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Category grid: 2-col */
  .wth-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Trust bar: wrap */
  .wth-trust-bar__inner {
    justify-content: center;
    gap: 10px;
  }

  .wth-trust-bar__item {
    flex: 0 0 calc(50% - 10px);
    font-size: 11px;
  }

  /* Add button: full-width on mobile */
  .wth-add-btn {
    width: 100%;
    justify-content: center;
    min-height: 40px;
  }

  /* Larger touch targets */
  .wth-qty {
    height: 40px;
  }

  .wth-qty__btn {
    width: 40px;
    min-height: 40px;
  }

  /* Account table: stacked card rows on mobile */
  .wth-account__table thead {
    display: none;
  }

  .wth-account__table,
  .wth-account__table tbody,
  .wth-account__table tr,
  .wth-account__table td {
    display: block;
    width: 100%;
  }

  .wth-account__table tr {
    padding: 8px 0;
    border-bottom: 1px solid var(--wth-border);
  }

  .wth-account__table td {
    border-bottom: none;
    padding: 3px 14px;
  }

  .wth-account__table td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wth-text-muted);
    margin-bottom: 1px;
    letter-spacing: 0.04em;
  }

  /* Quick order: stacked mobile */
  .wth-quick-order thead {
    display: none;
  }

  .wth-quick-order,
  .wth-quick-order tbody,
  .wth-quick-order tr,
  .wth-quick-order td {
    display: block;
    width: 100%;
  }

  .wth-quick-order tr {
    padding: 8px 0;
    border-bottom: 1px solid var(--wth-border);
  }

  .wth-quick-order td {
    border-bottom: none;
    padding: 3px 14px;
  }

  .wth-quick-order td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wth-text-muted);
    margin-bottom: 1px;
    letter-spacing: 0.04em;
  }

  /* Order detail: single column */
  .wth-order-detail__grid {
    grid-template-columns: 1fr;
  }

  /* Ensure 44px min touch targets */
  button,
  select,
  input[type="submit"],
  input[type="button"],
  .wth-btn {
    min-height: 40px;
  }

  /* Larger form inputs on mobile */
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px;
    padding: 10px;
  }

  /* Countdown stacking */
  .wth-countdown__block {
    min-width: 36px;
    padding: 3px 6px;
  }

  .wth-countdown__number {
    font-size: 15px;
  }

  /* Tabs full-width scroll */
  .wth-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wth-tabs__item {
    min-width: 100px;
    flex-shrink: 0;
  }
}


/* ==========================================================================
   36. RESPONSIVE — Tablet (768px - 1024px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 959px) {
  .wth-tire-search__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .wth-homepage__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wth-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wth-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sidebar collapses on tablet */
  .wth-layout {
    flex-direction: column;
  }

  .wth-layout__sidebar {
    flex: none;
    width: 100%;
  }

  .wth-filters {
    position: static;
    width: 100%;
    max-height: none;
  }

  .wth-order-detail__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   37. RESPONSIVE — Desktop (>1024px)
   ========================================================================== */
@media (min-width: 960px) {
  .wth-tire-search__row {
    grid-template-columns: repeat(4, 1fr);
  }

  .wth-tire-search__row--size {
    grid-template-columns: repeat(3, 1fr);
  }

  .wth-category-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .wth-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}


/* ==========================================================================
   38. PRINT STYLES
   ========================================================================== */
@media print {
  body {
    background: var(--wth-white);
    color: #000;
    font-size: 12px;
  }

  .wth-top-bar,
  .wth-header,
  .wth-announce,
  .wth-filters,
  .wth-pagination,
  .wth-trust-bar,
  .wth-add-btn,
  .wth-qty,
  .wth-cart__remove,
  .section-header,
  .footer,
  .section-footer {
    /* Hide from print; !important required to override display rules */
    display: none !important;
  }

  .wth-card,
  .wth-table-wrap,
  .wth-account__table-wrap {
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .wth-table th {
    /* Preserve print color; !important required for print media override */
    background-color: #eee !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}


/* ==========================================================================
   39. GLOBAL FOCUS-VISIBLE STYLES (Keyboard Accessibility)
   ========================================================================== */

/*
 * Show a visible focus ring only on keyboard navigation (:focus-visible).
 * Covers all wth-* interactive elements and standard form controls.
 */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="tab"]:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #074a93;
  outline-offset: 2px;
}

/* Remove outline on mouse click (non-keyboard focus) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
[role="tab"]:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   40. SKIP-TO-CONTENT LINK
   ========================================================================== */
.wth-skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: #074a93;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
  transition: top 0.15s ease;
}

.wth-skip-link:focus {
  top: 0;
}

/* ==========================================================================
   WTH Promo Carousels (extracted from wth-promo-carousels.liquid)
   ========================================================================== */
.wth-carousels {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 24px;
}

/* --- Carousel Base --- */
.wth-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.wth-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.wth-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.wth-carousel__slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.wth-carousel__slide a {
  display: block;
  width: 100%;
}

/* Main carousel and side carousels: let images define their own height */
.wth-carousel--main .wth-carousel__slide,
.wth-carousel--side .wth-carousel__slide {
  background: #111;
}

/* --- Arrows --- */
.wth-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #222;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.wth-carousel:hover .wth-carousel__arrow {
  opacity: 1;
}

.wth-carousel__arrow--prev { left: 10px; }
.wth-carousel__arrow--next { right: 10px; }

.wth-carousel__arrow:hover {
  background: #fff;
}

/* --- Dots --- */
.wth-carousel__dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 2;
}

.wth-carousel__dot {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.wth-carousel__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  transition: background 0.2s;
}

.wth-carousel__dot.active::after {
  background: #fff;
}

/* --- Layout --- */
.wth-carousels__main {
  margin-bottom: 16px;
}

.wth-carousels__sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Placeholder when no images */
.wth-carousel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  background: #222;
}

/* --- Responsive --- */
@media (max-width: 749px) {
  .wth-carousels__sides {
    grid-template-columns: 1fr;
  }

  .wth-carousel--side .wth-carousel__slide {
    background: #111;
  }

  .wth-carousel__arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
    opacity: 1;
  }
}


/* ==========================================================================
   WTH Cart — Premium B2B Cart Experience (extracted from wth-cart.liquid)
   ========================================================================== */
  /* ============================================
     WTH Cart — Premium B2B Cart Experience
     ============================================ */

  :root {
    --wth-navy: #001f41;
    --wth-blue: #074a93;
    --wth-blue-light: #e8f0fe;
    --wth-green: #059669;
    --wth-green-bg: #ecfdf5;
    --wth-red: #dc2626;
    --wth-red-bg: #fef2f2;
    --wth-gray-50: #f9fafb;
    --wth-gray-100: #f3f4f6;
    --wth-gray-200: #e5e7eb;
    --wth-gray-300: #d1d5db;
    --wth-gray-400: #9ca3af;
    --wth-gray-500: #6b7280;
    --wth-gray-700: #374151;
    --wth-gray-900: #111827;
    --wth-radius: 8px;
    --wth-radius-sm: 3px;
    --wth-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --wth-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --wth-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --wth-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --wth-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .wth-cart {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 80px;
    font-family: var(--wth-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--wth-gray-900);
  }

  /* ── Progress / Trust Bar ── */
  .wth-cart__trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 16px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--wth-blue-light) 0%, #f0f5ff 100%);
    border-radius: var(--wth-radius);
    border: 1px solid #d6e4f7;
  }
  .wth-cart__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--wth-blue);
    white-space: nowrap;
  }
  .wth-cart__trust-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
  .wth-cart__trust-divider {
    width: 1px;
    height: 16px;
    background: #bfd4ee;
  }

  /* ── Header ── */
  .wth-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .wth-cart__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .wth-cart__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--wth-navy);
    margin: 0;
    letter-spacing: -0.5px;
  }
  .wth-cart__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wth-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 15px;
  }
  .wth-cart__billing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wth-navy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
  }
  .wth-cart__billing-badge svg {
    flex-shrink: 0;
  }

  /* ── Empty State ── */
  .wth-cart__empty {
    text-align: center;
    padding: 100px 20px;
  }
  .wth-cart__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wth-gray-100) 0%, var(--wth-gray-200) 100%);
  }
  .wth-cart__empty-icon svg {
    color: var(--wth-gray-400);
  }
  .wth-cart__empty h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--wth-navy);
    margin: 0 0 10px;
  }
  .wth-cart__empty p {
    font-size: 15px;
    color: var(--wth-gray-500);
    margin: 0 0 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .wth-cart__empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--wth-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--wth-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all var(--wth-transition);
    box-shadow: var(--wth-shadow);
  }
  .wth-cart__empty-btn:hover {
    background: var(--wth-navy);
    transform: translateY(-1px);
    box-shadow: var(--wth-shadow-md);
  }
  .wth-cart__empty-btn--secondary {
    background: #fff;
    color: var(--wth-navy);
    border: 1.5px solid var(--wth-gray-300);
    box-shadow: none;
  }
  .wth-cart__empty-btn--secondary:hover {
    background: var(--wth-gray-100);
    color: var(--wth-navy);
    border-color: var(--wth-navy);
  }
  .wth-cart__empty-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .wth-cart__empty-pillars {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: left;
  }
  .wth-cart__empty-pillar {
    background: #fff;
    border: 1px solid var(--wth-gray-200);
    border-radius: var(--wth-radius);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--wth-shadow-sm);
  }
  .wth-cart__empty-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--wth-gray-100);
    color: var(--wth-blue);
    font-size: 22px;
    margin-bottom: 6px;
  }
  .wth-cart__empty-pillar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--wth-navy);
    line-height: 1.3;
  }
  .wth-cart__empty-pillar-sub {
    font-size: 13px;
    color: var(--wth-gray-500);
    line-height: 1.45;
  }
  @media (max-width: 899px) {
    .wth-cart__empty-pillars {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .wth-cart__empty-pillars {
      grid-template-columns: 1fr;
    }
    .wth-cart__empty-ctas {
      flex-direction: column;
      align-items: stretch;
    }
    .wth-cart__empty-btn {
      justify-content: center;
    }
  }

  /* ── Layout ── */
  .wth-cart__layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    align-items: flex-start;
  }

  /* ── Items Card ── */
  .wth-cart__items-card {
    background: #fff;
    border-radius: var(--wth-radius);
    border: 1px solid var(--wth-gray-200);
    box-shadow: var(--wth-shadow-sm);
    overflow: hidden;
  }

  /* ── Column Headers ── */
  .wth-cart__col-headers {
    display: grid;
    grid-template-columns: 1fr 180px 140px 40px;
    gap: 16px;
    padding: 12px 24px;
    background: var(--wth-gray-50);
    border-bottom: 1px solid var(--wth-gray-200);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wth-gray-500);
  }
  .wth-cart__col-headers span:nth-child(2) { text-align: center; }
  .wth-cart__col-headers span:nth-child(3) { text-align: right; }

  /* ── Single Item ── */
  .wth-cart__item {
    display: grid;
    grid-template-columns: 1fr 180px 140px 40px;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--wth-gray-100);
    align-items: center;
    transition: background var(--wth-transition);
  }
  .wth-cart__item:hover {
    background: var(--wth-gray-50);
  }
  .wth-cart__item:last-of-type {
    border-bottom: none;
  }

  /* Product cell */
  .wth-cart__product {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
  }
  .wth-cart__item-img-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--wth-radius-sm);
    background: var(--wth-gray-50);
    border: 1px solid var(--wth-gray-200);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--wth-transition);
  }
  .wth-cart__item:hover .wth-cart__item-img-wrap {
    border-color: var(--wth-blue);
  }
  .wth-cart__item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
  }
  .wth-cart__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .wth-cart__item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--wth-navy);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--wth-transition);
  }
  .wth-cart__item-title:hover {
    color: var(--wth-blue);
  }
  .wth-cart__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }
  .wth-cart__vendor-badge {
    display: inline-flex;
    align-items: center;
    background: var(--wth-navy);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .wth-cart__variant-text {
    font-size: 12px;
    color: var(--wth-gray-500);
  }
  .wth-cart__unit-price {
    font-size: 12px;
    color: var(--wth-gray-500);
  }
  .wth-cart__delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: var(--wth-green-bg);
    color: var(--wth-green);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 2px;
  }
  .wth-cart__delivery-dot {
    width: 6px;
    height: 6px;
    background: var(--wth-green);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Quantity cell */
  .wth-cart__qty-cell {
    display: flex;
    justify-content: center;
  }
  .wth-cart__qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--wth-gray-300);
    border-radius: var(--wth-radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--wth-shadow-sm);
    transition: border-color var(--wth-transition), box-shadow var(--wth-transition);
  }
  .wth-cart__qty-wrap:focus-within {
    border-color: var(--wth-blue);
    box-shadow: 0 0 0 3px rgba(7, 74, 147, 0.1);
  }
  .wth-cart__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 38px;
    background: var(--wth-gray-50);
    border: none;
    cursor: pointer;
    color: var(--wth-gray-700);
    font-size: 18px;
    font-weight: 600;
    transition: all var(--wth-transition);
    line-height: 1;
    padding: 0;
  }
  .wth-cart__qty-btn:hover {
    background: var(--wth-gray-200);
    color: var(--wth-navy);
  }
  .wth-cart__qty-btn:active {
    background: var(--wth-gray-300);
  }
  .wth-cart__qty-input {
    width: 48px;
    height: 38px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--wth-gray-200);
    border-right: 1px solid var(--wth-gray-200);
    font-size: 15px;
    font-weight: 700;
    color: var(--wth-navy);
    background: #fff;
    -moz-appearance: textfield;
    padding: 0;
  }
  .wth-cart__qty-input::-webkit-outer-spin-button,
  .wth-cart__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Price cell */
  .wth-cart__price-cell {
    text-align: right;
  }
  .wth-cart__line-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--wth-navy);
    letter-spacing: -0.3px;
  }
  .wth-cart__line-price-discounted {
    display: block;
    font-size: 12px;
    color: var(--wth-gray-400);
    text-decoration: line-through;
    font-weight: 400;
  }
  .wth-cart__line-price-sale {
    color: var(--wth-blue);
  }

  /* Remove cell */
  .wth-cart__remove-cell {
    display: flex;
    justify-content: center;
  }
  .wth-cart__remove-btn {
    background: none;
    border: none;
    color: var(--wth-gray-400);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all var(--wth-transition);
  }
  .wth-cart__remove-btn:hover {
    color: var(--wth-red);
    background: var(--wth-red-bg);
    transform: scale(1.1);
  }

  /* Cross-sell: matching wheels/tires below each item */
  .wth-cart__xsell {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 12px 0 0;
    padding: 10px 14px;
    background: #f1f5fb;
    border: 1px solid #dbe7f5;
    border-radius: 8px;
  }
  .wth-cart__vehicle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #001f41;
    font-weight: 600;
  }
  .wth-cart__vehicle-img {
    width: 44px;
    height: 28px;
    object-fit: contain;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #dbe7f5;
    flex-shrink: 0;
  }
  .wth-cart__vehicle-icon {
    width: 18px;
    height: 18px;
    color: #074a93;
    flex-shrink: 0;
  }
  .wth-cart__vehicle-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
  }
  .wth-cart__xsell-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    margin-left: auto;
    background: #074a93;
    color: #fff !important;
    border: 1px solid #074a93;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.15s, transform 0.15s;
    flex-shrink: 0;
  }
  .wth-cart__xsell-btn svg {
    width: 14px;
    height: 14px;
  }
  .wth-cart__xsell-btn:hover {
    background: #0851a2;
    color: #fff !important;
    transform: translateY(-1px);
  }
  .wth-cart__xsell-btn .wth-cart__xsell-arrow {
    margin-left: 2px;
    transition: transform 0.15s;
  }
  .wth-cart__xsell-btn:hover .wth-cart__xsell-arrow {
    transform: translateX(3px);
  }
  @media (max-width: 640px) {
    .wth-cart__xsell { padding: 10px 12px; gap: 8px 10px; flex-basis: 100%; width: 100%; }
    .wth-cart__xsell-btn { margin-left: 0; width: 100%; justify-content: center; }
    .wth-cart__vehicle-text { max-width: 180px; }
  }

  /* Items Footer */
  .wth-cart__items-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--wth-gray-50);
    border-top: 1px solid var(--wth-gray-200);
  }
  .wth-cart__items-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wth-blue);
    text-decoration: none;
    transition: color var(--wth-transition);
  }
  .wth-cart__items-footer-link:hover {
    color: var(--wth-navy);
  }
  .wth-cart__update-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wth-navy);
    background: #fff;
    border: 1.5px solid var(--wth-gray-300);
    border-radius: var(--wth-radius-sm);
    cursor: pointer;
    transition: all var(--wth-transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .wth-cart__update-btn:hover {
    border-color: var(--wth-navy);
    background: var(--wth-gray-50);
    box-shadow: var(--wth-shadow-sm);
  }

  /* ============================================
     Summary Sidebar
     ============================================ */
  .wth-cart__summary {
    background: #fff;
    border-radius: var(--wth-radius);
    border: 1px solid var(--wth-gray-200);
    box-shadow: var(--wth-shadow);
    position: sticky;
    top: 24px;
    overflow: hidden;
  }
  .wth-cart__summary-header {
    background: var(--wth-navy);
    padding: 18px 24px;
  }
  .wth-cart__summary-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.2px;
  }
  .wth-cart__summary-body {
    padding: 20px 24px 0;
  }
  .wth-cart__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--wth-gray-700);
  }
  .wth-cart__summary-row span:first-child {
    color: var(--wth-gray-500);
  }
  .wth-cart__summary-row span:last-child {
    font-weight: 600;
    color: var(--wth-gray-900);
  }
  .wth-cart__summary-row--discount span {
    color: var(--wth-blue) !important;
    font-weight: 700 !important;
  }
  .wth-cart__summary-divider {
    border: none;
    border-top: 1px dashed var(--wth-gray-200);
    margin: 4px 0;
  }
  .wth-cart__summary-row--total {
    background: linear-gradient(135deg, #f8faff 0%, var(--wth-gray-50) 100%);
    margin: 12px -24px 0;
    padding: 16px 24px;
    border-top: 2px solid var(--wth-navy);
  }
  .wth-cart__summary-row--total span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--wth-navy) !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .wth-cart__summary-row--total span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: var(--wth-navy) !important;
    letter-spacing: -0.5px;
  }
  .wth-cart__summary-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--wth-green);
    font-weight: 600;
    padding: 4px 0 6px;
  }
  .wth-cart__summary-shipping-note svg {
    flex-shrink: 0;
  }
  .wth-cart__tax-note {
    font-size: 11px;
    color: var(--wth-gray-400);
    font-style: italic;
    padding: 4px 0 0;
  }

  /* PO / Notes */
  .wth-cart__po-section {
    padding: 18px 24px;
    border-top: 1px solid var(--wth-gray-100);
  }
  .wth-cart__po-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wth-navy);
    margin-bottom: 8px;
  }
  .wth-cart__po-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--wth-gray-200);
    border-radius: var(--wth-radius-sm);
    font-size: 14px;
    resize: vertical;
    min-height: 52px;
    box-sizing: border-box;
    font-family: inherit;
    transition: all var(--wth-transition);
    background: var(--wth-gray-50);
  }
  .wth-cart__po-input:focus {
    outline: none;
    border-color: var(--wth-blue);
    box-shadow: 0 0 0 3px rgba(7, 74, 147, 0.08);
    background: #fff;
  }

  /* Checkout Actions */
  .wth-cart__checkout-section {
    padding: 18px 24px 24px;
  }
  .wth-cart__checkout-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    border-radius: var(--wth-radius-sm);
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all var(--wth-transition);
    border: none;
    background: linear-gradient(135deg, var(--wth-blue) 0%, #0a5db8 100%);
    color: #fff;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(7, 74, 147, 0.3);
    overflow: hidden;
  }
  .wth-cart__checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
  }
  .wth-cart__checkout-btn:hover {
    background: linear-gradient(135deg, var(--wth-navy) 0%, #0a3a6b 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(7, 74, 147, 0.4);
  }
  .wth-cart__checkout-btn:hover::before {
    left: 100%;
  }
  .wth-cart__checkout-btn:active {
    transform: translateY(0);
  }
  .wth-cart__checkout-btn svg {
    flex-shrink: 0;
  }
  .wth-cart__secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--wth-gray-400);
    margin-top: 12px;
    padding: 8px 0 0;
    border-top: 1px solid var(--wth-gray-100);
  }
  .wth-cart__secure-note svg {
    flex-shrink: 0;
    color: var(--wth-green);
  }

  /* ── Payment Icons ── */
  .wth-cart__payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px 18px;
  }
  .wth-cart__payment-icon {
    width: 38px;
    height: 24px;
    background: var(--wth-gray-100);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--wth-gray-500);
    border: 1px solid var(--wth-gray-200);
  }

  /* ============================================
     Mobile Responsive
     ============================================ */
  @media (max-width: 1099px) {
    .wth-cart__layout {
      grid-template-columns: 1fr 360px;
    }
  }
  @media (max-width: 999px) {
    .wth-cart__layout {
      grid-template-columns: 1fr;
    }
    .wth-cart__summary {
      position: static;
    }
  }
  @media (max-width: 767px) {
    .wth-cart {
      padding: 20px 16px 60px;
    }
    .wth-cart__trust-bar {
      flex-wrap: wrap;
      gap: 8px 16px;
      padding: 10px 12px;
    }
    .wth-cart__trust-divider {
      display: none;
    }
    .wth-cart__title {
      font-size: 22px;
    }
    .wth-cart__col-headers {
      display: none;
    }
    .wth-cart__item {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 16px;
    }
    .wth-cart__product {
      flex: 1 1 100%;
    }
    .wth-cart__item-img-wrap {
      width: 70px;
      height: 70px;
    }
    .wth-cart__qty-cell {
      flex: 0 0 auto;
    }
    .wth-cart__price-cell {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .wth-cart__remove-cell {
      flex: 0 0 auto;
    }
    .wth-cart__items-footer {
      flex-direction: column;
      gap: 12px;
    }
    .wth-cart__summary-row--total span:last-child {
      font-size: 20px;
    }
  }


/* Old .wth-pd__* styles removed — replaced by .wth-pd2__* in wth-product-detail.liquid */

/* ═══════════════════════════════════════════════
   Price-gated B2B — styles for logged-out visitors
   Shows "Log in to see price" or "Log in to order"
   instead of prices and ATC for visitors without
   a B2B Company account.
   ═══════════════════════════════════════════════ */
.wth-price-gated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #074a93;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 10px;
  background: #eef5ff;
  border: 1px solid #c6d9ef;
  border-radius: 6px;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.wth-price-gated:hover {
  background: #dfeaf9;
  border-color: #074a93;
}
.wth-price-gated__lock {
  flex-shrink: 0;
  opacity: 0.85;
}
.wth-price-gated__suffix {
  color: #6b7280;
  font-weight: 500;
  font-size: 11px;
}

/* ATC replacement button */
.wth-login-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #074a93;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  width: 100%;
  min-height: 44px;
  line-height: 1;
}
.wth-login-cta:hover {
  background: #053567;
  color: #fff;
  text-decoration: none;
}
.wth-login-cta:active {
  transform: translateY(1px);
}
.wth-login-cta--sm { padding: 8px 12px; font-size: 13px; min-height: 36px; }
.wth-login-cta--md { /* default */ }
.wth-login-cta--lg { padding: 15px 22px; font-size: 15px; min-height: 52px; }

/* Product card / PDP / sticky — make the gated states blend in */
.wth-pcl__add-btn--gated,
.wth-pd2__atc--gated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}
