/* ═══════════════════════════════════════════
   BANSHEE BIKES USA — GLOBAL STYLES
   Design system mirrored from Texas Truck LLC
   Navy + White + Red · Barlow Condensed / Barlow
═══════════════════════════════════════════ */
:root {
  --navy: #0d1f5c;
  --navy-dark: #091848;
  --navy-mid: #122268;
  --red: #cc2200;
  --red-h: #b01e00;
  --white: #fff;
  --off: #f5f6fa;
  --border: #dde0ea;
  --text: #1a1d2e;
  --mid: #3d4160;
  --light: #6b7090;
  --green: #1a7a30;
  --gold: #e8a000;
  --shadow: 0 4px 20px rgba(13,31,92,.10);
  --shadow-lg: 0 12px 40px rgba(13,31,92,.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.bc { font-family: 'Barlow Condensed', sans-serif; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 5px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .3px; border: 2px solid transparent; transition: all .2s; cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-h); border-color: var(--red-h); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(204,34,0,.3); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }
.btn-lg { padding: 15px 32px; font-size: 17px; }
.btn-full { width: 100%; }

/* ── TOPBAR ── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 7px 4%; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; }
.topbar a { color: #fff; transition: opacity .2s; }
.topbar a:hover { opacity: .75; }
.topbar-phones { display: flex; gap: 16px; align-items: center; }
.topbar-phone { color: #fff !important; font-weight: 700; font-size: 12.5px; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; background: var(--navy-dark); border-bottom: 2px solid var(--red); padding: 9px 0; }
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .3px; }
.ticker-item a { color: #ff9966; text-decoration: underline; cursor: pointer; }
.ticker-sep { color: var(--red); font-size: 18px; margin: 0 8px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
.nav-wrap { background: var(--navy); position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 16px rgba(0,0,0,.25); }
.nav-top { padding: 0 4%; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 46px; height: 46px; border-radius: 7px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 30px; color: #fff; flex-shrink: 0; }
.nav-logo-text { color: #fff; }
.nav-logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 900; letter-spacing: .8px; display: block; line-height: 1.05; }
.nav-logo-name em { color: var(--red); font-style: normal; }
.nav-logo-sub { font-size: 9px; opacity: .55; letter-spacing: 2px; text-transform: uppercase; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-call { background: var(--red); color: #fff; padding: 9px 18px; border-radius: 5px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; transition: all .2s; }
.nav-call:hover { background: var(--red-h); }
.nav-cart { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); color: #fff; padding: 8px 14px; border-radius: 5px; display: flex; align-items: center; gap: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; position: relative; transition: all .2s; }
.nav-cart:hover { background: rgba(255,255,255,.18); }
.cart-badge { background: var(--red); color: #fff; font-size: 10px; font-weight: 900; padding: 1px 6px; border-radius: 10px; display: none; }
.cart-badge.show { display: inline-block; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ── SEARCH BAR ── */
.search-bar { background: rgba(255,255,255,.06); border-top: 1px solid rgba(255,255,255,.06); padding: 8px 4%; }
.search-wrap { position: relative; }
.search-inner { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }
.search-input { flex: 1; padding: 9px 16px; border: none; border-radius: 6px 0 0 6px; font-family: 'Barlow', sans-serif; font-size: 14px; background: #fff; color: var(--text); outline: none; }
.search-btn { background: var(--red); color: #fff; border: none; padding: 9px 18px; border-radius: 0 6px 6px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; }
.search-btn:hover { background: var(--red-h); }

/* ── NAV LINKS ── */
.nav-links { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); overflow: visible; }
.nav-links ul { display: flex; list-style: none; padding: 0 4%; height: 44px; align-items: stretch; overflow: visible; }
.nav-links li { position: relative; display: flex; align-items: stretch; }
.nav-links li > a, .nav-links li > span { display: flex; align-items: center; gap: 4px; padding: 0 16px; color: rgba(255,255,255,.82); font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .3px; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: all .15s; user-select: none; }
.nav-links li > a:hover, .nav-links li > span:hover { color: #fff; border-bottom-color: var(--red); background: rgba(255,255,255,.04); }
.nav-arr { font-size: 9px; opacity: .6; transition: transform .2s; display: inline-block; }
.nav-dd { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-top: 3px solid var(--red); border-radius: 0 0 8px 8px; box-shadow: var(--shadow-lg); min-width: 210px; z-index: 600; padding: 6px 0; }
@media(min-width: 901px) {
  .nav-links li:hover .nav-dd { display: block; animation: ddIn .15s ease; }
  .nav-links li:hover > span { color: #fff; border-bottom-color: var(--red); background: rgba(255,255,255,.04); }
  .nav-links li:hover .nav-arr { transform: rotate(180deg); }
}
@keyframes ddIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dd a { display: flex; align-items: center; gap: 9px; padding: 10px 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--mid); border-left: 3px solid transparent; transition: all .13s; }
.nav-dd a:hover { color: var(--navy); background: var(--off); border-left-color: var(--red); }

/* ── MOBILE MENU ── */
.mob-menu { display: none; position: fixed; inset: 0; z-index: 900; background: var(--navy); overflow-y: auto; padding: 20px; }
.mob-menu.open { display: block; }
.mob-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mob-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: #fff; }
.mob-logo em { color: var(--red); font-style: normal; }
.mob-close { background: none; border: none; color: #fff; font-size: 30px; line-height: 1; }
.mob-item { border-bottom: 1px solid rgba(255,255,255,.09); }
.mob-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; cursor: pointer; letter-spacing: .3px; }
.mob-arr { font-size: 13px; opacity: .6; transition: transform .25s; flex-shrink: 0; }
.mob-item.open .mob-arr { transform: rotate(180deg); opacity: 1; }
.mob-sub { display: none; padding: 4px 0 14px 0; }
.mob-item.open .mob-sub { display: block; }
.mob-sub a { display: flex; align-items: center; gap: 8px; padding: 11px 12px; color: rgba(255,255,255,.75); font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; border-radius: 6px; transition: all .15s; margin-bottom: 2px; }
.mob-sub a:hover { color: #fff; background: rgba(255,255,255,.08); }
.mob-sub-icon { font-size: 14px; color: var(--red); font-weight: 900; }
.mob-plain a { display: block; padding: 15px 0; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.09); }

/* ── HERO ── */
.hero { position: relative; background: var(--navy-dark); min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
.hero-pattern { position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0); background-size: 28px 28px; }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,21,48,.97) 0%, rgba(10,31,68,.9) 50%, rgba(15,40,90,.72) 100%); }
.hero-content { position: relative; z-index: 2; padding: 64px 5%; max-width: 680px; }
.hero-eyebrow { display: inline-block; background: rgba(204,34,0,.15); border: 1px solid rgba(204,34,0,.4); color: #ff7755; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 3px; margin-bottom: 20px; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px, 7vw, 76px); font-weight: 900; line-height: .98; color: #fff; letter-spacing: .5px; margin-bottom: 16px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.hero-sub strong { color: #fff; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 18px; }
.hck { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.58); font-weight: 600; }
.hck-dot { color: #3ddd6a; font-size: 16px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 0; }
.trust-strip-inner { display: flex; max-width: 1200px; margin: 0 auto; }
.trust-cell { flex: 1; padding: 18px 12px; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.1); }
.trust-cell:last-child { border-right: none; }
.trust-cell-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; letter-spacing: .5px; }
.trust-cell-sub { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 56px 4%; max-width: 1280px; margin: 0 auto; }
.section-alt { background: var(--off); max-width: 100%; }
.section-alt > .section-inner { max-width: 1280px; margin: 0 auto; }
.sec-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--border); flex-wrap: wrap; gap: 12px; }
.sec-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 5px; }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--navy); letter-spacing: .3px; }
.sec-title span { color: var(--red); }

