/** Shopify CDN: Minification failed

Line 933:21 Expected identifier but found "."
Line 2200:0 Unexpected "}"

**/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:        #0b0f1a;
  --navy2:       #111827;
  --navy3:       #1a2236;
  --navy4:       #243044;
  --border:      #1e2d47;
  --border2:     #2a3d5a;
  --text:        #ffffff;
  --text2:       #a8bcd4;
  --text3:       #5a7a9a;
  --blue:        #1e6ff0;
  --blue2:       #3b82f6;
  --blue-glow:   rgba(30,111,240,.15);
  --green:       #22c55e;
  --gold:        #f5a623;
  --radius:      7px;
  --radius2:     14px;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-mono:   'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px; /* was 15px → now BIG */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── ANNOUNCE ── */
.announce {
  background: linear-gradient(90deg, var(--blue) 0%, #1557cc 100%);
  color: #fff;
  text-align: center;
  padding: 8px 16px; /* tighter */
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2; /* reduces vertical space */
}
/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);   /* changed from rgba(...) */
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;     /* remove blur */
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 28px; height: 82px;
  display: flex; align-items: center; gap: 28px;
}
.site-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.site-logo img {
  height: 130px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px; /* slightly tighter */
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px; /* reduced from 15/16 */
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text2);
  border-radius: 0;
  transition: color .15s ease;
  white-space: nowrap;
}

/* underline effect */
.nav-item::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 2px;
  background: var(--blue2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-item:hover,
.nav-item.active {
  color: var(--text);
  background: transparent;
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1);
}

/* remove dropdown completely */
.nav-dropdown,
.dropdown-menu {
  display: none;
}
.nav-dropdown:focus-within .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.nav-cta {
  margin-left: auto; padding: 9px 20px; background: var(--blue); color: #fff;
  border-radius: var(--radius); font-family: var(--font-head); font-weight: 800;
  font-size: 13px; letter-spacing: .07em; text-transform: uppercase;
  transition: background .15s, transform .15s;
  box-shadow: 0 4px 18px rgba(30,111,240,.3);
}
.nav-cta:hover { background: var(--blue2); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 0 18px; height: 40px;
  background: var(--navy3); border: 1px solid var(--border2);
  border-radius: var(--radius); font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); transition: all .15s;
}
.cart-btn:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
}
.cart-count {
  width: 18px; height: 18px; background: var(--blue); border-radius: 50%;
  font-size: 10px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; width: 40px; height: 40px;
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 18px; align-items: center; justify-content: center;
  margin-left: auto;
}

/* ── CAR FINDER ── */
.car-finder { background: var(--navy2); border-bottom: 1px solid var(--border); padding: 14px 28px; }
.car-finder-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cf-label {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue2);
  white-space: nowrap; margin-right: 4px; display: flex; align-items: center; gap: 6px;
}
.cf-select {
  flex: 1; min-width: 130px; max-width: 210px; height: 42px;
  background: var(--navy3); border: 1px solid var(--border2); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  padding: 0 14px; appearance: none; -webkit-appearance: none;
  cursor:pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a8bcd4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; transition: border-color .15s, box-shadow .15s;
}
.cf-select:hover{ border-color: var(--blue2); }
.cf-select:focus { outline: none; border-color: var(--blue); box-shadow:0 0 0 3px rgba(30,111,240,.14); }
.cf-select:disabled{
  opacity:.6;
  cursor:not-allowed;
}
.cf-btn {
  height: 42px; padding: 0 22px; background: var(--blue); color: #fff;
  border-radius: var(--radius); font-family: var(--font-head); font-weight: 800;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .15s, transform .15s, opacity .15s, box-shadow .15s;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(30,111,240,.3);
}
.cf-btn:hover:not(:disabled) { background: var(--blue2); transform: translateY(-1px); }
.cf-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  box-shadow:none;
}

/* ── HERO ── */
.hero { position: relative; overflow: hidden; background: var(--navy); min-height: 520px; }
.hero-image-wrap { position: absolute; inset: 0; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .55; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,15,26,.92) 0%, rgba(11,15,26,.7) 45%, rgba(11,15,26,.2) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1300px; margin: 0 auto;
  padding: 90px 28px 80px;
  display: grid; grid-template-columns: 560px 1fr;
  align-items: center; gap: 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--blue-glow);
  border: 1px solid rgba(30,111,240,.35); border-radius: 100px;
  font-family: var(--font-mono); font-size: 11px; color: var(--blue2);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }
.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(44px, 5.5vw, 78px); line-height: .92;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero h1 .blue { color: var(--blue2); }
.hero .hero-sub {
  font-size: 16px; color: var(--text2); line-height: 1.75;
  max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px;
  background: var(--blue); color: #fff; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  letter-spacing: .07em; text-transform: uppercase; transition: all .2s;
  box-shadow: 0 6px 28px rgba(30,111,240,.4);
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(30,111,240,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 26px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  color: var(--text); border-radius: var(--radius); font-family: var(--font-head);
  font-weight: 700; font-size: 16px; letter-spacing: .07em; text-transform: uppercase;
  transition: all .2s; backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,.13); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 46px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-val { font-family: var(--font-head); font-weight: 900; font-size: 30px; line-height: 1; }
.stat-val em { color: var(--blue2); font-style: normal; }
.stat-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: .09em; margin-top: 4px; }
.hero-upgrade {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: rgba(11,15,26,.6); border: 1px solid var(--border2);
  border-radius: var(--radius2); padding: 28px 24px;
  backdrop-filter: blur(12px); max-width: 340px; margin-left: auto;
}

.upgrade-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.upgrade-box {
  flex: 1;
  min-height: 108px;
  padding: 14px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 28px;
  text-align: center;
}

