/* ============================================================
   PeakPedal — styles.source.css  v1.0
   Design: Deep Navy (#0B1F3A) + Electric Teal (#00C9A7)
   Aesthetic risk: Electric teal accent — unique in eMTB retail
   Mobile-first: verified at 380px viewport
   ============================================================ */

/* ── Global overflow guard (non-negotiable) ── */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
@media (max-width: 600px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  [style*="display:grid"] { display: block !important; }
}

/* ── Design tokens ── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #163357;
  --navy-light: #1E4270;
  --teal:       #00C9A7;
  --teal-dark:  #00A889;
  --teal-glow:  rgba(0,201,167,.18);
  --white:      #FFFFFF;
  --bg:         #F4F7FB;
  --bg-alt:     #EBF0F7;
  --border:     #D6DCE9;
  --muted:      #6B7A99;
  --text:       #14213D;
  --text-light: #3D506B;
  --red:        #E5383B;
  --orange:     #F4820A;
  --r-sm:       6px;
  --r-md:       12px;
  --r-lg:       20px;
  --r-full:     999px;
  --shadow-sm:  0 1px 4px rgba(11,31,58,.08);
  --shadow-md:  0 4px 16px rgba(11,31,58,.12);
  --shadow-lg:  0 12px 40px rgba(11,31,58,.16);
  --t:          220ms cubic-bezier(.4,0,.2,1);
  --max-w:      1320px;
  --px:         clamp(16px, 4vw, 48px);
}

/* ── Base ── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; font-size: clamp(14px,.9vw + .5rem,16px); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif; line-height: 1.2; font-weight: 700; color: var(--text); margin: 0; }
h1 { font-size: clamp(1.9rem,4.5vw,3.2rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem,3vw,2.2rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.05rem,2vw,1.35rem); }
h4 { font-size: 1rem; font-weight: 600; }
p { max-width: 68ch; margin: 0; }
strong { font-weight: 700; }

/* ── Layout ── */
.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
.section { padding-block: clamp(48px,6vw,96px); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.eyebrow::before { content:''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.sh { margin-bottom: clamp(24px,4vw,48px); }
.sh h2 { margin-bottom: 8px; }
.sh p { color: var(--muted); font-size: .95rem; }
.sh.center { text-align: center; }
.sh.center p { margin-inline: auto; }
.sh-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(24px,4vw,48px); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans','Manrope',system-ui,sans-serif; font-size: .88rem; font-weight: 700; padding: 13px 26px; border-radius: var(--r-full); transition: var(--t); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 20px var(--teal-glow); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 9px 18px; font-size: .8rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ── Announcement Bar ── */
.ann-bar { background: var(--navy-mid); color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 600; text-align: center; padding: 9px 16px; position: relative; overflow: hidden; }
.ann-bar a { color: var(--teal); margin-left: 6px; }
.ann-slides { display: flex; }
.ann-slide { min-width: 100%; text-align: center; transition: opacity .4s; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 900; background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; gap: 16px; padding-block: 14px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; background: var(--teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-weight: 900; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.logo-text { font-family: 'Plus Jakarta Sans','Manrope',system-ui,sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); }
.logo-text span { color: var(--teal); }

/* Desktop Nav */
.main-nav { display: none; flex: 1; align-items: center; gap: 2px; }
@media(min-width:900px){ .main-nav { display: flex; } }
.nav-item { position: relative; }
.nav-a { display: flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.8); transition: var(--t); cursor: pointer; }
.nav-a:hover, .nav-a.active { color: var(--teal); }
.nav-caret { transition: transform var(--t); width: 12px; height: 12px; opacity: .6; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* Mega Menu */
.mega { display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); width: 700px; max-width: 95vw; background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 28px; z-index: 999; border: 1px solid var(--border); }
.nav-item:hover .mega { display: grid; }
.mega-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mega-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.mega-col a { display: block; padding: 6px 8px; border-radius: 6px; font-size: .84rem; color: var(--text-light); transition: var(--t); }
.mega-col a:hover { background: var(--bg); color: var(--navy); }
.mega-footer { margin-top: 20px; background: var(--navy); border-radius: var(--r-sm); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mega-footer p { font-size: .82rem; color: rgba(255,255,255,.75); }
.mega-footer strong { color: var(--teal); }

/* Header Actions */
.h-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.h-btn { display: flex; align-items: center; gap: 5px; padding: 8px 10px; border-radius: var(--r-sm); color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 600; transition: var(--t); }
.h-btn:hover { color: var(--teal); background: rgba(255,255,255,.06); }
.cart-btn { background: var(--teal); color: var(--navy); border-radius: var(--r-full); padding: 9px 18px; font-weight: 800; font-size: .82rem; }
.cart-btn:hover { background: var(--teal-dark); }
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; color: white; }
.hamburger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: var(--t); }
@media(min-width:900px){ .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav button { display: block; width: 100%; text-align: left; padding: 13px var(--px); color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav a:hover { color: var(--teal); }

/* ── Hero ── */
.hero { background: var(--navy); position: relative; overflow: hidden; min-height: clamp(480px,65vh,780px); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,58,.97) 0%, rgba(11,31,58,.72) 55%, rgba(11,31,58,.3) 100%); z-index: 1; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding-block: 64px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,201,167,.12); border: 1px solid rgba(0,201,167,.3); color: var(--teal); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub { font-size: clamp(.95rem,1.4vw,1.1rem); color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 50ch; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat strong { display: block; font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.hero-stat span { font-size: .78rem; color: rgba(255,255,255,.5); }

/* Hero slider */
.hero-slider { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-dots { display: flex; gap: 8px; margin-top: 24px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; transition: var(--t); cursor: pointer; }
.hero-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ── USP Bar ── */
.usp-bar { background: var(--teal); padding: 12px; }
.usp-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.usp-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: var(--navy); }

/* ── Category Cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--r-md); min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--navy); transition: var(--t); }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,.92) 0%, rgba(11,31,58,.2) 60%, transparent 100%); }
.cat-body { position: relative; z-index: 1; padding: 20px; }
.cat-count { font-size: .72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.cat-body h3 { color: var(--white); margin-bottom: 8px; }
.cat-body p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 14px; max-width: 100%; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--teal); transition: var(--t); }
.cat-card:hover .cat-link { gap: 10px; }

/* ── Product Cards ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
@media(max-width:640px){ .prod-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:400px){ .prod-grid { grid-template-columns: 1fr; } }
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.prod-img { position: relative; background: var(--bg); aspect-ratio: 4/3; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.badge { position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: var(--r-full); }
.badge-new { background: var(--teal); color: var(--navy); }
.badge-sale { background: var(--red); color: white; }
.badge-limited { background: var(--navy); color: var(--teal); }
.prod-body { padding: 15px 16px; flex: 1; display: flex; flex-direction: column; }
.prod-brand { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.prod-name { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-weight: 700; font-size: .92rem; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.prod-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.chip { font-size: .68rem; font-weight: 600; color: var(--muted); background: var(--bg-alt); padding: 3px 8px; border-radius: var(--r-full); }
.prod-price { margin-top: auto; }
.prod-price .from { font-size: .7rem; color: var(--muted); display: block; }
.prod-price strong { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.prod-price .was { font-size: .78rem; color: var(--muted); text-decoration: line-through; margin-left: 5px; }
.prod-foot { padding: 0 16px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fin-note { font-size: .7rem; color: var(--muted); }
.add-btn { display: inline-flex; align-items: center; gap: 5px; background: var(--navy); color: var(--white); font-size: .76rem; font-weight: 700; padding: 8px 14px; border-radius: var(--r-full); transition: var(--t); }
.add-btn:hover { background: var(--teal); color: var(--navy); }

/* ── Filter / Sort Bar ── */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; }
.f-btn { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: .78rem; font-weight: 700; padding: 8px 16px; border-radius: var(--r-full); border: 1.5px solid var(--border); color: var(--muted); background: var(--white); transition: var(--t); cursor: pointer; }
.f-btn:hover { border-color: var(--navy); color: var(--navy); }
.f-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Brand Grid ── */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
@media(max-width:640px){ .brand-grid { grid-template-columns: repeat(3,1fr); } }
.brand-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 16px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: var(--t); text-align: center; text-decoration: none; }
.brand-card:hover { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); transform: translateY(-2px); }
.brand-logo { height: 40px; display: flex; align-items: center; justify-content: center; }
.brand-logo img { max-height: 32px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: var(--t); }
.brand-card:hover .brand-logo img { filter: grayscale(0); opacity: 1; }
.brand-n { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: .76rem; font-weight: 700; color: var(--muted); }
.brand-c { font-size: .68rem; color: var(--border); }