/* ── SHOP BY BRAND (4 cards) ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; display: block; background: var(--navy-dark); }
.cat-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark)); }
.cat-card-ph span { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: rgba(255,255,255,.25); letter-spacing: 1px; }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(7,21,48,.9)); display: flex; align-items: flex-end; padding: 18px; }
.cat-label-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; letter-spacing: .5px; color: #fff; }
.cat-label-sub { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ── PRODUCT GRID ── */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pcard { background: #fff; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: all .22s; cursor: pointer; }
.pcard:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pcard-img { aspect-ratio: 4/3; overflow: hidden; background: var(--off); position: relative; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #1a2d6e, #091848); display: flex; align-items: center; justify-content: center; }
.pcard-img-ph span { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: rgba(255,255,255,.3); text-align: center; padding: 0 14px; }
.pbadge { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; letter-spacing: .3px; font-family: 'Barlow Condensed', sans-serif; }
.pbadge.featured { background: var(--gold); color: var(--navy-dark); }
.pcard-info { padding: 13px 14px 15px; flex: 1; display: flex; flex-direction: column; }
.pcard-brand { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--light); margin-bottom: 4px; }
.pcard-name { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--text); flex: 1; margin-bottom: 10px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pcard-price { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--red); }
.pcard-stock { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; }
.pcard-add { display: block; width: 100%; text-align: center; background: var(--navy); color: #fff; padding: 9px; border-radius: 5px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; border: none; transition: background .2s; }
.pcard-add:hover { background: var(--red); }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why-copy h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); line-height: 1.05; margin-bottom: 16px; }
.why-copy h2 span { color: var(--red); }
.why-copy p { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px; background: rgba(13,31,92,.07); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 24px; height: 24px; }
.why-item-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.why-item-text p { font-size: 13px; color: var(--light); line-height: 1.55; }

