/** Shopify CDN: Minification failed

Line 1043:14 Expected identifier but found whitespace
Line 1043:19 Unexpected "768px"

**/
:root {
  --amz-dark:   #002868;
  --amz-nav:    #003087;
  --amz-orange: #CC0000;
  --amz-yellow: #CC0000;
  --amz-bg:     #F5F7FA;
  --amz-border: #D0D5DD;
  --amz-green:  #1A7A3C;
  --amz-star:   #CC0000;
  --amz-link:   #003087;
  --amz-text:   #0f1111;
  --pat-red:    #CC0000;
  --pat-blue:   #002868;
  --pat-dot:    #1A7A3C;
}

/* ============================================================
   OEM SELECT PARTS CORP — AMAZON-STYLE DESKTOP THEME
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --amz-dark:    #002868;
  --amz-nav:     #003087;
  --amz-nav-hover: #37475A;
  --amz-orange:  #CC0000;
  --amz-orange-btn: #CC0000;
  --amz-yellow:  #CC0000;
  --amz-yellow-dark: #BB0000;
  --amz-buy-now: #AA0000;
  --amz-bg:      #F5F7FA;
  --amz-white:   #FFFFFF;
  --amz-link:    #003087;
  --amz-link-hover: #C45500;
  --amz-text:    #0F1111;
  --amz-muted:   #565959;
  --amz-border:  #D5D9D9;
  --amz-green:   #1A7A3C;
  --amz-red:     #CC0000;
  --amz-star:    #CC0000;
  --amz-radius:  4px;
  --amz-shadow:  0 2px 5px 0 rgba(213,217,217,.5);
  --amz-shadow-lg: 0 3px 10px rgba(0,0,0,.2);
}
html { scroll-behavior: smooth; }
body {
  font-family: "Amazon Ember", Arial, sans-serif;
  color: var(--amz-text);
  background: var(--amz-bg);
  font-size: 14px;
  line-height: 1.5;
}
a { color: var(--amz-link); text-decoration: none; }
a:hover { color: var(--amz-link-hover); text-decoration: underline; }
h1,h2,h3,h4,h5 { font-family: "Amazon Ember", Arial, sans-serif; }

/* ── LANG BAR ─────────────────────────────────────────────── */
.lang-bar {
  background: var(--amz-dark);
  display: flex;
  justify-content: flex-end;
  padding: 4px 18px;
  gap: 4px;
  border-bottom: 1px solid #3a3a3a;
}
.lang-btn {
  background: none;
  border: 1px solid #555;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all .15s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--amz-orange);
  border-color: var(--amz-orange);
  color: var(--amz-dark);
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--amz-dark);
  color: #ccc;
  font-size: 11px;
  text-align: center;
  padding: 4px 20px;
  letter-spacing: .3px;
  border-bottom: 1px solid #001550;
}
.topbar span { color: var(--amz-orange); font-weight: 700; }

/* ── AMAZON HEADER ────────────────────────────────────────── */
header {
  background: var(--amz-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--amz-orange);
}
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 8px 14px;
  gap: 10px;
}