.upgrade-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}
.upgrade-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.upgrade-label.old { color: #ef4444; }
.upgrade-label.new { color: var(--green); }
.upgrade-arrow { font-size: 24px; color: var(--blue2); flex-shrink: 0; }
.upgrade-title { font-family: var(--font-head); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: .05em; text-align: center; }
.upgrade-badge {
  display: flex; align-items: center; gap: 7px; padding: 8px 14px;
  background: var(--blue-glow); border: 1px solid rgba(30,111,240,.3);
  border-radius: 100px; font-size: 12px; color: var(--blue2); font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 28px; }
.trust-bar-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text2); font-size: 13px; font-weight: 500; }
.trust-icon {
  width: 36px; height: 36px; background: var(--blue-glow);
  border: 1px solid rgba(30,111,240,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ── SECTIONS ── */
.section { padding: 80px 28px; }

.section-inner { 
  max-width: 1300px; 
  margin: 0 auto; 
}

.section-header { 
  margin: 0 auto 48px;
  max-width: 700px;
  text-align: center;
}

.section-eyebrow { 
  font-family: var(--font-mono); 
  font-size: 11px; 
  color: var(--blue2); 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  margin-bottom: 10px;
  text-align: center;
}

.section-title { 
  font-family: var(--font-head); 
  font-weight: 900; 
  font-size: clamp(32px,4vw,52px); 
  text-transform: uppercase; 
  line-height: .95; 
  letter-spacing: -.01em;
  text-align: center;
}

.section-title em { 
  color: var(--blue2); 
  font-style: normal; 
}

.section-sub { 
  color: var(--text2); 
  font-size: 15px; 
  margin: 14px auto 0;
  max-width: 560px; 
  line-height: 1.7;
  text-align: center;
}
/* ── BRAND GRID ── */
.brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.brand-card {
  background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius2);
  padding: 30px 26px; display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px; position: relative; overflow: hidden; transition: all .2s;
}
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.brand-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,.4); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-logo {
  width: 60px; height: 60px; background: var(--navy3); border: 1px solid var(--border2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 20px; color: var(--blue2);
}
.brand-name { font-family: var(--font-head); font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: .03em; }
.brand-count { font-size: 13px; color: var(--text3); }
.brand-arrow { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 20px; transition: all .2s; }
.brand-card:hover .brand-arrow { color: var(--blue2); transform: translateY(-50%) translateX(4px); }

/* ── PRODUCT CARD ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 20px; }
.product-card {
  background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius2);
  overflow: hidden; display: flex; flex-direction: column; transition: all .2s;
}
.product-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.product-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: radial-gradient(ellipse at center, var(--navy4) 0%, var(--navy3) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
}
.product-badge {
  position: absolute; top: 12px; left: 12px; padding: 4px 11px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; z-index: 2;
}
.badge-new { background: var(--blue); color: #fff; }
.badge-sale { background: var(--gold); color: #0b0f1a; }
.badge-best { background: var(--green); color: #0b0f1a; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-family: var(--font-mono); font-size: 10px; color: var(--text3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; }
.product-title { font-family: var(--font-head); font-weight: 800; font-size: 18px; line-height: 1.15; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.product-compat { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.compat-tag { padding: 3px 9px; background: var(--navy3); border: 1px solid var(--border); border-radius: 4px; font-size: 11px; color: var(--text3); }
.product-features { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 5px; }
.product-features li { font-size: 13px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.product-features li::before { content: '✓'; color: var(--green); font-size: 11px; font-weight: 800; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.price-main { font-family: var(--font-head); font-weight: 900; font-size: 24px; }
.price-old { font-size: 12px; color: var(--text3); text-decoration: line-through; }
.btn-atc {
  flex: 1;
  min-width: 130px;
  height: 46px;
  padding: 0 18px;

  background: var(--blue);
  color: #fff;

  border-radius: var(--radius);

  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em; /* LESS aggressive */

  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  white-space: nowrap;

  transition: all .15s;
  box-shadow: 0 4px 18px rgba(30,111,240,.3);
}
.btn-atc:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: 0 7px 24px rgba(30,111,240,.45); }

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: -4px;
  font-size: 13px;
  font-weight: 600;
  color: #86efac;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34,197,94,0.7);
  animation: stockPulse 1.8s ease-in-out infinite;
}

@keyframes stockPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  }
  70% {
    transform: scale(1.12);
    box-shadow: 0 0 0 8px rgba(34,197,94,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}
/* ── PRODUCT PAGE ── */
.product-page-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.product-gallery {
  width: 100%;
  max-width: 580px;
}

.gallery-main {
  position: relative;
  background: var(--navy2);
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  max-height: 520px;
  padding: 14px;
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 8px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 999px;
}

.gallery-thumb {
  flex: 0 0 82px;
  height: 82px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__vendor {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue2);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-info__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.product-info__reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-count {
  font-size: 13px;
  color: var(--text3);
}

.review-count a {
  color: var(--blue2);
  text-decoration: underline;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.price-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 44px;
}

.price-strike {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--text3);
  text-decoration: line-through;
}

.price-save {
  padding: 4px 11px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}
.variant-section {
  margin-bottom: 24px;
}

.variant-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.variant-label span {
  color: var(--text);
}

.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 10px 20px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  background: var(--navy3);
  color: var(--text2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .15s;
}

.variant-btn:hover,
.variant-btn.active {
  border-color: var(--blue);
  color: var(--text);
  background: var(--blue-glow);
}
.product-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-add-cart,
.btn-buy-now {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .2s;
}

.btn-add-cart {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 28px rgba(30,111,240,.4);
}

.btn-add-cart:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(30,111,240,.55);
}

.btn-buy-now {
  background: var(--text);
  color: var(--navy);
}

.btn-buy-now:hover {
  background: #dde8ff;
  transform: translateY(-2px);
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.pt-item {
  min-height: 82px;
  padding: 12px 10px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pt-icon {
  font-size: 18px;
  margin-bottom: 4px;
}

.pt-text {
  font-size: 12px;
  color: var(--text2);
  font-weight: 500;
  line-height: 1.35;
}

.product-accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: left;
  transition: color .15s;
}

.accordion-trigger:hover {
  color: var(--blue2);
}

.accordion-icon {
  font-size: 20px;
  color: var(--text3);
  transition: transform .2s;
}

.accordion-content {
  padding: 0 0 16px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.75;
  display: none;
}

.accordion-content.open {
  display: block;
}

.accordion-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-content li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.accordion-content li::before {
  content: '→';
  color: var(--blue2);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}
/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 18px; }
.feature-card { padding: 28px 24px; background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius2); transition: all .2s; }
.feature-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.feature-icon { width: 48px; height: 48px; background: var(--blue-glow); border: 1px solid rgba(30,111,240,.25); border-radius: var(--radius); font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-title { font-family: var(--font-head); font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial-card { padding: 28px 24px; background: var(--navy2); border: 1px solid var(--border); border-radius: var(--radius2); }
.testimonial-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: var(--text2); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-glow); border: 1px solid rgba(30,111,240,.3); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--blue2); font-family: var(--font-head); }
.author-name { font-weight: 600; font-size: 14px; }
.author-car { font-size: 12px; color: var(--text3); }