/* ── QUICK LINKS ── */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card { background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 22px 18px; display: flex; flex-direction: column; gap: 6px; transition: all .2s; cursor: pointer; }
.quick-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.quick-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); }
.quick-card p { font-size: 12px; color: var(--light); line-height: 1.5; }
.quick-card-arrow { margin-top: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); }

/* ── REVIEWS CAROUSEL ── */
.reviews-section { background: var(--off); padding: 56px 4%; }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-rating { display: flex; align-items: center; gap: 10px; }
.reviews-rating-num { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--navy); }
.reviews-rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.reviews-rating-count { font-size: 12px; color: var(--light); }
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 18px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-card { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 24px; flex: 0 0 calc((100% - 36px) / 3); display: flex; flex-direction: column; }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--mid); line-height: 1.75; font-style: italic; margin-bottom: 16px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 16px; flex-shrink: 0; }
.review-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }
.review-loc { font-size: 11px; color: var(--light); }
.review-meta { font-size: 10px; color: var(--light); margin-top: 2px; }
.review-product { display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.carousel-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--navy); background: #fff; color: var(--navy); font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.carousel-btn:hover { background: var(--navy); color: #fff; }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none; transition: all .2s; cursor: pointer; }
.carousel-dot.active { background: var(--red); width: 26px; border-radius: 5px; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.65); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 52px 4% 36px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark { width: 42px; height: 42px; border-radius: 7px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 27px; color: #fff; }
.footer-brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 900; color: #fff; line-height: 1.05; }
.footer-brand-name em { color: var(--red); font-style: normal; }
.footer-tagline { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; padding: 5px 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-contact-item { font-size: 13px; margin-bottom: 9px; line-height: 1.5; }
.footer-contact-item strong { color: #fff; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; }
.footer-pay { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.footer-pay span { background: rgba(255,255,255,.08); border-radius: 4px; padding: 4px 9px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 4%; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ── FLOATING CALL BUTTON (mobile) ── */
.float-call { display: none; position: fixed; bottom: 20px; right: 16px; z-index: 1000; width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.3); text-decoration: none; transition: transform .2s; }
@keyframes callPulse { 0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(26,122,48,.4); } 70% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 14px rgba(26,122,48,0); } }
.float-call:hover { transform: scale(1.08); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-card { flex: 0 0 calc((100% - 18px) / 2); }
}
@media (max-width: 768px) {
  .topbar { font-size: 11px; }
  .topbar-phones { gap: 10px; }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .hero-content { padding: 48px 6%; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-cell { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .review-card { flex: 0 0 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .float-call { display: flex; }
  .sec-hdr { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .sec-title { font-size: 24px; }
}

/* ═══════════════════════════════════════════
   BUILD A — SPA PAGES, CART, CHECKOUT, PRODUCT
═══════════════════════════════════════════ */

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }
.page-wrap { max-width: 960px; margin: 0 auto; padding: 40px 4% 64px; }
.page-h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); margin-bottom: 22px; letter-spacing: .3px; }

/* ── CATEGORY PAGE HEADER ── */
.catpage-hdr { background: var(--navy); padding: 40px 4%; text-align: center; }
.catpage-hdr h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: #fff; letter-spacing: .5px; }
.catpage-hdr p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 6px; }

/* ── CONTENT BOX (about/shipping/returns) ── */
.content-box { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 28px 30px; }
.content-box p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.content-box p:last-child { margin-bottom: 0; }
.content-box strong { color: var(--navy); }
.cta-box { background: var(--navy); border-radius: 10px; padding: 30px; text-align: center; margin-top: 24px; }
.cta-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 18px; }

/* ── FORM BOX (contact) ── */
.form-box { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 28px 30px; margin-top: 22px; }
.form-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.inq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.inq-field { display: flex; flex-direction: column; }
.inq-field.full { grid-column: 1 / -1; }
.inq-field label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.inq-field input, .inq-field select, .inq-field textarea {
  padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color .15s; background: #fff;
}
.inq-field textarea { min-height: 110px; resize: vertical; }
.inq-field input:focus, .inq-field select:focus, .inq-field textarea:focus { border-color: var(--navy); }

/* ── FIELD VALIDATION ── */
.field-error { color: var(--red); font-size: 12px; font-weight: 600; margin-top: 4px; min-height: 14px; display: block; }
.input-error { border-color: var(--red) !important; background: #fff5f3 !important; }
.shake { animation: shake .4s ease; }
@keyframes shake { 0%,100%{transform:translateX(0);} 20%,60%{transform:translateX(-7px);} 40%,80%{transform:translateX(7px);} }

/* ── PRODUCT DETAIL ── */
.pd-wrap { max-width: 1240px; margin: 0 auto; padding: 28px 4% 64px; }
.pd-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--light); margin-bottom: 22px; flex-wrap: wrap; }
.pd-breadcrumb a { color: var(--mid); cursor: pointer; font-weight: 600; }
.pd-breadcrumb a:hover { color: var(--red); }
.pd-breadcrumb span { color: var(--border); }
.pd-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; margin-bottom: 40px; }