/* Logo block */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .1s;
  gap: 2px;
}
.logo:hover { border-color: #fff; }
.logo-badge { display: none; }
.logo-text .brand-top {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  line-height: 1;
  text-decoration: none;
}
.logo-text .brand-sub {
  font-size: 9px;
  color: var(--amz-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* Search bar */
.header-search {
  display: flex;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--amz-orange);
  height: 40px;
}
.header-search-category {
  background: #F3F3F3;
  border: none;
  border-right: 1px solid #ccc;
  padding: 0 8px;
  font-size: 12px;
  color: var(--amz-text);
  cursor: pointer;
  min-width: 60px;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  color: var(--amz-text);
  background: #fff;
}
.header-search-btn {
  background: var(--amz-orange-btn);
  border: none;
  padding: 0 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 4px 0;
  transition: background .1s;
}
.header-search-btn:hover { background: #e07b00; }
.header-search-btn svg { width: 20px; height: 20px; fill: var(--amz-dark); }

/* Right side of header */
.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-action {
  display: flex;
  flex-direction: column;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .1s;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}
.header-action:hover { border-color: #fff; color: #fff; text-decoration: none; }
.header-action-top { font-size: 11px; color: #ccc; line-height: 1; }
.header-action-main { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }

/* Cart button */
.btn-cart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .1s;
  text-decoration: none;
}
.btn-cart:hover { border-color: #fff; color: #fff; text-decoration: none; }
.btn-cart svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.5; }
.cart-count {
  font-size: 18px;
  font-weight: 900;
  color: var(--amz-orange);
  line-height: 1;
  margin-bottom: 2px;
}

/* ── AMAZON NAV BAR ───────────────────────────────────────── */
.mega-bar {
  background: var(--amz-nav);
  border-bottom: none;
}
.mega-bar-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: stretch;
  overflow-x: auto;
}
.mega-bar-inner::-webkit-scrollbar { display: none; }

.mega-item { position: relative; }
.mega-item > .mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  white-space: nowrap;
  transition: all .1s;
  font-family: Arial, sans-serif;
  height: 100%;
}
.mega-item > .mega-trigger:hover,
.mega-item:hover > .mega-trigger {
  border-color: #fff;
  border-radius: 2px;
}
.mega-trigger svg {
  width: 10px; height: 10px;
  fill: #fff;
  transition: transform .15s;
}
.mega-item:hover .mega-trigger svg { transform: rotate(180deg); }

/* All Departments pill */
.mega-item:first-child .mega-trigger {
  font-weight: 700;
  padding-left: 10px;
}
.mega-item:first-child .mega-trigger::before {
  content: '☰';
  font-size: 15px;
  margin-right: 4px;
}

.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 300;
  background: #fff;
  box-shadow: var(--amz-shadow-lg);
  border: 1px solid var(--amz-border);
  border-top: 2px solid var(--amz-orange);
  min-width: 240px;
}
.mega-dropdown.wide { min-width: 720px; }
.mega-item:hover .mega-dropdown { display: block; }
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px;
  gap: 0;
}
.mega-col {
  padding: 0 16px;
  border-right: 1px solid #f0f0f0;
}
.mega-col:first-child { padding-left: 4px; }
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--amz-text);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e7e7e7;
}
.speed-badge { color: var(--amz-link-hover); }
.mega-col ul { list-style: none; }
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  font-size: 13px;
  color: var(--amz-text);
  display: block;
  padding: 2px 0;
  line-height: 1.4;
}
.mega-col ul li a:hover { color: var(--amz-link-hover); text-decoration: none; }
.mega-col ul li a .meta { font-size: 11px; color: var(--amz-muted); display: block; }
.mega-simple { list-style: none; padding: 8px 0; }
.mega-simple li a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--amz-text);
  border-bottom: 1px solid #f5f5f5;
  transition: background .1s;
}
.mega-simple li a:hover { background: #f7f7f7; text-decoration: none; }
.mega-simple li a .meta { font-size: 11px; color: var(--amz-muted); display: block; }

/* ── DELIVERY BANNER ──────────────────────────────────────── */
.amz-delivery-bar {
  background: var(--amz-white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 12px;
  color: var(--amz-text);
  border-bottom: 1px solid var(--amz-border);
  max-width: 100%;
}
.amz-delivery-bar svg { width: 16px; height: 16px; fill: var(--amz-link); flex-shrink: 0; }
.amz-delivery-bar strong { color: var(--amz-link); cursor: pointer; }
.amz-delivery-bar strong:hover { color: var(--amz-link-hover); text-decoration: underline; }

/* ── HERO STRIP ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--amz-dark) 0%, #1a2744 60%, #0d1f3c 100%);
  color: #fff;
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 18px 32px;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--amz-orange);
  color: var(--amz-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}
.hero h1 span { color: var(--amz-orange); }
.hero p { font-size: 14px; color: #bbb; line-height: 1.7; max-width: 500px; margin-bottom: 24px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--amz-yellow);
  color: var(--amz-text);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--amz-yellow-dark);
  cursor: pointer;
  transition: background .1s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--amz-yellow-dark); text-decoration: none; color: var(--amz-text); }
.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .1s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: #fff; color: #fff; text-decoration: none; }
.hero-visual { flex: 0 0 300px; display: flex; flex-direction: column; gap: 10px; }
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--amz-radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amz-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stat-num { font-weight: 900; font-size: 20px; color: var(--amz-orange); }
.stat-lbl { font-size: 11px; color: #aaa; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar { background: var(--amz-orange); padding: 10px 18px; }
.trust-bar-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--amz-dark);
  font-size: 12px;
  font-weight: 700;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--amz-dark); flex-shrink: 0; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 20px 0; }
.section-alt { background: #fff; }
.section-inner { max-width: 1500px; margin: 0 auto; padding: 0 18px; }
.section-title { margin-bottom: 16px; }
.section-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--amz-text);
}
.section-title h2 span { color: var(--amz-orange-btn); }
.section-title p { font-size: 13px; color: var(--amz-muted); margin-top: 4px; }
.title-bar { display: none; }

/* ── CATEGORY GRID ────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--amz-white);
  border-radius: var(--amz-radius);
  overflow: hidden;
  box-shadow: var(--amz-shadow);
  cursor: pointer;
  transition: box-shadow .15s;
  border: 1px solid var(--amz-border);
}
.cat-card:hover { box-shadow: var(--amz-shadow-lg); }
.cat-card-img { height: 140px; display: flex; align-items: center; justify-content: center; }
.cat-card-img.at  { background: linear-gradient(135deg, #1E1E1E, #2a3a5a); }
.cat-card-img.hps { background: linear-gradient(135deg, #0a1a3a, #1E1E1E); }
.cat-card-img.b2b { background: linear-gradient(135deg, #0a2a1a, #1E1E1E); }
.cat-card-body { padding: 12px 14px; }
.cat-card-body h3 { font-size: 14px; font-weight: 700; color: var(--amz-text); margin-bottom: 4px; }
.cat-card-body p { font-size: 12px; color: var(--amz-muted); margin-bottom: 8px; }
.cat-count {
  display: inline-block;
  background: #FEF0C7;
  color: #B45309;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.product-card {
  background: var(--amz-white);
  border-radius: var(--amz-radius);
  border: 1px solid var(--amz-border);
  box-shadow: var(--amz-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
}
.product-card:hover { box-shadow: var(--amz-shadow-lg); }
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--amz-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}
.placeholder-label { text-align: center; padding: 20px; }
.placeholder-label .sku { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--amz-muted); text-transform: uppercase; margin-bottom: 6px; }
.placeholder-label .trans { font-size: 14px; font-weight: 700; color: var(--amz-text); }
.placeholder-label .ref-note { font-size: 10px; color: var(--amz-muted); font-style: italic; }

.product-body { padding: 10px 12px 6px; flex: 1; }
.product-body h4 {
  font-size: 13px;
  font-weight: 400;
  color: var(--amz-text);
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-body h4:hover { color: var(--amz-link-hover); }
.product-fits { font-size: 11px; color: var(--amz-muted); }

/* Stars */
.amz-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 4px 0;
}
.amz-stars svg { width: 12px; height: 12px; fill: var(--amz-star); }
.amz-stars span { font-size: 12px; color: var(--amz-link); margin-left: 3px; }
.amz-instock { font-size: 12px; color: var(--amz-green); font-weight: 400; margin-top: 2px; }

.product-footer {
  padding: 6px 12px 12px;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--amz-text);
  line-height: 1;
}
.product-price::before {
  content: '$';
  font-size: 12px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 3px;
  display: inline-block;
}
.product-price-sub { display: none; }