/* ── FOOTER ALT ── */
.site-footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 60px 28px 32px; }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo img { height: 80px; }
.footer-desc { font-size: 14px; color: var(--text3); line-height: 1.7; margin: 14px 0 20px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #25d366; color: #fff; border-radius: var(--radius); font-family: var(--font-head); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; transition: opacity .15s; }
.footer-whatsapp:hover { opacity: .9; }
.footer-col-title { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text3); transition: color .15s; }
.footer-links a:hover { color: var(--blue2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-payments { display: flex; gap: 8px; }
.payment-badge { padding: 5px 10px; background: var(--navy3); border: 1px solid var(--border); border-radius: 4px; font-size: 11px; color: var(--text3); font-weight: 700; }

/* ── MOBILE NAV ── */
.mobile-nav { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); opacity: 0; transition: opacity .25s; }
.mobile-nav-drawer { position: absolute; top: 0; left: 0; bottom: 0; width: 300px; background: var(--navy2); border-right: 1px solid var(--border); transform: translateX(-100%); transition: transform .25s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 24px; }
.mobile-nav.open { pointer-events: all; }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mnav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mnav-header img { height: 32px; }
.mnav-close { width: 36px; height: 36px; background: var(--navy3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 18px; display: flex; align-items: center; justify-content: center; }
.mnav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mnav-links a { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 800; font-size: 16px; letter-spacing: .05em; text-transform: uppercase; color: var(--text2); transition: all .15s; }
.mnav-links a:hover { background: var(--navy3); color: var(--text); }
.mnav-links a.cta { background: var(--blue); color: #fff; margin-top: 8px; }
.mnav-sep { height: 1px; background: var(--border); margin: 10px 0; }
.sticky-cart-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: var(--navy2); border-top: 1px solid var(--border); z-index: 150; gap: 12px; align-items: center; }
.sticky-price { font-family: var(--font-head); font-weight: 900; font-size: 24px; }
.sticky-atc { flex: 1; height: 48px; background: var(--blue); color: #fff; border-radius: var(--radius); font-family: var(--font-head); font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: .07em; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 20px rgba(30,111,240,.35); }

/* ── CART PAGE ── */
.cart-page { max-width: 900px; margin: 0 auto; padding: 48px 28px 80px; }
.cart-title { font-family: var(--font-head); font-weight: 900; font-size: 40px; text-transform: uppercase; margin-bottom: 32px; }
.cart-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item__img { width: 80px; height: 80px; background: var(--navy3); border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--font-head); font-weight: 700; font-size: 17px; text-transform: uppercase; }
.cart-item__variant { font-size: 13px; color: var(--text3); margin-top: 3px; }
.cart-item__price { font-family: var(--font-head); font-weight: 900; font-size: 20px; }
.cart-totals { padding: 24px 0; display: flex; flex-direction: column; gap: 10px; max-width: 400px; margin-left: auto; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--text2); }
.cart-total-row.big { font-family: var(--font-head); font-weight: 900; font-size: 24px; color: var(--text); padding-top: 12px; border-top: 1px solid var(--border); }
.btn-checkout { width: 100%; height: 56px; background: var(--blue); color: #fff; border-radius: var(--radius); font-family: var(--font-head); font-weight: 900; font-size: 18px; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; transition: all .2s; box-shadow: 0 6px 28px rgba(30,111,240,.4); }
.btn-checkout:hover { background: var(--blue2); transform: translateY(-2px); }

/* ── 404 ── */
.page-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 28px; }
.page-404 h1 { font-family: var(--font-head); font-weight: 900; font-size: 120px; color: var(--blue); line-height: 1; margin-bottom: 16px; }
.page-404 p { color: var(--text2); font-size: 18px; margin-bottom: 32px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { ... }

/* INSTALL REVIEW FIX */
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.install-card {
  padding: 16px;
}

.install-image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
}

.install-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: transform .25s ease;
}

.install-image-btn:hover .install-image {
  transform: scale(1.03);
}

.install-card .testimonial-stars {
  color: #f5a623;
  margin-bottom: 8px;
}

.install-card .author-name {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text3);
  font-weight: 600;
}

/* LIGHTBOX */
.install-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 9999;
}

.install-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.install-lightbox-inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.install-lightbox-image {
  max-width: 95vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}

.install-lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: var(--text2);
  font-size: 14px;
}

.install-lightbox-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy3);
  border: 1px solid var(--border2);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* MOBILE ONLY */
@media (max-width: 600px) {
  .install-image {
    height: 220px;
  }

  .install-lightbox {
    padding: 12px;
  }

  .install-lightbox-image {
    max-width: 100%;
    max-height: 75vh;
  }

  .install-lightbox-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
 
  .footer-top { grid-template-columns: 1fr 1fr; }

  .product-page-wrap {
    padding: 24px 16px 40px;
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-gallery {
    max-width: 100%;
  }

  .gallery-main {
    min-height: unset;
    max-height: unset;
    aspect-ratio: 4 / 3;
    padding: 8px;
  }

  .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .gallery-thumb {
    flex: 0 0 68px;
    height: 68px;
  }

  .product-info__title {
    font-size: 34px;
    line-height: 0.95;
  }

  .product-info__price {
    gap: 10px;
  }

  .price-big {
    font-size: 32px;
  }

  .price-strike {
    font-size: 18px;
  }

  .product-cta {
    flex-direction: column;
    gap: 10px;
  }

  .btn-add-cart,
  .btn-buy-now {
    min-height: 52px;
    font-size: 16px;
    width: 100%;
  }

  .product-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pt-item {
    min-height: 70px;
    padding: 10px 12px;
  }
}
/* INSTALL REVIEW FIX */
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.install-card {
  padding: 16px;
}

.install-image {
  width: 100%;
  height: 260px; /* FORCE SAME SIZE */
  object-fit: cover; /* crops nicely */
  border-radius: 10px;
  margin-bottom: 14px;
}

.install-card .testimonial-stars {
  color: #f5a623;
  margin-bottom: 8px;
}

.install-card .author-name {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text3);
  font-weight: 600;
}
@media (max-width: 600px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .product-footer form {
    width: 100%;
    flex-shrink: 0;
  }

  .btn-atc {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: .03em;
    white-space: nowrap;
  }
}
/* ── POLICY PAGES ── */
.shopify-policy__container {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 56px 28px 80px !important;
}

.shopify-policy__title {
  margin-bottom: 26px !important;
}

.shopify-policy__title h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.shopify-policy__body {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}

.shopify-policy__body *:first-child {
  margin-top: 0;
}

.shopify-policy__body h2,
.shopify-policy__body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.shopify-policy__body h2 {
  font-size: 28px;
}

.shopify-policy__body h3 {
  font-size: 22px;
}

.shopify-policy__body p,
.shopify-policy__body li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text2);
}

.shopify-policy__body p {
  margin-bottom: 14px;
}

.shopify-policy__body ul,
.shopify-policy__body ol {
  margin: 14px 0 18px 22px;
}

.shopify-policy__body li {
  margin-bottom: 8px;
}

.shopify-policy__body a {
  color: var(--blue2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shopify-policy__body strong,
.shopify-policy__body b {
  color: var(--text);
  font-weight: 700;
}

.shopify-policy__body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.shopify-policy__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 10px;
}

.shopify-policy__body th,
.shopify-policy__body td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  color: var(--text2);
}

.shopify-policy__body th {
  background: var(--navy3);
  color: var(--text);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
}

.shopify-policy__body blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  background: rgba(30,111,240,.08);
  border-radius: 0 10px 10px 0;
  color: var(--text2);
}