.pd-main-wrap { position: relative; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--off); aspect-ratio: 4/3; }
.pd-main-img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.pd-main-ph { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1a2d6e,#091848); }
.pd-main-ph span { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: rgba(255,255,255,.3); text-align: center; padding: 0 24px; }
.pd-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(13,31,92,.85); color: #fff; border: none; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.pd-nav:hover { background: var(--red); }
.pd-nav-prev { left: 12px; }
.pd-nav-next { right: 12px; }
.pd-counter { position: absolute; bottom: 12px; right: 12px; background: rgba(7,21,48,.85); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pd-thumb { width: 72px; height: 72px; object-fit: cover; border: 2px solid var(--border); border-radius: 6px; cursor: pointer; transition: border-color .15s; }
.pd-thumb.active { border-color: var(--red); }
.pd-thumb:hover { border-color: var(--navy); }

.pd-brand-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--light); margin-bottom: 6px; }
.pd-name { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 12px; }
.pd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.pd-price { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 900; color: var(--red); }
.pd-compare { font-size: 18px; color: var(--light); text-decoration: line-through; }
.pd-stock { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 4px; margin-bottom: 18px; }
.pd-stock.in { background: rgba(26,122,48,.12); color: var(--green); }
.pd-stock.out { background: rgba(204,34,0,.1); color: var(--red); }

.pd-buy-box { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.pd-qty-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.pd-qty-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; }
.pd-qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; background: #fff; }
.pd-qty button { width: 36px; height: 36px; border: none; background: #fff; font-size: 18px; font-weight: 700; color: var(--navy); cursor: pointer; }
.pd-qty button:hover { background: var(--off); }
.pd-qty span { width: 44px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; }
.pd-deposit-note { font-size: 12px; color: var(--light); line-height: 1.6; }
.pd-call-link { display: block; text-align: center; padding: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); border: 1.5px dashed var(--border); border-radius: 6px; transition: all .15s; }
.pd-call-link:hover { border-color: var(--red); color: var(--red); }