.btn-add, .btn-buy-now {
  width: 100%;
  background: var(--amz-yellow);
  color: var(--amz-text);
  border: 1px solid var(--amz-yellow-dark);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background .1s;
  text-align: center;
  display: block;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-add:hover, .btn-buy-now:hover { background: var(--amz-yellow-dark); }
.btn-add:active, .btn-buy-now:active { background: #880000; }

/* ── COLLECTION PAGE ──────────────────────────────────────── */
.collection-header {
  background: var(--amz-white);
  padding: 14px 18px;
  border-bottom: 1px solid var(--amz-border);
  max-width: 1500px;
  margin: 0 auto;
}
.collection-header h1 { font-size: 20px; font-weight: 700; color: var(--amz-text); }
.collection-header p { font-size: 13px; color: var(--amz-muted); margin-top: 4px; }

.collection-filters {
  display: flex;
  gap: 6px;
  padding: 10px 18px;
  background: var(--amz-white);
  border-bottom: 1px solid var(--amz-border);
  max-width: 1500px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
}
.filter-tag {
  background: var(--amz-white);
  border: 1px solid var(--amz-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--amz-text);
  cursor: pointer;
  transition: all .1s;
  text-decoration: none;
  box-shadow: var(--amz-shadow);
}
.filter-tag:hover { border-color: var(--amz-orange); text-decoration: none; }
.filter-tag.active {
  background: var(--amz-orange);
  border-color: var(--amz-orange);
  color: var(--amz-dark);
  font-weight: 700;
}

/* ── PRODUCT DETAIL PAGE ──────────────────────────────────── */
.breadcrumb {
  font-size: 12px;
  color: var(--amz-muted);
  padding: 8px 0 12px;
}
.breadcrumb a { color: var(--amz-link); }
.breadcrumb a:hover { color: var(--amz-link-hover); }

.product-page {
  display: grid;
  grid-template-columns: 45% 1fr 280px;
  gap: 20px;
  align-items: flex-start;
  background: var(--amz-white);
  border: 1px solid var(--amz-border);
  border-radius: var(--amz-radius);
  padding: 20px;
  box-shadow: var(--amz-shadow);
}

.product-page-img {
  background: var(--amz-white);
  border: 1px solid var(--amz-border);
  border-radius: var(--amz-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.product-page-img img { width: 100%; height: auto; object-fit: contain; }

.product-page-info {
  border-right: 1px solid var(--amz-border);
  padding-right: 20px;
}

.product-sku {
  font-size: 11px;
  color: var(--amz-muted);
  margin-bottom: 6px;
}
.product-page-info h1 {
  font-size: 22px;
  font-weight: 400;
  color: var(--amz-text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.product-page-price { display: none; }
.product-page-price-sub { display: none; }
.product-page-desc {
  font-size: 14px;
  color: var(--amz-text);
  line-height: 1.7;
  margin-top: 16px;
  border-top: 1px solid var(--amz-border);
  padding-top: 16px;
}
.product-page-desc p { margin-bottom: 8px; }

.product-meta-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
  margin-top: 20px;
}
.product-meta-table tr:nth-child(even) { background: var(--amz-bg); }
.product-meta-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--amz-border);
  color: var(--amz-text);
}
.product-meta-table td:first-child {
  font-weight: 700;
  width: 38%;
  color: var(--amz-text);
}

/* Buy box (right column) */
.amz-buy-box {
  border: 1px solid var(--amz-border);
  border-radius: var(--amz-radius);
  padding: 18px;
  position: sticky;
  top: 80px;
}
.amz-buy-box-price {
  font-size: 26px;
  font-weight: 400;
  color: var(--amz-text);
  margin-bottom: 4px;
}
.amz-buy-box-price::before {
  content: '$';
  font-size: 14px;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}
.amz-buy-box-mxn {
  font-size: 12px;
  color: var(--amz-muted);
  margin-bottom: 8px;
}
.amz-buy-box-delivery {
  font-size: 13px;
  color: var(--amz-text);
  margin-bottom: 6px;
  line-height: 1.5;
}
.amz-buy-box-delivery strong { color: var(--amz-link); }
.amz-buy-box-stock {
  font-size: 16px;
  color: var(--amz-green);
  margin-bottom: 14px;
  font-weight: 400;
}
.btn-add-full {
  display: block;
  width: 100%;
  background: var(--amz-yellow);
  color: var(--amz-text);
  border: 1px solid var(--amz-yellow-dark);
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  margin-bottom: 8px;
  transition: background .1s;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-add-full:hover { background: var(--amz-yellow-dark); }
.amz-buy-now-btn {
  display: block;
  width: 100%;
  background: var(--amz-buy-now);
  color: var(--amz-text);
  border: 1px solid #FF8F00;
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  margin-bottom: 16px;
  transition: background .1s;
  text-decoration: none;
}
.amz-buy-now-btn:hover { background: #e8920e; text-decoration: none; color: var(--amz-text); }

.amz-buy-box-secure {
  font-size: 12px;
  color: var(--amz-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px;
}
.amz-buy-box-secure svg { width: 14px; height: 14px; fill: var(--amz-muted); }

.amz-buy-box-meta {
  font-size: 13px;
  border-top: 1px solid var(--amz-border);
  padding-top: 12px;
}
.amz-buy-box-meta tr td { padding: 4px 0; color: var(--amz-text); font-size: 12px; }
.amz-buy-box-meta tr td:first-child { color: var(--amz-muted); width: 45%; }

/* Trust icons row */
.amz-trust-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--amz-border);
  margin-top: 14px;
}
.amz-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--amz-muted);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.amz-trust-item svg { width: 22px; height: 22px; fill: var(--amz-link); }

/* Stars on PDP */
.amz-pdp-stock { font-size: 16px; color: var(--amz-green); margin-bottom: 6px; }
.amz-pdp-delivery { font-size: 13px; color: var(--amz-text); line-height: 1.6; margin-bottom: 12px; }
.amz-pdp-delivery strong { font-weight: 700; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-strip { background: var(--amz-dark); color: #fff; padding: 40px 0; }
.about-inner { max-width: 1500px; margin: 0 auto; display: flex; gap: 48px; align-items: center; flex-wrap: wrap; padding: 0 18px; }
.about-content { flex: 1; min-width: 260px; }
.about-content .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--amz-orange); font-weight: 700; margin-bottom: 12px; }
.about-content h2 { font-size: 22px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.about-content p { color: #aaa; font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.about-stats { flex: 0 0 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.astat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--amz-radius); padding: 16px; text-align: center; }
.astat-num { font-weight: 900; font-size: 26px; color: var(--amz-orange); }
.astat-lbl { font-size: 11px; color: #888; margin-top: 4px; }

/* ── MONEY STRIP ──────────────────────────────────────────── */
.money-strip {
  background: var(--amz-orange);
  color: var(--amz-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: .5px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--amz-dark);
  color: #888;
  padding: 0;
}
.footer-top-link {
  background: #37475A;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  transition: background .1s;
}
.footer-top-link:hover { background: #485769; }
.footer-top-link a { color: #fff; font-size: 13px; text-decoration: none; }
.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 32px 18px 20px;
  border-bottom: 1px solid #3a3a3a;
}
.footer-brand .brand-top {
  color: var(--amz-white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
}
.footer-brand p { font-size: 12px; line-height: 1.7; margin-top: 8px; color: #666; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 12px; color: #999; transition: color .1s; }
.footer-col ul li a:hover { color: var(--amz-orange); text-decoration: none; }
.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge-flag {
  background: #222;
  border: 1px solid #333;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 10px;
  color: #666;
}

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { padding: 20px 0; text-align: center; }
.pagination a, .pagination span {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 2px;
  border: 1px solid var(--amz-border);
  border-radius: 3px;
  font-size: 13px;
  color: var(--amz-link);
  background: var(--amz-white);
}
.pagination .current {
  background: var(--amz-orange);
  border-color: var(--amz-orange);
  color: var(--amz-dark);
  font-weight: 700;
}

/* ── SEARCH PAGE ──────────────────────────────────────────── */
.search-section { background: var(--amz-white); padding: 20px 18px; border-bottom: 1px solid var(--amz-border); }
.search-inner { max-width: 700px; display: flex; gap: 8px; }
.search-input {
  flex: 1;
  border: 1px solid var(--amz-border);
  border-radius: var(--amz-radius);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}
.search-input:focus { border-color: var(--amz-orange); box-shadow: 0 0 0 3px rgba(255,153,0,.15); }
.search-btn {
  background: var(--amz-yellow);
  border: 1px solid var(--amz-yellow-dark);
  border-radius: var(--amz-radius);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--amz-text);
}
.search-btn:hover { background: var(--amz-yellow-dark); }

/* ── SCROLL TOP ───────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amz-nav);
  color: #fff;
  border: 1px solid #555;
  font-size: 18px;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--amz-orange-btn); border-color: var(--amz-orange-btn); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

   AMAZON-STYLE MOBILE LAYOUT
   Breakpoint: ≤ 768px
   ============================================================ */


/* ── MEGA MENU: View All link + clickable trigger ───────── */
.mega-trigger-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.mega-trigger-link:hover { color: var(--amz-orange); }

.mega-view-all {
  display: block;
  background: var(--amz-orange);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  text-decoration: none;
  letter-spacing: .3px;
  border-radius: 4px;
  margin: 0 0 12px 0;
  transition: background .15s;
}
.mega-view-all:hover { background: #AA0000; }


/* ── SPEED CATEGORY STRIP (collection page) ──────────────── */
.speed-cat-strip {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 2px solid #F0F4F8;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.speed-cat-strip::-webkit-scrollbar { display: none; }

.speed-cat-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 22px;
  border: 2px solid #d5d9d9;
  background: #F0F4F8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #0f1111;
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
  letter-spacing: .2px;
}
.speed-cat-pill:hover {
  border-color: var(--amz-orange);
  color: var(--amz-orange);
  background: #fff;
}
.speed-cat-pill.active {
  background: var(--amz-orange);
  border-color: var(--amz-orange);
  color: #fff;
}

@media (max-width: 768px) {

  /* ─────────────────────────────────────────
     RESET DESKTOP ELEMENTS
  ───────────────────────────────────────── */
  .lang-bar,
  .topbar,
  .mega-bar,
  .money-strip,
  #scroll-top { display: none !important; }
  header { display: none !important; }

  * { -webkit-tap-highlight-color: transparent; }

  html { scroll-behavior: smooth; }

  body {
    padding-top: 108px;  /* header-top(56px) + search-bar(56px) */
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 20px));
    background: #F0F4F8;
    -webkit-font-smoothing: antialiased;
  }

  /* ─────────────────────────────────────────
     AMAZON MOBILE HEADER
  ───────────────────────────────────────── */
  .amz-header {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #002868;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,.5);
  }
  .amz-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    gap: 10px;
    height: 54px;
    flex-shrink: 0;
  }
  .amz-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: .5px;
    line-height: 1.2;
    flex-shrink: 0;
    text-decoration: none;
  }
  .amz-logo-text span {
    display: block;
    font-size: 8px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-top: 1px;
  }
  .amz-header-cart {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    padding: 6px 8px;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    text-decoration: none;
  }
  .amz-header-cart:active { background: rgba(255,255,255,.12); }
  .amz-header-cart svg { width: 24px; height: 24px; }
  .amz-cart-badge {
    position: absolute;
    top: 1px; right: 1px;
    background: #CC0000;
    color: #002868;
    font-size: 10px;
    font-weight: 900;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    line-height: 1;
  }

  /* ─────────────────────────────────────────
     AMAZON SEARCH BAR
  ───────────────────────────────────────── */
  .amz-search-bar {
    display: flex !important;
    padding: 6px 10px 8px;
    align-items: center;
    flex-shrink: 0;
  }
  .amz-search-wrap {
    display: flex;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #CC0000;
    transition: border-color .15s;
    height: 40px;
    box-sizing: border-box;
    align-items: center;
  }
  .amz-search-wrap:focus-within { border-color: #CC0000; }
  .amz-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #002868;
    background: #fff;
    height: 40px;
    line-height: 40px;
    min-width: 0;
  }
  .amz-search-btn {
    background: #CC0000;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    width: 48px;
    height: 40px;
    flex-shrink: 0;
    transition: background .15s;
    -webkit-appearance: none;
    touch-action: manipulation;
  }
  .amz-search-btn:active { background: #AA0000; }
  .amz-search-btn svg { width: 20px; height: 20px; fill: #002868; }

  /* ─────────────────────────────────────────
     BOTTOM NAV
  ───────────────────────────────────────── */
  .amz-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: #002868;
    border-top: 1px solid #001550;
    justify-content: space-around;
    align-items: flex-start;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 20px));
    min-height: 60px;
  }
  .amz-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #ccc;
    font-size: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 4px 0;
    min-width: 52px;
    min-height: 44px;
    border-radius: 6px;
    position: relative;
    justify-content: center;
    transition: color .15s;
  }
  .amz-nav-item svg { width: 22px; height: 22px; fill: #ccc; transition: fill .15s; }
  .amz-nav-item.active,
  .amz-nav-item:active { color: #CC0000; }
  .amz-nav-item.active svg,
  .amz-nav-item:active svg { fill: #CC0000; }

  .amz-nav-badge {
    position: absolute;
    top: 2px; right: 6px;
    background: #CC0000;
    color: #002868;
    font-size: 9px;
    font-weight: 900;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  /* ─────────────────────────────────────────
     CATEGORY STRIP (horizontal scroll pills)
  ───────────────────────────────────────── */
  .amz-cat-strip {
    display: flex !important;
    overflow-x: auto;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .amz-cat-strip::-webkit-scrollbar { display: none; }
  .amz-cat-pill {
    flex-shrink: 0;
    background: #F0F4F8;
    border: 1px solid #d5d9d9;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0f1111;
    white-space: nowrap;
    text-decoration: none;
    transition: all .15s;
    min-height: 34px;
    display: flex;
    align-items: center;
  }
  .amz-cat-pill.active,
  .amz-cat-pill:active {
    background: #CC0000;
    border-color: #CC0000;
    color: #fff;
  }

  /* ─────────────────────────────────────────
     DELIVERY BANNER
  ───────────────────────────────────────── */
  .amz-delivery-bar {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    font-size: 12px;
    color: #0f1111;
    font-family: 'Open Sans', sans-serif;
  }
  .amz-delivery-bar svg { width: 16px; height: 16px; fill: #003087; flex-shrink: 0; }
  .amz-delivery-bar strong { color: #1A7A3C; }

  /* ─────────────────────────────────────────
     PRODUCT GRID
  ───────────────────────────────────────── */
  .product-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding: 6px !important;
    background: #F0F4F8 !important;
  }
  .product-card {
    background: #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.1) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: box-shadow .15s !important;
    text-decoration: none !important;
  }
  .product-card:active {
    box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  }

  /* Image area */
  .product-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    background: #f9f9f9 !important;
    overflow: hidden !important;
  }
  .product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
    transition: transform .2s !important;
  }
  .product-card:active .product-img img { transform: scale(1.03) !important; }

  /* No-image placeholder */
  .product-img:empty::after,
  .product-img img[src=""]::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F4F8 25%, #e3e6e6 100%);
  }

  .product-body {
    padding: 8px 8px 4px !important;
    flex: 1 !important;
  }
  .product-body h4 {
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #0f1111 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Star rating row */
  .amz-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
  }
  .amz-stars svg { width: 11px; height: 11px; fill: #CC0000; }

  .amz-stars span { font-size: 10px; color: #003087; }

  .product-footer {
    padding: 4px 8px 8px !important;
    border-top: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
  }
  .product-price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1111 !important;
    line-height: 1 !important;
  }
  .product-price::before {
    content: '$';
    font-size: 11px;
    font-weight: 400;
    vertical-align: top;
    margin-top: 2px;
    display: inline-block;
  }
  .product-price-sub { display: none !important; }

  /* Add to Cart button — Amazon yellow */
  .btn-add, .btn-buy-now {
    width: 100% !important;
    background: #CC0000 !important;
    color: #ffffff !important;
    border: 1px solid #AA0000 !important;
    border-radius: 20px !important;
    padding: 8px 6px !important;
    font-size: 11px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
    cursor: pointer !important;
    text-align: center !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset !important;
    transition: background .1s !important;
    display: block !important;
    min-height: 32px !important;
  }
  .btn-add:active, .btn-buy-now:active { background: #880000 !important; }

  /* ─────────────────────────────────────────
     COLLECTION HEADER
  ───────────────────────────────────────── */
  .collection-header {
    background: #fff;
    padding: 12px 14px 10px;
    border-bottom: 1px solid #e7e7e7;
  }
  .collection-header h1 {
    font-size: 17px !important;
    font-weight: 700;
    color: #0f1111;
  }
  .collection-header p {
    font-size: 13px;
    color: #565959;
    margin-top: 4px;
  }

  /* Filter tags */
  .collection-filters {
    display: flex !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding: 10px 12px !important;
    background: #fff !important;
    border-bottom: 1px solid #e7e7e7 !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .collection-filters::-webkit-scrollbar { display: none; }
  .filter-tag {
    flex-shrink: 0 !important;
    background: #F0F4F8 !important;
    border: 1px solid #d5d9d9 !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #0f1111 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    transform: none !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }
  .filter-tag.active {
    background: #CC0000 !important;
    border-color: #CC0000 !important;
    color: #fff !important;
  }

  /* ─────────────────────────────────────────
     PRODUCT DETAIL PAGE (mobile)
  ───────────────────────────────────────── */
  .section { padding: 0 !important; }
  .section-inner { padding: 0 !important; }
  .breadcrumb { display: none !important; }

  .product-page {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Product image */
  .product-page-img {
    background: #fff !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: 1px solid #e7e7e7 !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .product-page-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 20px !important;
  }
  /* OEM badge */
  .product-page-img::after {
    content: 'OEM Quality';
    position: absolute;
    top: 12px; left: 12px;
    background: #CC0000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .5px;
    pointer-events: none;
  }

  /* Product info panel */
  .product-page-info {
    background: #fff !important;
    padding: 14px 14px 20px !important;
    border-bottom: 6px solid #F0F4F8 !important;
  }
  .product-sku {
    font-size: 11px !important;
    color: #565959 !important;
    margin-bottom: 6px !important;
  }
  .product-page-info h1 {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    color: #0f1111 !important;
    margin-bottom: 10px !important;
    font-family: 'Open Sans', sans-serif !important;
  }
  .product-page-info .amz-stars { margin-bottom: 10px; }
  .product-page-info .amz-stars svg { width: 14px; height: 14px; }
  .product-page-info .amz-stars span { font-size: 12px; }

  /* Price */
  .product-page-price {
    font-size: 26px !important;
    font-weight: 400 !important;
    color: #0f1111 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .product-page-price::before {
    content: 'Price: ';
    font-size: 13px;
    color: #565959;
    font-weight: 400;
  }
  .product-page-price-sub {
    font-size: 11px !important;
    color: #565959 !important;
    margin-bottom: 14px !important;
  }
  .amz-pdp-stock {
    font-size: 16px;
    color: #1A7A3C;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .amz-pdp-delivery {
    font-size: 13px;
    color: #0f1111;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .amz-pdp-delivery strong { font-weight: 700; }

  /* Buy buttons (PDP) */
  .btn-add-full {
    display: block !important;
    width: 100% !important;
    background: #CC0000 !important;
    color: #ffffff !important;
    border: 1px solid #AA0000 !important;
    border-radius: 24px !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
    cursor: pointer !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset !important;
    min-height: 48px !important;
    transition: background .1s !important;
  }
  .btn-add-full:active { background: #880000 !important; }

  .amz-buy-now-btn {
    display: block !important;
    width: 100% !important;
    background: #AA0000 !important;
    color: #ffffff !important;
    border: 1px solid #FF8F00 !important;
    border-radius: 24px !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset !important;
    margin-bottom: 14px !important;
    text-decoration: none !important;
    min-height: 48px !important;
    transition: background .1s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .amz-buy-now-btn:active { background: #AA0000 !important; }

  /* Trust strip */
  .amz-trust-row {
    display: flex;
    gap: 8px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 12px 0;
    margin: 14px 0;
  }
  .amz-trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: #565959;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
  }
  .amz-trust-item svg { width: 22px; height: 22px; fill: #003087; }

  /* Description & specs */
  .product-page-desc {
    font-size: 14px !important;
    color: #0f1111 !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
  }
  .product-page-desc p { margin-bottom: 8px !important; }
  .product-meta-table {
    width: 100% !important;
    font-size: 13px !important;
    border-collapse: collapse !important;
  }
  .product-meta-table tr:nth-child(even) { background: #f7f7f7 !important; }
  .product-meta-table td {
    padding: 9px 10px !important;
    border-bottom: 1px solid #e7e7e7 !important;
    color: #0f1111 !important;
  }
  .product-meta-table td:first-child {
    font-weight: 700 !important;
    width: 40% !important;
    color: #565959 !important;
  }

  /* ─────────────────────────────────────────
     HOMEPAGE (mobile)
  ───────────────────────────────────────── */
  .hero { padding: 0 !important; }
  .hero-inner {
    display: block !important;
    padding: 18px 14px 20px !important;
    background: linear-gradient(135deg, #002868 0%, #1f2d3d 100%);
    color: #fff;
  }
  .hero h1 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
    color: #fff !important;
  }
  .hero p {
    font-size: 14px !important;
    margin-bottom: 16px !important;
    color: #ccc !important;
  }
  .hero-buttons { flex-direction: column !important; gap: 10px !important; }
  .btn-primary {
    padding: 13px 20px !important;
    font-size: 15px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    background: #CC0000 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    font-weight: 700 !important;
    min-height: 48px !important;
  }
  .btn-outline {
    padding: 13px 20px !important;
    font-size: 15px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.4) !important;
    border-radius: 24px !important;
    font-weight: 600 !important;
    min-height: 48px !important;
  }
  .hero-visual { display: none !important; }

  /* Trust bar */
  .trust-bar {
    padding: 10px 0 !important;
  }
  .trust-items {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .trust-item {
    font-size: 10px !important;
    padding: 8px 10px !important;
    border-right: 1px solid rgba(255,255,255,.15) !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    text-align: center !important;
  }
  .trust-item:nth-child(even) { border-right: none !important; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none !important; }
  .trust-item svg { width: 18px; height: 18px; margin-bottom: 4px; }

  /* Section headers */
  .section-alt { padding: 16px 0 !important; }
  .section-title { margin-bottom: 12px !important; padding: 0 14px !important; }
  .section-title h2 { font-size: 17px !important; }

  /* Category grid */
  .category-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding: 0 8px 8px !important;
  }
  .cat-card-img { height: 90px !important; }
  .cat-card-body { padding: 10px 12px !important; }
  .cat-card-body h3 { font-size: 11px !important; font-weight: 700 !important; }
  .cat-card-body p { display: none !important; }

  /* About strip */
  .about-strip { padding: 24px 14px !important; }
  .about-inner { flex-direction: column !important; gap: 20px !important; }
  .about-stats { grid-template-columns: 1fr 1fr !important; }
  .astat-num { font-size: 24px !important; }

  /* Footer */
  footer { padding: 20px 14px 16px !important; }
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
    margin-bottom: 20px !important;
  }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-col h4 { font-size: 12px !important; margin-bottom: 10px !important; }
  .footer-col a { font-size: 12px !important; min-height: 32px !important; display: flex !important; align-items: center !important; }

  /* Pagination */
  .pagination {
    padding: 16px 14px !important;
    text-align: center !important;
    background: #fff !important;
    border-top: 1px solid #e7e7e7 !important;
  }
  .pagination a, .pagination span {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 2px;
  }

  /* Qty selector on PDP */
  .qty-selector {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-bottom: 14px !important;
    border: 1px solid #d5d9d9 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    width: fit-content !important;
  }
  .qty-btn {
    background: #F0F4F8 !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0f1111 !important;
  }
  .qty-btn:active { background: #d5d9d9 !important; }
  .qty-input {
    width: 56px !important;
    border: none !important;
    border-left: 1px solid #d5d9d9 !important;
    border-right: 1px solid #d5d9d9 !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    outline: none !important;
    height: 44px !important;
    background: #fff !important;
  }

} /* end @media (max-width: 768px) */

/* ─────────────────────────────────────────
   HIDE MOBILE ELEMENTS ON DESKTOP
───────────────────────────────────────── */
.amz-header,
.amz-bottom-nav,
.amz-cat-strip,
.amz-delivery-bar { display: none; }

/* ── GREEN DOT ACCENTS ─────────────────────────────────── */

/* Green dot before in-stock labels */
.amz-pdp-stock::before,
.amz-instock::before {
  content: '●';
  color: var(--pat-dot);
  margin-right: 5px;
  font-size: .8em;
}

/* Green dot separator between trust-bar items */
.trust-item + .trust-item::before {
  content: '●';
  color: var(--pat-dot);
  font-size: 8px;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Green dot bullet on mega-dropdown list items */
.mega-simple li a::before {
  content: '● ';
  color: var(--pat-dot);
  font-size: 8px;
  vertical-align: middle;
}

/* Green dot on footer links hover */
.footer-col a:hover::before {
  content: '● ';
  color: var(--pat-dot);
  font-size: 8px;
}

/* Green dot active indicator on bottom nav */
.amz-nav-item.active::after {
  content: '●';
  color: var(--pat-dot);
  font-size: 6px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Green dot on speed pill active */
.speed-cat-pill.active::before {
  content: '● ';
  font-size: 9px;
  color: rgba(255,255,255,.85);
}

/* Green dot before section titles */
.section-title h2::before {
  content: '●  ';
  color: var(--pat-dot);
  font-size: 12px;
  vertical-align: middle;
}

/* Desktop header — blue gradient */
header {
  background: linear-gradient(180deg, #002868 0%, #003087 100%) !important;
}
header .header-inner { background: transparent !important; }

/* Nav bar blue */
.mega-bar {
  background: #003087 !important;
  border-top: 1px solid rgba(255,255,255,.15) !important;
}
.mega-trigger { color: #ffffff !important; }
.mega-trigger:hover { color: #ffcccc !important; background: rgba(204,0,0,.2) !important; }

/* Logo text white on blue */
.brand-name, .logo-text, .site-logo { color: #ffffff !important; }

/* Search bar — white bg with red border and blue category dropdown */
.search-bar { background: #003087 !important; padding: 8px 16px !important; }
.search-input-wrap { border: 3px solid #CC0000 !important; border-radius: 6px !important; }
.search-cat-select { background: #CC0000 !important; color: #fff !important; border-right: none !important; }
.search-btn { background: #CC0000 !important; }

/* Top bar accent */
.topbar { background: #002868 !important; color: #cce0ff !important; }
.lang-bar { background: #001A4D !important; }

/* Cart badge — red */
.cart-count { background: #CC0000 !important; color: #fff !important; }

/* Product price — blue */
.product-page-price { color: #002868 !important; }

/* Buy box border — patriot colors */
.amz-buy-box {
  border: 2px solid #003087 !important;
  border-top: 4px solid #CC0000 !important;
}

/* Category cards — blue header bar */
.cat-card-img { border-bottom: 3px solid #CC0000 !important; }

/* Trust bar — red background */
.trust-bar { background: #CC0000 !important; }
.trust-item { color: #ffffff !important; }
.trust-item svg { fill: #ffffff !important; stroke: #ffffff !important; }

/* Footer — navy */
footer { background: #002868 !important; }
.footer-top-link { background: #001A4D !important; }

/* Back to top link */
.footer-top-link a { color: #ffffff !important; }
.footer-top-link a:hover { color: #CC0000 !important; }

/* Mobile header — navy */
@media (max-width: 768px) {
  .amz-header { background: #002868 !important; }
  .amz-bottom-nav { background: #002868 !important; border-top-color: #001550 !important; }
  .amz-search-btn { background: #CC0000 !important; }
  .amz-search-wrap { border-color: #CC0000 !important; }
  .amz-cart-badge { background: #CC0000 !important; color: #fff !important; }
  .amz-nav-badge { background: #CC0000 !important; color: #fff !important; }
  .amz-stars svg { fill: #CC0000 !important; }

  /* Green dot on delivery bar */
  .amz-delivery-bar strong { color: #1A7A3C !important; }
  .amz-delivery-bar svg { fill: #1A7A3C !important; }

  /* Red add to cart — white text */
  .btn-add-full { background: #CC0000 !important; color: #ffffff !important; border-color: #AA0000 !important; }
  .amz-buy-now-btn { background: #AA0000 !important; color: #ffffff !important; border-color: #880000 !important; }
  .btn-add, .btn-buy-now { background: #CC0000 !important; color: #ffffff !important; border-color: #AA0000 !important; }

  /* Green in-stock */
  .amz-pdp-stock { color: #1A7A3C !important; }

  /* speed pills */
  .speed-cat-pill.active { background: #CC0000 !important; border-color: #CC0000 !important; }
  .speed-cat-pill:hover { border-color: #002868 !important; color: #002868 !important; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE PATCH v2 — ORDER, FLOW & SEARCH
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── FORCE COLLECTION HEADER VISIBLE ── */
  .collection-header {
    display: block !important;
    background: #fff !important;
    padding: 12px 14px 10px !important;
    border-bottom: 1px solid #e7e7e7 !important;
  }

  /* ── SPEED CATEGORY STRIP — explicit mobile horizontal scroll ── */
  .speed-cat-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    background: #fff !important;
    border-bottom: 1px solid #e7e7e7 !important;
  }
  .speed-cat-strip::-webkit-scrollbar { display: none; }
  .speed-cat-pill {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 7px 16px !important;
    border-radius: 20px !important;
    border: 2px solid #d5d9d9 !important;
    background: #F0F4F8 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #0f1111 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    min-height: 36px !important;
  }
  .speed-cat-pill.active {
    background: #CC0000 !important;
    border-color: #CC0000 !important;
    color: #fff !important;
  }

  /* ── PRODUCT PAGE — BUY BOX BEFORE DESCRIPTION ── */
  .product-page {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .product-page-img  { order: 1 !important; }
  .amz-buy-box       { order: 2 !important; }
  .product-page-info { order: 3 !important; }

  .amz-buy-box {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    border: none !important;
    border-top: 1px solid #e7e7e7 !important;
    border-bottom: 6px solid #F0F4F8 !important;
    background: #fff !important;
    padding: 14px 14px 20px !important;
    box-shadow: none !important;
  }
  .amz-buy-box-price {
    font-size: 26px !important;
    font-weight: 400 !important;
    color: #0f1111 !important;
    margin-bottom: 4px !important;
  }
  .amz-buy-box-mxn {
    font-size: 12px !important;
    color: #565959 !important;
    margin-bottom: 12px !important;
  }
  .amz-buy-box-delivery {
    font-size: 13px !important;
    color: #0f1111 !important;
    line-height: 1.6 !important;
    background: #f7f7f7 !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    margin-bottom: 14px !important;
  }
  .amz-buy-box-secure {
    font-size: 12px !important;
    color: #565959 !important;
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  .amz-buy-box-meta {
    width: 100% !important;
    font-size: 12px !important;
    margin-top: 12px !important;
    border-collapse: collapse !important;
  }
  .amz-buy-box-meta td {
    padding: 6px 8px !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  .amz-buy-box-meta td:first-child {
    color: #565959 !important;
    width: 35% !important;
  }

  /* Fix double dollar sign — money filter already includes $ */
  .product-price::before { content: none !important; }

  /* ── FEATURED AT PRODUCTS ── */
  .featured-at { padding: 0 !important; }
  .featured-at .section-inner { padding: 0 !important; }
  .featured-at .section-header {
    padding: 14px 14px 10px !important;
    background: #fff !important;
    border-bottom: 1px solid #e7e7e7 !important;
    margin: 0 !important;
  }
  .featured-at .section-header h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1111 !important;
  }
  .featured-at .section-header p {
    font-size: 12px !important;
    color: #565959 !important;
    margin-top: 4px !important;
  }
  .featured-at .section-cta {
    padding: 12px 14px !important;
    background: #fff !important;
    border-top: 1px solid #e7e7e7 !important;
    text-align: center !important;
  }
  .product-type {
    font-size: 10px !important;
    color: #CC0000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
    margin-bottom: 3px !important;
    display: block !important;
  }
  .product-info { padding: 8px !important; }
  .product-info h3 {
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #0f1111 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .product-info .product-price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f1111 !important;
    margin-bottom: 6px !important;
  }
  .product-info .btn-buy {
    width: 100% !important;
    background: #CC0000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 7px 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    min-height: 32px !important;
    display: block !important;
  }

  /* ── SEARCH RESULTS PAGE ── */
  .search-page-header {
    background: #fff !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid #e7e7e7 !important;
  }
  .search-page-header h1 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f1111 !important;
  }
  .search-page-header p {
    font-size: 13px !important;
    color: #565959 !important;
    margin-top: 4px !important;
  }
  .search-results-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding: 6px !important;
    background: #F0F4F8 !important;
  }
  .search-no-results {
    text-align: center !important;
    padding: 40px 20px !important;
    background: #fff !important;
    color: #565959 !important;
    font-size: 14px !important;
  }

  /* Hero compact */
  .hero-inner { padding: 16px 14px 18px !important; }
  .hero-badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
    background: rgba(255,255,255,.15) !important;
    border-radius: 20px !important;
    color: #fff !important;
  }
}