@media (max-width: 749px) {
  .shopify-policy__container {
    padding: 32px 16px 48px !important;
  }

  .shopify-policy__body {
    padding: 22px 18px;
  }

  .shopify-policy__title h1 {
    font-size: 34px;
  }

  .shopify-policy__body h2 {
    font-size: 22px;
  }

  .shopify-policy__body h3 {
    font-size: 18px;
  }

  .shopify-policy__body p,
  .shopify-policy__body li {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* ── COOKIE CONSENT ── */
#shopify-pc__banner,
.shopify-pc__banner,
.shopify-pc__dialog,
.shopify-pc__preferences,
.shopify-pc__popup {
  background: var(--navy2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;
  font-family: var(--font-body) !important;
}

#shopify-pc__banner *,
.shopify-pc__banner *,
.shopify-pc__dialog *,
.shopify-pc__preferences *,
.shopify-pc__popup * {
  font-family: var(--font-body) !important;
}

#shopify-pc__banner h2,
#shopify-pc__banner h3,
.shopify-pc__banner h2,
.shopify-pc__banner h3,
.shopify-pc__dialog h2,
.shopify-pc__dialog h3,
.shopify-pc__preferences h2,
.shopify-pc__preferences h3,
.shopify-pc__popup h2,
.shopify-pc__popup h3 {
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
  color: var(--text) !important;
}

#shopify-pc__banner p,
#shopify-pc__banner span,
#shopify-pc__banner div,
.shopify-pc__banner p,
.shopify-pc__banner span,
.shopify-pc__banner div,
.shopify-pc__dialog p,
.shopify-pc__dialog span,
.shopify-pc__dialog div,
.shopify-pc__preferences p,
.shopify-pc__preferences span,
.shopify-pc__preferences div,
.shopify-pc__popup p,
.shopify-pc__popup span,
.shopify-pc__popup div {
  color: var(--text2) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

#shopify-pc__banner a,
.shopify-pc__banner a,
.shopify-pc__dialog a,
.shopify-pc__preferences a,
.shopify-pc__popup a {
  color: var(--blue2) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

#shopify-pc__banner button,
.shopify-pc__banner button,
.shopify-pc__dialog button,
.shopify-pc__preferences button,
.shopify-pc__popup button,
#shopify-pc__banner .button,
.shopify-pc__banner .button,
.shopify-pc__dialog .button,
.shopify-pc__preferences .button,
.shopify-pc__popup .button {
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  transition: all .15s ease !important;
}

#shopify-pc__banner button:not(.secondary):not(.shopify-pc__button-manage),
.shopify-pc__banner button:not(.secondary):not(.shopify-pc__button-manage),
.shopify-pc__dialog button:not(.secondary):not(.shopify-pc__button-manage),
.shopify-pc__preferences button:not(.secondary):not(.shopify-pc__button-manage),
.shopify-pc__popup button:not(.secondary):not(.shopify-pc__button-manage) {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(30,111,240,.3) !important;
}

#shopify-pc__banner button:not(.secondary):not(.shopify-pc__button-manage):hover,
.shopify-pc__banner button:not(.secondary):not(.shopify-pc__button-manage):hover,
.shopify-pc__dialog button:not(.secondary):not(.shopify-pc__button-manage):hover,
.shopify-pc__preferences button:not(.secondary):not(.shopify-pc__button-manage):hover,
.shopify-pc__popup button:not(.secondary):not(.shopify-pc__button-manage):hover {
  background: var(--blue2) !important;
  transform: translateY(-1px) !important;
}

#shopify-pc__banner .secondary,
#shopify-pc__banner .shopify-pc__button-manage,
.shopify-pc__banner .secondary,
.shopify-pc__banner .shopify-pc__button-manage,
.shopify-pc__dialog .secondary,
.shopify-pc__dialog .shopify-pc__button-manage,
.shopify-pc__preferences .secondary,
.shopify-pc__preferences .shopify-pc__button-manage,
.shopify-pc__popup .secondary,
.shopify-pc__popup .shopify-pc__button-manage {
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid var(--border2) !important;
  box-shadow: none !important;
}

#shopify-pc__banner .secondary:hover,
#shopify-pc__banner .shopify-pc__button-manage:hover,
.shopify-pc__banner .secondary:hover,
.shopify-pc__banner .shopify-pc__button-manage:hover,
.shopify-pc__dialog .secondary:hover,
.shopify-pc__dialog .shopify-pc__button-manage:hover,
.shopify-pc__preferences .secondary:hover,
.shopify-pc__preferences .shopify-pc__button-manage:hover,
.shopify-pc__popup .secondary:hover,
.shopify-pc__popup .shopify-pc__button-manage:hover {
  background: var(--navy3) !important;
  border-color: var(--blue) !important;
}

#shopify-pc__banner {
  max-width: 460px !important;
  bottom: 18px !important;
  left: 18px !important;
  right: 18px !important;
  padding: 20px !important;
}

.shopify-pc__dialog,
.shopify-pc__preferences,
.shopify-pc__popup {
  padding: 24px !important;
}

@media (max-width: 749px) {
  #shopify-pc__banner,
  .shopify-pc__banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    max-width: none !important;
    width: auto !important;
    padding: 16px !important;
    border-radius: 14px !important;
  }

  #shopify-pc__banner h2,
  #shopify-pc__banner h3,
  .shopify-pc__banner h2,
  .shopify-pc__banner h3,
  .shopify-pc__dialog h2,
  .shopify-pc__dialog h3,
  .shopify-pc__preferences h2,
  .shopify-pc__preferences h3,
  .shopify-pc__popup h2,
  .shopify-pc__popup h3 {
    font-size: 20px !important;
    line-height: 1.05 !important;
  }

  #shopify-pc__banner p,
  #shopify-pc__banner span,
  #shopify-pc__banner div,
  .shopify-pc__banner p,
  .shopify-pc__banner span,
  .shopify-pc__banner div,
  .shopify-pc__dialog p,
  .shopify-pc__dialog span,
  .shopify-pc__dialog div,
  .shopify-pc__preferences p,
  .shopify-pc__preferences span,
  .shopify-pc__preferences div,
  .shopify-pc__popup p,
  .shopify-pc__popup span,
  .shopify-pc__popup div {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  #shopify-pc__banner button,
  .shopify-pc__banner button,
  .shopify-pc__dialog button,
  .shopify-pc__preferences button,
  .shopify-pc__popup button,
  #shopify-pc__banner .button,
  .shopify-pc__banner .button,
  .shopify-pc__dialog .button,
  .shopify-pc__preferences .button,
  .shopify-pc__popup .button {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 8px !important;
  }
}
/* MOBILE STEP FINDER */
@media (max-width: 900px) {
  .car-finder-inner {
    flex-direction: column;
    gap: 10px;
  }

  .cf-step:not(.is-visible) {
    display: none;
  }

  .cf-step.is-visible {
    display: block;
    animation: fadeIn .2s ease;
  }

  .cf-select,
  .cf-btn {
    width: 100%;
  }

  .cf-step.is-active-step .cf-select,
  .cf-step.is-active-step .cf-btn {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,111,240,.12), 0 0 18px rgba(30,111,240,.18);
    animation: glowPulse 1.8s infinite;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(30,111,240,.1); }
  50% { box-shadow: 0 0 0 3px rgba(30,111,240,.2); }
}
@media (max-width: 900px) {
  .car-finder-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cf-step {
    width: 100%;
  }

  .cf-step:not(.is-visible) {
    display: none;
  }

  .cf-step.is-visible {
    display: block;
    animation: cfFadeIn .2s ease;
  }

  .cf-select,
  .cf-btn {
    width: 100%;
    max-width: none;
  }

  .cf-step.is-active-step .cf-select,
  .cf-step.is-active-step .cf-btn {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,111,240,.12), 0 0 18px rgba(30,111,240,.18);
    animation: cfGlowPulse 1.8s infinite;
  }
}

@keyframes cfFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cfGlowPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(30,111,240,.10), 0 0 10px rgba(30,111,240,.10);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(30,111,240,.16), 0 0 18px rgba(30,111,240,.22);
  }
}
/* MOBILE CAR FINDER CENTER + ANIMATION */
@media (max-width: 900px) {

  /* center everything */
  .car-finder-inner {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    text-align: center;
    gap: 12px;
  }

  /* make inputs slightly narrower + centered */
  .cf-select,
  .cf-btn {
    width: 100%;
    max-width: 320px; /* keeps it clean, not full width */
  }

  /* animate the label */
  .cf-label {
    margin-bottom: 6px;
    animation: cfBounceGlow 2.2s ease-in-out infinite;
  }

  /* animation */
  @keyframes cfBounceGlow {
    0%, 100% {
      transform: translateY(0);
      text-shadow: 0 0 0 rgba(30,111,240,0);
    }
    50% {
      transform: translateY(-3px);
      text-shadow: 0 0 10px rgba(30,111,240,.35);
    }
  }
}
/* MAKE "SELECT YOUR CAR" BIGGER (MOBILE) */
@media (max-width: 900px) {

  .cf-label {
    font-size: 16px;            /* bigger text */
    font-weight: 900;           /* bold like your headings */
    letter-spacing: .12em;
    text-transform: uppercase;

    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(30,111,240,.12);
    border: 1px solid rgba(30,111,240,.3);

    color: var(--blue2);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;
  }

}
@media (max-width: 900px) {
  .car-finder {
    padding: 12px 16px 8px;
    background: transparent;
    border-bottom: none;
  }

  .car-finder-inner {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
  }

  .cf-label {
    margin: 0 0 4px;
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
  }
 @media (max-width: 900px) {
  .cf-label::after {
    display: none !important;
    content: none !important;
  }
}

  .cf-step {
    width: 100%;
  }

  .cf-step:not(.is-visible) {
    display: none;
  }

  .cf-step.is-visible {
    display: block;
    animation: cfFadeIn .22s ease;
  }

  .cf-select,
  .cf-btn {
    width: 100%;
    max-width: none;
    height: 48px;
  }

  .cf-select {
    background: var(--navy3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
  }

  .cf-btn {
    border-radius: 10px;
    justify-content: center;
  }

  .cf-step.is-active-step .cf-select,
  .cf-step.is-active-step .cf-btn {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,111,240,.10), 0 0 14px rgba(30,111,240,.14);
    animation: cfGlowPulse 1.8s ease-in-out infinite;
  }

  .cf-step--make.is-visible .cf-select {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,111,240,.08);
  }
}