/* ── Finance Strip ── */
.fin-strip { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border-radius: var(--r-lg); overflow: hidden; position: relative; padding: clamp(32px,5vw,56px) clamp(24px,4vw,64px); }
.fin-strip::after { content:''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: var(--teal-glow); pointer-events: none; }
.fin-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; position: relative; z-index: 1; }
@media(max-width:900px){ .fin-grid { grid-template-columns: 1fr; } }
.fin-strip h2 { color: var(--white); margin-bottom: 10px; }
.fin-strip p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 24px; max-width: 56ch; }
.fin-options { display: flex; flex-wrap: wrap; gap: 10px; }
.fin-opt { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-sm); padding: 14px 18px; text-align: center; min-width: 130px; }
.fin-opt strong { display: block; font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.fin-opt span { font-size: .75rem; color: rgba(255,255,255,.6); }
.fin-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── Blog Cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat { font-size: .68rem; font-weight: 700; color: var(--teal-dark); background: rgba(0,168,137,.1); padding: 3px 10px; border-radius: var(--r-full); }
.blog-date { font-size: .7rem; color: var(--muted); }
.blog-body h3 { font-size: .95rem; margin-bottom: 8px; line-height: 1.4; flex: 1; }
.blog-body p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.read-more { font-size: .8rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 4px; margin-top: auto; transition: var(--t); }
.blog-card:hover .read-more { color: var(--teal-dark); gap: 8px; }

/* ── Trust Grid ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.trust-item { text-align: center; padding: 24px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.trust-icon { font-size: 1.8rem; margin-bottom: 12px; display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; background: rgba(0,201,167,.1); border-radius: 50%; margin-inline: auto; }
.trust-item h4 { font-size: .88rem; margin-bottom: 5px; }
.trust-item p { font-size: .8rem; color: var(--muted); max-width: 100%; }

/* ── Cart Drawer ── */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: min(420px, 100vw); height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; transition: right .3s ease; box-shadow: var(--shadow-lg); }
.cart-drawer.open { right: 0; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); background: var(--navy); color: white; }
.cart-head h3 { color: white; font-size: 1rem; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; aria-label: "Close cart"; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 70px; height: 70px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--bg); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .84rem; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .88rem; color: var(--navy); font-weight: 800; }
.qty-wrap { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.qty-val { font-size: .84rem; font-weight: 700; width: 24px; text-align: center; }
.cart-remove { font-size: .72rem; color: var(--red); margin-left: auto; }
.cart-empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.cart-empty p { margin-top: 12px; font-size: .9rem; }
.cart-foot { padding: 16px 20px; border-top: 1px solid var(--border); background: var(--bg); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { font-size: .88rem; color: var(--muted); }
.cart-total strong { font-size: 1.2rem; font-family: 'Plus Jakarta Sans',system-ui,sans-serif; color: var(--navy); }
.cart-min-warn { font-size: .76rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; display: none; }
.free-ship { font-size: .76rem; color: var(--teal-dark); font-weight: 600; margin-bottom: 12px; }
.free-ship-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 12px; }
.free-ship-prog { height: 100%; background: var(--teal); border-radius: 2px; transition: width .3s; }

/* ── Breadcrumb ── */
.bc { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); padding-block: 14px; }
.bc a:hover { color: var(--navy); }
.bc .sep { color: var(--border); }
.bc .cur { color: var(--text); font-weight: 600; }