.pd-section { margin-bottom: 36px; }
.pd-section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.pd-overview { width: 100%; border-collapse: collapse; }
.pd-overview th, .pd-overview td { text-align: left; padding: 11px 14px; font-size: 13.5px; border: 1px solid var(--border); vertical-align: top; }
.pd-overview th { background: var(--navy); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; width: 200px; letter-spacing: .3px; }
.pd-overview td { color: var(--mid); background: #fff; }
.pd-overview tr:nth-child(even) td { background: var(--off); }
.pd-ov-na { color: var(--light); font-style: italic; }
.pd-desc { font-size: 14.5px; color: var(--mid); line-height: 1.8; }
.pd-desc p { margin-bottom: 12px; }
.pd-desc strong { color: var(--navy); }

/* ── CART DRAWER ── */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(7,21,48,.55); z-index: 800; }
.cart-overlay.show { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100%; background: #fff; z-index: 850; display: flex; flex-direction: column; box-shadow: -8px 0 30px rgba(0,0,0,.2); transition: right .3s cubic-bezier(.4,0,.2,1); }
.cart-drawer.open { right: 0; }
.cart-hdr { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1.5px solid var(--border); }
.cart-hdr h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 900; color: var(--navy); }
.cart-close-btn { background: none; border: none; font-size: 30px; line-height: 1; color: var(--light); cursor: pointer; }
.cart-close-btn:hover { color: var(--red); }
.cart-body { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cart-empty { text-align: center; color: var(--light); padding: 50px 16px; font-size: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 76px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--off); }
.cart-item-img-ph { background: linear-gradient(135deg,#1a2d6e,#091848); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.35; }
.cart-mode-tag { display: inline-block; background: var(--gold); color: var(--navy-dark); font-size: 9px; font-weight: 800; padding: 1px 6px; border-radius: 3px; vertical-align: middle; }
.cart-item-brand { font-size: 11px; color: var(--light); margin: 2px 0 4px; }
.cart-item-price { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 900; color: var(--red); margin-bottom: 6px; }
.cart-qty-wrap { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 5px; overflow: hidden; }
.cart-qty-btn { width: 28px; height: 28px; border: none; background: #fff; font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer; }
.cart-qty-btn:hover { background: var(--off); }
.cart-qty-num { width: 34px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14px; }
.cart-item-actions { display: flex; align-items: flex-start; }
.cart-item-rm { background: none; border: none; font-size: 22px; color: var(--light); cursor: pointer; line-height: 1; }
.cart-item-rm:hover { color: var(--red); }
.cart-foot { border-top: 1.5px solid var(--border); padding: 16px 20px; }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cart-subtotal-label { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); }
.cart-subtotal-amt { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: var(--red); }

/* ── CART PAGE ── */
.cart-page-items { display: flex; flex-direction: column; }
.cart-page-summary { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 22px; margin-top: 20px; }
.cart-page-summary h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.cart-sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--mid); padding: 6px 0; }
.cart-sum-row.muted { color: var(--light); }
.cart-sum-total { display: flex; justify-content: space-between; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); padding: 12px 0; margin: 6px 0 14px; border-top: 2px solid var(--border); }
.cart-page-summary .btn { margin-bottom: 8px; }

/* ── CHECKOUT ── */
.checkout-wrap { max-width: 1180px; margin: 0 auto; padding: 36px 4% 64px; }
.checkout-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 28px; align-items: start; }
.checkout-box { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 22px 24px; margin-bottom: 20px; }
.checkout-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.form-field input, .form-field select { padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color .15s; background: #fff; }
.form-field input:focus, .form-field select:focus { border-color: var(--navy); }
.checkout-note { font-size: 12px; color: var(--light); margin-top: 10px; line-height: 1.6; }

.ship-opts, .pay-opts { display: flex; flex-direction: column; gap: 10px; }
.ship-opt, .pay-opt { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 15px; cursor: pointer; transition: all .15s; }
.ship-opt:hover, .pay-opt:hover { border-color: var(--navy); }
.ship-opt.selected, .pay-opt.selected { border-color: var(--red); background: #fff7f5; }
.ship-opt input, .pay-opt input { width: 18px; height: 18px; accent-color: var(--red); flex-shrink: 0; }
.ship-opt-body, .pay-opt-body { flex: 1; }
.ship-opt-label, .pay-opt-label { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }
.ship-opt-desc, .pay-opt-desc { font-size: 12px; color: var(--light); margin-top: 2px; }
.ship-opt-price { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--red); }

.order-sidebar { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 22px; position: sticky; top: 120px; }
.order-sidebar h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.co-item { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--mid); padding: 7px 0; }
.co-item-name { flex: 1; }
.co-item-name em { color: var(--light); font-style: normal; font-size: 11px; }
.co-item-price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.order-divider { height: 1px; background: var(--border); margin: 10px 0; }
.order-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--mid); padding: 5px 0; }
.order-total { display: flex; justify-content: space-between; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: var(--navy); padding-top: 12px; margin-top: 6px; border-top: 2px solid var(--border); }
.order-total span:last-child { color: var(--red); }
.co-deposit-note { font-size: 11.5px; color: var(--light); margin-top: 12px; line-height: 1.6; padding-top: 10px; border-top: 1px dashed var(--border); }