@keyframes cfFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cfGlowPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(30,111,240,.08), 0 0 8px rgba(30,111,240,.08);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(30,111,240,.14), 0 0 16px rgba(30,111,240,.18);
  }
}
@media (max-width: 900px) {
  .car-finder {
    padding: 10px 14px 6px;
    background: transparent;
    border-bottom: none;
  }

  .car-finder-inner {
    max-width: 380px;
    margin: 0 auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
  }

  .cf-label {
    display: block;
    margin: 0 0 2px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
  }

  .cf-label::after {
    content: "Choose make, model and year";
    display: block;
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text2);
  }

  .cf-step {
    width: 100%;
  }

  .cf-step:not(.is-visible) {
    display: none;
  }

  .cf-step.is-visible {
    display: block;
  }

  .cf-select,
  .cf-btn {
    width: 100%;
    max-width: none;
    height: 46px;
  }

  .cf-select {
    min-width: 0;
    background: var(--navy3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    font-size: 14px;
    padding: 0 14px;
  }

  .cf-btn {
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: .06em;
    justify-content: center;
  }

  .cf-step.is-active-step .cf-select,
  .cf-step.is-active-step .cf-btn {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(30,111,240,.10);
    animation: none;
  }

  .cf-step--make.is-visible .cf-select {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(30,111,240,.08);
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 44px 16px 36px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-eyebrow {
    margin: 0 auto 14px;
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 0.95;
    margin-bottom: 14px;
  }

  .hero .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 22px;
    color: var(--text2);
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero-stats {
    margin-top: 24px;
    padding-top: 18px;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats > div {
    min-width: 84px;
  }

  .stat-val {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
    line-height: 1.3;
  }

  .hero-image-wrap img {
    object-position: center right;
    opacity: 0.38;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(11,15,26,.88) 0%,
      rgba(11,15,26,.78) 45%,
      rgba(11,15,26,.72) 100%
    );
  }

  .hero-overlay-bottom {
    height: 70px;
  }
}
@media (max-width: 900px) {
  .hero-stats {
    display: none;
  }
}
@media (max-width: 900px) {

  /* CLEAN HERO */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 16px 36px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 12px;
  }

  .hero .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* REMOVE CLUTTER */
  .hero-stats {
    display: none;
  }

  .btn-secondary {
    display: none;
  }

  /* MAKE MAIN CTA STRONG */
  .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
  }

  /* DARKEN BG FOR READABILITY */
  .hero-image-wrap img {
    opacity: 0.35;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 38px 16px 28px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    margin: 0 auto 12px;
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 0.96;
    margin-bottom: 12px;
  }

  .hero .hero-sub {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
    margin: 0 auto 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
  }

  .btn-secondary {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .hero-image-wrap img {
    opacity: 0.34;
    object-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(11,15,26,.88) 0%,
      rgba(11,15,26,.78) 50%,
      rgba(11,15,26,.72) 100%
    );
  }

  .hero-overlay-bottom {
    height: 70px;
  }
}
@media (max-width: 900px) {
  .car-finder {
    padding: 10px 16px 4px;
    background: transparent;
    border-bottom: none;
  }

  .car-finder-inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 14px;
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
  }

  .cf-label {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media (max-width: 900px) {
  .hero-image-wrap img {
    object-position: 85% center;
  }
}
  .brand-collections {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .brand-collections__header {
    margin-bottom: 16px;
  }

  .brand-collections__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 4px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .brand-collections__grid::-webkit-scrollbar {
    display: none;
  }

  .brand-collections__card {
    flex: 0 0 148px;
    min-height: 118px;
    padding: 12px;
    gap: 8px;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .brand-collections__image-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-collections__title {
    font-size: 15px;
    line-height: 1;
  }

  .brand-collections__arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
@media (max-width: 760px) {

  .brand-collections__swipe-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text3);
    opacity: 0.8;
    letter-spacing: .04em;
  }

}
@media (max-width: 760px) {

  .brand-collections__swipe-hint {
    animation: swipeHint 1.8s ease-in-out infinite;
  }

  @keyframes swipeHint {
    0%, 100% {
      transform: translateX(0);
      opacity: 0.7;
    }
    50% {
      transform: translateX(6px);
      opacity: 1;
    }
  }

}
@media (max-width: 900px) {
  .trust-bar {
    display: none;
  }
}
@media (max-width: 900px) {
  .features-grid {
    display: none !important;
  }

  .features-grid + * {
    display: none;
  }
}
@media (max-width: 900px) {
  .features-section {
    display: none !important;
  }
}
@media (max-width: 760px) {
  .products-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 6px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
  }

  .product-img {
    aspect-ratio: 4 / 3;
  }

  .product-body {
    padding: 14px;
  }

  .product-brand {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .product-title {
    font-size: 16px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .product-compat {
    gap: 4px;
    margin-bottom: 10px;
  }

  .compat-tag {
    font-size: 10px;
    padding: 3px 7px;
  }

  .stock-badge {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .product-footer form {
    width: 100%;
  }

  .price-main {
    font-size: 22px;
  }

  .price-old {
    font-size: 11px;
  }

  .btn-atc {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: .04em;
  }
}
@media (max-width: 760px) {

  .price-main {
    font-size: 26px;        /* BIGGER */
    font-weight: 900;
    line-height: 1;
  }

  .price-old {
    font-size: 14px;        /* bigger than before */
    opacity: 0.7;
    margin-top: 2px;
  }

  .product-footer > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

}
@media (max-width: 760px) {
  .price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .price-main-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .price-main {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .price-old {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 2px;
  }

  .price-save {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34,197,94,.12);
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,.25);
    white-space: nowrap;
  }

  .badge-sale {
    display: none !important;
  }
}

/* DESKTOP: only hide save beside price inside product cards / collection cards */
@media (min-width: 761px) {
  .product-card .price-save,
  .collection-products-grid .price-save {
    display: none !important;
  }

  .product-card .badge-sale,
  .collection-products-grid .badge-sale {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.12) !important;
    color: var(--green) !important;
    border: 1px solid rgba(34,197,94,.25) !important;
  }
}
@media (max-width: 900px) {
  .testimonials-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 6px;
    margin: 0 -16px;
    scroll-behavior: auto;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    display: flex;
    gap: 12px;
    width: max-content;
    flex-wrap: nowrap;
  }

  .testimonials-track .testimonial-card.install-card {
    flex: 0 0 78vw;
    width: 78vw;
    min-width: 78vw;
    max-width: 78vw;
    padding: 14px;
    border-radius: 14px;
  }

  .testimonials-track .install-image {
    height: 190px;
    width: 100%;
    object-fit: cover;
  }

  .testimonials-track .testimonial-text {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .testimonials-track .testimonial-stars {
    margin-bottom: 10px;
  }

  .testimonials-track .author-name {
    margin-top: 6px;
  }

  /* stop old grid layout from fighting this */
  .testimonials-grid.install-grid {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .cf-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    padding: 10px 18px;
    min-height: auto;
    background: rgba(30,111,240,.12);
    border: 1px solid rgba(30,111,240,.28);
    border-radius: 999px;
    text-align: center;
    animation: cfBubblePulse 2s ease-in-out infinite;
  }

  .cf-label-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue2);
    line-height: 1;
  }
}