/* ── Category Hero ── */
.cat-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding-block: clamp(36px,5vw,64px); }
.cat-hero h1 { color: var(--white); margin-bottom: 10px; }
.cat-hero .sub { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 60ch; margin-bottom: 18px; }
.cat-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.cm { font-size: .8rem; color: rgba(255,255,255,.5); }
.cm strong { color: var(--teal); }

/* ── Shop Layout ── */
.shop-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
@media(max-width:900px){ .shop-wrap { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 80px; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; margin-bottom: 14px; }
.sb-h { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.f-check { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; font-size: .84rem; }
.f-check input { accent-color: var(--navy); width: 15px; height: 15px; }
.f-count { margin-left: auto; font-size: .72rem; color: var(--muted); }
.price-inputs { display: flex; gap: 8px; }
.price-inputs input { flex: 1; padding: 7px 10px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .84rem; width: 0; }
.sort-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.sort-row select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .84rem; color: var(--text); background: var(--white); }
.res-count { font-size: .84rem; color: var(--muted); font-weight: 600; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: .74rem; font-weight: 600; color: var(--muted); background: var(--bg-alt); padding: 4px 10px; border-radius: var(--r-full); transition: var(--t); }
.tag:hover { background: var(--navy); color: white; }

/* ── Product Page ── */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding-block: 40px; }
@media(max-width:900px){ .product-layout { grid-template-columns: 1fr; } }
.product-gallery { border-radius: var(--r-md); overflow: hidden; background: var(--bg-alt); aspect-ratio: 4/3; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-info .prod-brand { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.product-info h1 { color: var(--text); margin-bottom: 14px; }
.product-info .price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.price-block .price { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.spec-item { background: var(--bg); border-radius: var(--r-sm); padding: 10px 12px; }
.spec-item dt { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.spec-item dd { font-size: .9rem; font-weight: 700; color: var(--navy); }
.product-cta-area { display: flex; flex-direction: column; gap: 10px; }
.ctw-note { background: rgba(0,201,167,.08); border: 1px solid rgba(0,201,167,.2); border-radius: var(--r-sm); padding: 12px 14px; font-size: .82rem; color: var(--text-light); }
.ctw-note strong { color: var(--teal-dark); }

/* ── Forms ── */
.web-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:640px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9rem; color: var(--text); background: var(--white); transition: border-color var(--t); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }
.form-msg { padding: 12px 16px; border-radius: var(--r-sm); font-size: .85rem; font-weight: 600; display: none; }
.form-msg.success { background: rgba(0,201,167,.12); color: var(--teal-dark); border: 1px solid rgba(0,201,167,.3); }
.form-msg.error { background: rgba(229,56,59,.1); color: var(--red); border: 1px solid rgba(229,56,59,.3); }

/* ── Blog Post ── */
.post-hero { background: var(--navy); padding-block: clamp(36px,5vw,64px); }
.post-hero h1 { color: var(--white); margin-bottom: 12px; }
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.post-meta span { font-size: .78rem; color: rgba(255,255,255,.5); }
.post-body { max-width: 760px; margin-inline: auto; }
.post-body h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--navy); }
.post-body p { margin: 0 0 16px; color: var(--text-light); line-height: 1.75; }
.post-body ul, .post-body ol { margin: 0 0 16px 20px; }
.post-body li { margin-bottom: 6px; color: var(--text-light); line-height: 1.6; }
.post-body a { color: var(--navy); font-weight: 600; }
.post-body a:hover { color: var(--teal-dark); }
.post-body blockquote { border-left: 3px solid var(--teal); padding-left: 20px; margin: 24px 0; color: var(--muted); font-style: italic; }
.post-body img { border-radius: var(--r-md); margin: 24px 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; cursor: pointer; font-weight: 700; font-size: .9rem; background: var(--white); transition: var(--t); gap: 12px; }
.faq-q:hover { background: var(--bg); }
.faq-q.open { background: var(--navy); color: white; }
.faq-icon { font-size: 1.1rem; transition: transform var(--t); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 16px 18px; font-size: .88rem; color: var(--text-light); line-height: 1.7; border-top: 1px solid var(--border); background: var(--white); }
.faq-a.open { display: block; }
.faq-a a { color: var(--navy); font-weight: 600; }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 6px; padding-top: 40px; }
.pg { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: .84rem; font-weight: 700; border: 1.5px solid var(--border); color: var(--text); transition: var(--t); text-decoration: none; }
.pg:hover { border-color: var(--navy); color: var(--navy); }
.pg.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ── Thank You Pages ── */
.ty-hero { min-height: 80vh; display: flex; align-items: center; text-align: center; background: var(--navy); }
.ty-box { max-width: 540px; margin-inline: auto; padding: 48px 24px; }
.ty-icon { font-size: 4rem; margin-bottom: 24px; }
.ty-hero h1 { color: var(--white); margin-bottom: 14px; }
.ty-hero p { color: rgba(255,255,255,.75); margin-bottom: 28px; margin-inline: auto; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:900px){ .about-grid { grid-template-columns: 1fr; } }
.about-img { border-radius: var(--r-lg); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.milestones { display: flex; flex-direction: column; gap: 0; padding-left: 20px; border-left: 2px solid var(--border); }
.ms { position: relative; padding: 0 0 24px 24px; }
.ms::before { content:''; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; background: var(--teal); border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 2px var(--teal); }
.ms-year { font-size: .72rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .1em; }
.ms-text { font-size: .88rem; color: var(--text-light); margin-top: 3px; }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 32px; }
.diff-item { background: var(--bg); border-radius: var(--r-md); padding: 20px; }
.diff-item strong { display: block; margin-bottom: 6px; color: var(--navy); }
.diff-item p { font-size: .84rem; color: var(--muted); max-width: 100%; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-main { padding-top: 56px; padding-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 36px; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px){ .footer-grid { grid-template-columns: 1fr; } }
.f-brand { grid-column: 1; }
@media(max-width:900px){ .f-brand { grid-column: 1/-1; } }
.footer-logo { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-logo .logo-mark { width: 28px; height: 28px; font-size: .82rem; }
.f-brand p { font-size: .84rem; line-height: 1.7; max-width: 30ch; margin-bottom: 18px; }
.f-social { display: flex; gap: 8px; }
.soc-btn { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .76rem; font-weight: 700; transition: var(--t); }
.soc-btn:hover { background: var(--teal); color: var(--navy); }
.f-col h4 { font-family: 'Plus Jakarta Sans',system-ui,sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.f-col ul li { margin-bottom: 7px; }
.f-col ul a { font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--t); }
.f-col ul a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; font-size: .76rem; color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--teal); }
.f-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.f-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); padding: 4px 10px; font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.45); }