/* ── CONFIRMATION ── */
.confirm-wrap { max-width: 560px; margin: 0 auto; padding: 56px 4% 80px; text-align: center; }
.confirm-icon { font-size: 56px; margin-bottom: 8px; }
.confirm-wrap h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); }
.confirm-wrap > p { color: var(--mid); font-size: 15px; margin: 10px 0 24px; line-height: 1.7; }
.confirm-box { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 22px; text-align: left; }
.confirm-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.confirm-row:last-child { border-bottom: none; }
.confirm-row span { color: var(--light); }
.confirm-row strong { color: var(--navy); }

/* ── TOAST ── */
.bb-toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--navy-dark); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 8px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all .3s; z-index: 1100; }
.bb-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE — BUILD A ── */
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 22px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
}
@media (max-width: 768px) {
  .inq-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pd-main-wrap { aspect-ratio: auto; height: 50vh; }
  .pd-main-img { object-fit: contain; }
  .pd-thumb { width: 60px; height: 60px; }
  .pd-thumbs { flex-wrap: nowrap; overflow-x: auto; }
  .pd-name { font-size: 24px; }
  .pd-price { font-size: 30px; }
  .pd-overview th { width: 130px; font-size: 12px; }
  .pd-overview td { font-size: 12.5px; }
  .page-h1 { font-size: 27px; }
  .page-wrap, .pd-wrap, .checkout-wrap { padding-left: 5%; padding-right: 5%; }
  .content-box, .form-box { padding: 20px 18px; }
}
@media (max-width: 480px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
}

/* ── NAV ACCOUNT LINK (Build C) ── */
.nav-account{background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.2);color:#fff;padding:8px 14px;border-radius:5px;font-family:'Barlow Condensed',sans-serif;font-size:14px;font-weight:700;transition:all .2s;white-space:nowrap;}
.nav-account:hover{background:rgba(255,255,255,.18);}
@media(max-width:768px){.nav-account{display:none;}}

/* ── SHIPPING PAGE IMAGE GALLERY (Build C2) ── */
.ship-gallery{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px;}
.ship-gallery img{width:100%;border-radius:8px;border:1.5px solid var(--border);object-fit:cover;aspect-ratio:4/3;}
@media(max-width:600px){.ship-gallery{grid-template-columns:1fr;}}

/* ── HERO BACKGROUND IMAGE + CENTERED CONTENT (Build C2) ── */
.hero.hero-centered{justify-content:center;text-align:center;}
.hero.hero-centered .hero-content{margin:0 auto;max-width:760px;}
.hero.hero-centered .hero-btns,.hero.hero-centered .hero-checks{justify-content:center;}
.hero-photo{position:absolute;inset:0;background-size:cover;background-position:center;}

/* ── RICH CONTENT (formatted page/description output) ── */
.rich-content h3,.rich-content h4{font-family:'Barlow Condensed',sans-serif;color:var(--navy);margin:16px 0 8px;}
.rich-content p{margin-bottom:12px;}
.rich-content ul,.rich-content ol{margin:0 0 12px 22px;}
.rich-content a{color:var(--red);text-decoration:underline;}
.rich-content strong{color:var(--navy);}

/* ── CAROUSELS WITH SIDE ARROWS (Build C3) ── */
.review-carousel, .photo-carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.review-carousel .carousel { flex: 1; min-width: 0; }
.photo-viewport { flex: 1; min-width: 0; overflow: hidden; }
.photo-track { display: flex; gap: 16px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.photo-slide { flex: 0 0 calc((100% - 32px) / 3); border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); background: var(--off); }
.photo-slide img { width: 100%; height: 260px; object-fit: cover; display: block; }
.photo-arrow { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--navy); background: #fff; color: var(--navy); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; line-height: 1; }
.photo-arrow:hover { background: var(--navy); color: #fff; }
.photo-arrow:active { transform: scale(.94); }
@media (max-width: 900px) {
  .photo-slide { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 600px) {
  .photo-slide { flex: 0 0 100%; }
  .photo-slide img { height: 220px; }
  .photo-arrow { width: 38px; height: 38px; font-size: 18px; }
  .review-carousel, .photo-carousel { gap: 5px; }
}

/* ── CART ICON (Build C3) ── */
.cart-icon { flex-shrink: 0; }
.nav-cart { gap: 6px; }
@media (max-width: 480px) {
  .nav-cart-label { display: none; }
}

/* ── LOGO IMAGE (Build C3) — when admin uploads a logo ── */
.nav-logo-img { height: 46px; width: auto; border-radius: 6px; display: none; }
.footer-logo-img { height: 42px; width: auto; border-radius: 6px; display: none; }