@keyframes cfBubblePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(30,111,240,.10);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(30,111,240,0);
  }
}
/* MOBILE: override label text */
@media (max-width: 900px) {
  .cf-label-title {
    font-size: 0; /* hide original text */
    position: relative;
  }

  .cf-label-title::after {
    content: "👇 Select Your Car 👇";
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue2);
  }
}
@media (max-width: 900px) {

  .section {
    position: relative;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    z-index: 2;
  }

  .section:first-of-type::before {
    display: none;
  }

}
@media (max-width: 900px) {
  /* visible divider before major homepage sections */
  .brand-collections,
  .features-section,
  .testimonials-slider,
  .products-grid,
  .trust-bar,
  .shopify-policy__container {
    position: relative;
  }

  .brand-collections::before,
  .features-section::before,
  .testimonials-slider::before,
  .products-grid::before,
  .trust-bar::before,
  .shopify-policy__container::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 16px 24px;
    background: rgba(255,255,255,0.14);
  }

  /* don't show on sections you've already hidden on mobile */
  .trust-bar::before,
  .features-section::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .brand-collections .section-header,
  .products-grid.section-header,
  .testimonials-slider + .section-header,
  .section-header {
    position: relative;
  }

  .brand-collections .section-header::before,
  .section:has(.products-grid) .section-header::before,
  .section:has(.testimonials-slider) .section-header::before,
  .section:has(.testimonials-grid) .section-header::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 260px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.16);
  }
}
/* COLLECTION PAGE = SAME AS HOMEPAGE CARDS */
.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

/* DESKTOP: green save badge on image, hide beside price */
@media (min-width: 761px) {
  .collection-products-grid .price-save {
    display: none !important;
  }

  .collection-products-grid .badge-sale {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.12) !important;
    color: var(--green) !important;
    border: 1px solid rgba(34,197,94,.25) !important;
  }
}

/* MOBILE: match homepage mobile card behavior */
@media (max-width: 760px) {
  .collection-products-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 6px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .collection-products-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-products-grid .product-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
  }

  .collection-products-grid .product-img {
    aspect-ratio: 4 / 3;
  }

  .collection-products-grid .product-body {
    padding: 14px;
  }

  .collection-products-grid .product-brand {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .collection-products-grid .product-title {
    font-size: 16px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .collection-products-grid .product-compat {
    gap: 4px;
    margin-bottom: 10px;
  }

  .collection-products-grid .compat-tag {
    font-size: 10px;
    padding: 3px 7px;
  }

  .collection-products-grid .stock-badge {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .collection-products-grid .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .collection-products-grid .product-footer form {
    width: 100%;
  }

  .collection-products-grid .badge-sale {
    display: none !important;
  }

  .collection-products-grid .price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .collection-products-grid .price-main-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .collection-products-grid .price-main {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .collection-products-grid .price-save {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34,197,94,.12);
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,.25);
    white-space: nowrap;
  }


  .collection-products-grid .btn-atc {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: .04em;
  }
}
/* PRODUCT PAGE INSTALL REVIEWS */
.product-install-reviews {
  padding: 10px 28px 80px;
}

.product-install-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-install-review-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-install-review-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.38);
}