/* ── SEO text block ── */
.seo-block { background: var(--bg-alt); border-radius: var(--r-md); padding: 28px 32px; margin-top: 48px; }
.seo-block h2 { font-size: 1.1rem; margin-bottom: 12px; }
.seo-block p { font-size: .86rem; color: var(--text-light); line-height: 1.8; max-width: 100%; }
.seo-block p + p { margin-top: 10px; }
.seo-block a { color: var(--navy); font-weight: 600; }
.seo-block a:hover { color: var(--teal-dark); text-decoration: underline; }
.seo-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media(max-width:640px){ .seo-col-grid { grid-template-columns: 1fr; } }

/* ── Sub-nav strip ── */
.sub-strip { background: var(--white); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sub-strip-inner { display: flex; gap: 4px; padding: 10px var(--px); white-space: nowrap; min-width: max-content; }
.sub-link { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: var(--r-full); font-size: .78rem; font-weight: 700; color: var(--text-light); border: 1.5px solid var(--border); transition: var(--t); white-space: nowrap; }
.sub-link:hover { border-color: var(--navy); color: var(--navy); }
.sub-link.active { background: var(--navy); color: white; border-color: var(--navy); }
.sub-link.sale { background: rgba(229,56,59,.08); border-color: rgba(229,56,59,.2); color: var(--red); }

/* ── Promo Box (sidebar) ── */
.promo-box { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); border-radius: var(--r-md); padding: 18px; margin-bottom: 14px; }
.promo-box h4 { color: var(--teal); font-size: .88rem; margin-bottom: 6px; }
.promo-box p { font-size: .8rem; color: rgba(255,255,255,.75); margin-bottom: 12px; max-width: 100%; }

/* ── Reduced motion ── */
@media(prefers-reduced-motion:reduce){ *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