.product-install-review-card__image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-install-review-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  background: var(--navy3);
}

.product-install-review-card__content {
  padding: 18px;
}

.product-install-review-card__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  line-height: .98;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}

.product-install-review-card__caption {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 14px;
}

.product-install-review-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-install-review-card__name,
.product-install-review-card__date {
  font-size: 12px;
  color: var(--text3);
  font-weight: 600;
}

.product-install-reviews__footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .desktop-only-install-reviews {
    display: none !important;
  }
}
/* PRODUCT PAGE INSTALL REVIEWS - HORIZONTAL STRIP UNDER GALLERY */
.product-gallery {
  display: flex;
  flex-direction: column;
}

.product-install-reviews--desktop {
  margin-top: 18px;
  padding: 18px 0 0;
  width: 100%;
  border-top: 1px solid var(--border);
}

.product-install-reviews--desktop .section-header {
  margin: 0 0 14px;
  max-width: none;
  text-align: left;
}

.product-install-reviews--desktop .section-eyebrow {
  margin: 0 0 6px;
  text-align: left;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--blue2);
  opacity: .9;
}

.product-install-reviews--desktop .section-title {
  margin: 0 0 6px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.product-install-reviews--desktop .section-sub {
  margin: 0;
  max-width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text2);
}

/* horizontal scrolling row */
.product-install-reviews--desktop .product-install-reviews__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-install-reviews--desktop .product-install-reviews__grid::-webkit-scrollbar {
  height: 8px;
}

.product-install-reviews--desktop .product-install-reviews__grid::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 999px;
}

.product-install-reviews--desktop .product-install-reviews__grid::-webkit-scrollbar-track {
  background: transparent;
}

/* card styling */
.product-install-reviews--desktop .product-install-review-card {
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.product-install-reviews--desktop .product-install-review-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,.26);
}

.product-install-reviews--desktop .product-install-review-card__image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-install-reviews--desktop .product-install-review-card__image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--navy3);
}

.product-install-reviews--desktop .product-install-review-card__content {
  padding: 13px;
}

.product-install-reviews--desktop .testimonial-stars {
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
}

.product-install-reviews--desktop .product-install-review-card__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}

.product-install-reviews--desktop .product-install-review-card__caption {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text2);
}

.product-install-reviews--desktop .product-install-review-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-install-reviews--desktop .product-install-review-card__name,
.product-install-reviews--desktop .product-install-review-card__date {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
}

.product-install-reviews--desktop .product-install-reviews__footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

.product-install-reviews--desktop .btn-secondary {
  padding: 12px 18px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .product-install-reviews--desktop {
    display: none !important;
  }
}
/* =========================================================
   PRODUCT PAGE POLISH + CENTERED INSTALL STRIP HEADING
   ========================================================= */

/* overall page */
.product-page-wrap {
  max-width: 1320px;
  padding: 42px 28px 90px;
}

.product-page-grid {
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* left gallery column */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* main image */
.gallery-main {
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 420px;
  max-height: 560px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* thumbnails */
.gallery-thumbs {
  gap: 12px;
  padding: 4px 2px 6px;
  margin-top: 14px;
}

.gallery-thumb {
  flex: 0 0 86px;
  height: 86px;
  border-radius: 10px;
  background: var(--navy2);
  border: 1px solid var(--border);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30,111,240,.18);
}

/* right info column */
.product-info {
  position: sticky;
  top: 104px;
}

.product-info__vendor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(30,111,240,.10);
  border: 1px solid rgba(30,111,240,.22);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.product-info__title {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: .92;
  margin-bottom: 18px;
}

.product-info__reviews {
  margin-bottom: 24px;
}

.review-count {
  font-size: 13px;
  color: var(--text2);
}

.product-info__price {
  margin-bottom: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-big {
  font-size: 48px;
  letter-spacing: -.02em;
}

.price-strike {
  font-size: 22px;
}

.price-save {
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* variants */
.variant-section {
  margin-bottom: 22px;
}

.variant-label {
  font-size: 12px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.variant-options {
  gap: 10px;
}

.variant-btn {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--navy2);
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: 13px;
  transition: all .18s ease;
}

.variant-btn:hover,
.variant-btn.active {
  border-color: var(--blue);
  background: rgba(30,111,240,.12);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(30,111,240,.12);
}

/* CTA buttons */
.product-cta {
  gap: 14px;
  margin: 24px 0 20px;
}

.btn-add-cart,
.btn-buy-now {
  min-height: 58px;
  border-radius: 12px;
  font-size: 17px;
  letter-spacing: .07em;
}

.btn-add-cart {
  box-shadow: 0 12px 30px rgba(30,111,240,.28);
}

.btn-buy-now {
  background: linear-gradient(180deg, #ffffff 0%, #e8eefc 100%);
}

.btn-add-cart:disabled,
.btn-buy-now:disabled,
.sticky-atc:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* trust boxes */
.product-trust {
  gap: 12px;
  margin: 0 0 30px;
}

.pt-item {
  min-height: 90px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid var(--border);
}

.pt-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.pt-text {
  font-size: 12px;
  line-height: 1.3;
}

/* accordion */
.product-accordion {
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: .08em;
}

.accordion-content {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   INSTALL STRIP UNDER GALLERY
   ========================================================= */
.product-install-reviews--desktop {
  margin-top: 22px;
  padding: 20px 0 0;
  width: 100%;
  border-top: 1px solid var(--border);
}

.product-install-reviews--desktop .section-header {
  margin: 0 0 16px;
  max-width: none;
  text-align: center;
}

.product-install-reviews--desktop .section-eyebrow {
  margin: 0 0 6px;
  text-align: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--blue2);
  opacity: .95;
}

.product-install-reviews--desktop .section-title {
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.product-install-reviews--desktop .section-sub {
  margin: 0 auto;
  max-width: 420px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text2);
}

/* horizontal scrolling row */
.product-install-reviews--desktop .product-install-reviews__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-install-reviews--desktop .product-install-reviews__grid::-webkit-scrollbar {
  height: 8px;
}

.product-install-reviews--desktop .product-install-reviews__grid::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 999px;
}

.product-install-reviews--desktop .product-install-review-card {
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.product-install-reviews--desktop .product-install-review-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,.26);
}

.product-install-reviews--desktop .product-install-review-card__image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-install-reviews--desktop .product-install-review-card__image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--navy3);
}

.product-install-reviews--desktop .product-install-review-card__content {
  padding: 13px;
}

.product-install-reviews--desktop .testimonial-stars {
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
}

.product-install-reviews--desktop .product-install-review-card__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}

.product-install-reviews--desktop .product-install-review-card__caption {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text2);
}

.product-install-reviews--desktop .product-install-review-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-install-reviews--desktop .product-install-review-card__name,
.product-install-reviews--desktop .product-install-review-card__date {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
}

.product-install-reviews--desktop .product-install-reviews__footer {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.product-install-reviews--desktop .btn-secondary {
  padding: 12px 18px;
  font-size: 13px;
}

/* lightbox polish */
.install-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 9999;
}

.install-gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.install-gallery-lightbox__inner {
  position: relative;
  max-width: 96vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.install-gallery-lightbox__image {
  max-width: 96vw;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

.install-gallery-lightbox__caption {
  margin-top: 12px;
  text-align: center;
  color: var(--text2);
  font-size: 14px;
}

.install-gallery-lightbox__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy3);
  border: 1px solid var(--border2);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* mobile stays unchanged */
@media (max-width: 900px) {
  .product-page-wrap {
    padding: 24px 16px 40px;
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-info {
    position: static;
    top: auto;
  }

  .gallery-main {
    min-height: unset;
    max-height: unset;
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .product-install-reviews--desktop {
    display: none !important;
  }
}
/* CLEANER VARIANT BUTTONS - DESKTOP + MOBILE */
.variant-section {
  margin-bottom: 18px;
}

.variant-label {
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 8px;
  color: var(--text3);
}

.variant-label span {
  color: var(--text2);
  font-weight: 600;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 9px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
  box-shadow: none;
  transition: all .16s ease;
}

.variant-btn:hover {
  border-color: var(--border2);
  background: rgba(255,255,255,.05);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.variant-btn.active {
  background: rgba(30,111,240,.14);
  border-color: var(--blue);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(30,111,240,.18) inset;
}

@media (max-width: 900px) {
  .variant-section {
    margin-bottom: 16px;
  }

  .variant-label {
    font-size: 10px;
    margin-bottom: 7px;
  }

  .variant-options {
    gap: 7px;
  }

  .variant-btn {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 8px;
  }
}
/* TRUSTED BY DRIVERS - DESKTOP ONLY FIX */
@media (min-width: 901px) {
  .testimonials-slider {
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
  }

  .testimonial-card.install-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 18px;
    border-radius: 16px;
    background: var(--navy2);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.18);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }

  .testimonial-card.install-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
  }

  .install-image-btn {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .install-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .testimonial-card.install-card .testimonial-stars {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .testimonial-card.install-card .testimonial-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text2);
    margin-bottom: 14px;
    min-height: 92px;
  }

  .testimonial-card.install-card .author-name {
    margin-top: 0;
    font-size: 13px;
    color: var(--text3);
    font-weight: 700;
  }

  .section-header {
    max-width: 760px;
  }

  .section-title {
    margin-bottom: 10px;
  }

  .section-sub {
    max-width: 620px;
  }
}
/* BIGGER PREMIUM TYPOGRAPHY (DESKTOP) */
@media (min-width: 901px) {
  body {
    font-size: 20px;
  }

  .section-title {
    font-size: clamp(42px, 4vw, 64px);
  }

  .section-sub {
    font-size: 18px;
  }

  .product-info__title {
    font-size: clamp(36px, 3vw, 54px);
  }

  .product-info__price .price-big {
    font-size: 52px;
  }

  .product-title {
    font-size: 22px;
  }

  .product-card .product-features li {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-add-cart,
  .btn-buy-now {
    font-size: 18px;
  }
}
@media (min-width: 901px) {
  .announce {
    font-size: 17px;
    padding: 8px 16px; /* keeps it slim */
    line-height: 1.15;
  }
}
@media (min-width: 901px) {
  .nav-item {
    font-size: 16px;
    padding: 12px 18px;
  }
}
@media (min-width: 901px) {
  .nav-item {
    font-size: 15px;
    padding: 10px 14px;
  }

  .header-inner {
    gap: 20px; /* reduce spacing between items */
  }

  .nav-cta {
    padding: 9px 16px; /* slightly smaller button */
    font-size: 12px;
  }
}
/* PREMIUM PRODUCT LOAD-IN */
.products-load-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.products-load-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-load-section .product-card {
  opacity: 0;
  transform: translateY(20px);
}

.products-load-section.is-visible .product-card {
  animation: productFadeUp .55s ease forwards;
}

.products-load-section.is-visible .product-card:nth-child(1) { animation-delay: 0.05s; }
.products-load-section.is-visible .product-card:nth-child(2) { animation-delay: 0.10s; }
.products-load-section.is-visible .product-card:nth-child(3) { animation-delay: 0.15s; }
.products-load-section.is-visible .product-card:nth-child(4) { animation-delay: 0.20s; }
.products-load-section.is-visible .product-card:nth-child(5) { animation-delay: 0.25s; }
.products-load-section.is-visible .product-card:nth-child(6) { animation-delay: 0.30s; }
.products-load-section.is-visible .product-card:nth-child(7) { animation-delay: 0.35s; }
.products-load-section.is-visible .product-card:nth-child(8) { animation-delay: 0.40s; }

@keyframes productFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: var(--text);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--blue);
  transform: translateY(-2px);
}

@media (min-width: 901px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }
}
/* MOBILE: divider directly below best sellers section */
@media (max-width: 900px) {
  .mobile-only.featured-products-mobile {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 14px;
  }

  .mobile-only.featured-products-mobile::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: rgba(255,255,255,0.16);
    display: block;
  }

  /* remove any other divider above or inside this section */
  .mobile-only.featured-products-mobile .section-header::before,
  .mobile-only.featured-products-mobile .section-header::after,
  .mobile-only.featured-products-mobile .products-grid::after,
  .mobile-only.featured-products-mobile .collection-products-grid::after,
  .mobile-only.featured-products-mobile .section::before {
    display: none !important;
    content: none !important;
  }
}
/* MOBILE: make best sellers section feel cleaner + more native */
@media (max-width: 900px) {
  .mobile-only.featured-products-mobile .section {
    padding-top: 14px !important;
    padding-bottom: 0 !important;
  }

  .mobile-only.featured-products-mobile .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-only.featured-products-mobile .section-header {
    margin: 0 auto 14px !important;
    padding: 0 16px !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .mobile-only.featured-products-mobile .section-eyebrow,
  .mobile-only.featured-products-mobile .section-sub {
    display: none !important;
  }

  .mobile-only.featured-products-mobile .section-title {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance;
  }

  .mobile-only.featured-products-mobile .products-grid.collection-products-grid {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}