/* ─────────────────────────────────────────────────────────
   North Furniture — Design System
   Theme: Dark Navy (#1a1a2e) + Gold (#c9a84c)
   ───────────────────────────────────────────────────────── */

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  --navy:        #1a1a2e;
  --navy-mid:    #16213e;
  --navy-light:  #0f3460;
  --gold:        #c9a84c;
  --gold-light:  #e0c068;
  --gold-dark:   #a88730;
  --white:       #ffffff;
  --off-white:   #f8f6f0;
  --gray-100:    #f4f4f6;
  --gray-200:    #e8e8ec;
  --gray-400:    #9a9ab0;
  --gray-600:    #6b6b85;
  --gray-800:    #2d2d42;
  --text:        #e8e8ec;
  --text-muted:  #9a9ab0;
  --red:         #e05252;
  --green:       #4caf7d;
  --orange:      #f0a050;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.3);
  --shadow:      0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.5);

  --transition:  all .2s ease;
  --header-h:    140px;  /* top-bar + main-header + nav */

  --container:   1280px;
  --gap:         1.5rem;
}

/* ── Light Theme Overrides ─────────────────────────────── */
[data-theme="light"] {
  --navy:        #f5f3ee;
  --navy-mid:    #ffffff;
  --navy-light:  #e8e4dc;
  --text:        #1a1a2e;
  --text-muted:  #5a5a72;
  --gray-800:    #ccc8c0;
  --gray-600:    #8a8a9a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --white:       #1a1a2e;
}
[data-theme="light"] body       { background: var(--navy); color: var(--text); }
[data-theme="light"] h1,[data-theme="light"] h2,[data-theme="light"] h3,
[data-theme="light"] h4,[data-theme="light"] h5,[data-theme="light"] h6 { color: var(--text); }
[data-theme="light"] .section-title { color: var(--text); }
[data-theme="light"] .product-card { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
[data-theme="light"] .product-card__name a { color: var(--text); }
[data-theme="light"] .product-card__price--regular,
[data-theme="light"] .product-card__sku { color: var(--text-muted); }
[data-theme="light"] .form-input,[data-theme="light"] .form-select,[data-theme="light"] .form-textarea {
  background: #fff; color: var(--text); border-color: var(--gray-800);
}
[data-theme="light"] .top-bar     { background: #e8e4dc; }
[data-theme="light"] .header-main { background: #fff; border-bottom: 1px solid var(--gray-800); }
[data-theme="light"] .nav-bar     { background: var(--navy-light); }
[data-theme="light"] .nav-link    { color: var(--text); }
[data-theme="light"] .nav-link:hover { color: var(--gold-dark); }
[data-theme="light"] .site-footer  { background: #e8e4dc; border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .footer-bottom p { color: var(--text-muted); }
[data-theme="light"] .footer-col__title { color: var(--text); }
[data-theme="light"] .footer-col p { color: var(--text-muted); }
[data-theme="light"] .footer-links a { color: var(--text-muted); }
[data-theme="light"] .footer-address a { color: var(--text-muted); }
[data-theme="light"] .footer-address p { color: var(--text-muted); }
[data-theme="light"] .footer-hours { color: var(--text-muted); }
[data-theme="light"] .cart-sidebar { background: #fff; }
[data-theme="light"] .search-dropdown { background: #fff; }
[data-theme="light"] .product-info__name { color: var(--text); }
[data-theme="light"] .filter-sidebar  { background: #fff; border-right: 1px solid var(--gray-800); }
[data-theme="light"] .listing-toolbar { background: #fff; }
[data-theme="light"] .checkout-summary { background: #fff; }
[data-theme="light"] .payment-option   { background: #f8f6f0; border-color: var(--gray-800); }
[data-theme="light"] .theme-toggle     { color: var(--text-muted); }

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); }

ul, ol { list-style: none; }

/* ── Utility ───────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.section { padding: 4rem 0; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.section-title { font-family: var(--font-display); color: var(--white); }
.section-subtitle { color: var(--text-muted); font-size: .95rem; margin-top: .4rem; }
.section-link { color: var(--gold); font-size: .9rem; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.5rem;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}

.btn--gold    { background: var(--gold);   color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); }

.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }

.btn--danger  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--danger:hover { background: #c83e3e; }

.btn--lg { padding: .85rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: .4rem 1rem; font-size: .82rem; }
.btn--xs { padding: .25rem .65rem; font-size: .75rem; }
.btn--full { width: 100%; }

/* ── Forms ─────────────────────────────────────────────── */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .65rem .9rem;
  background: var(--navy-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body); font-size: .9rem;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9ab0' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--text); }
.form-group--error .form-input,
.form-group--error .form-select,
.form-group--error .form-textarea { border-color: var(--red); }
.form-error { font-size: .8rem; color: var(--red); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .82rem; color: var(--text-muted); margin-bottom: .75rem; }
.form-actions { display: flex; gap: 1rem; padding-top: 1rem; }
.checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); }
.form-input--sm, .form-select--sm { padding: .4rem .7rem; font-size: .85rem; }

/* ── Flash Messages ────────────────────────────────────── */
.flash {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius); margin-bottom: 1.25rem;
  font-size: .9rem; font-weight: 500;
  position: relative;
}
.flash--success { background: rgba(76,175,125,.15); border: 1px solid var(--green); color: var(--green); }
.flash--error   { background: rgba(224,82,82,.15);  border: 1px solid var(--red);   color: var(--red); }
.flash--info    { background: rgba(201,168,76,.15); border: 1px solid var(--gold);  color: var(--gold); }
.flash__close { margin-left: auto; background: none; border: none; color: inherit; cursor: pointer; font-size: 1.25rem; line-height: 1; }

/* ── TOP BAR ───────────────────────────────────────────── */
.top-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .8rem;
  padding: .4rem 0;
}
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.top-bar__left { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .top-bar__left { display: none; }
  .top-bar__sep  { display: none; }
  .top-bar__inner { justify-content: flex-end; }
}
.top-bar__left a { color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.top-bar__left a:hover { color: var(--gold); }
.top-bar__sep { color: var(--border); font-size: .75rem; }
.top-bar__right { display: flex; align-items: center; gap: .6rem; }
.top-bar__follow { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); opacity: .7; }
.theme-toggle { background: none; border: none; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; padding: .15rem; transition: color .2s; }
.theme-toggle:hover { color: var(--gold); }
.theme-toggle__sun  { display: block; }
.theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun  { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }
.top-bar__social { color: var(--text-muted); display: flex; align-items: center; transition: color .2s; }
.top-bar__social:hover { color: var(--gold); }

/* ── HEADER MAIN ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.6); }

.header-main { padding: 1rem 0; }
.header-main__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; }

/* Logo */
.logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1; text-decoration: none; display: inline-flex; align-items: baseline; gap: .2rem; }
.logo__north { color: var(--white); }
.logo__furniture { color: var(--gold); }
.logo__img { height: 70px; width: auto; display: block; object-fit: contain; }
.logo__img--footer { height: 55px; }

/* Search */
.header-search { position: relative; width: 100%; max-width: 600px; margin: 0 auto; }
.search-form { display: flex; }
.search-form__input {
  flex: 1; padding: .65rem 1rem; background: var(--navy-mid);
  border: 1px solid var(--gray-800); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-size: .9rem;
}
.search-form__input:focus { outline: none; border-color: var(--gold); }
.search-form__btn {
  padding: .65rem 1.1rem; background: var(--gold); border: none; border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy); cursor: pointer; transition: background .2s;
}
.search-form__btn:hover { background: var(--gold-light); }

/* Search suggestions dropdown */
.search-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--navy-mid); border: 1px solid var(--gray-800);
  border-radius: var(--radius); z-index: 200; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-suggestions:not([hidden]) { display: block; }
.search-suggestion {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1rem; cursor: pointer; transition: background .15s;
  text-decoration: none; color: var(--text);
}
.search-suggestion:hover, .search-suggestion:focus { background: var(--navy-light); outline: none; }
.search-suggestion img, .suggestion__no-img { width: 44px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.suggestion__no-img { background: var(--gray-800); }
.suggestion__name { font-weight: 500; font-size: .88rem; flex: 1; }
.suggestion__price { font-size: .82rem; color: var(--gold); white-space: nowrap; margin-left: auto; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn { position: relative; color: var(--white); background: none; border: none; cursor: pointer; padding: .4rem; }
.cart-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--navy);
  font-size: .65rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transform-origin: center;
}

/* Badge bounce */
@keyframes badgeBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.55); }
  55%  { transform: scale(0.85); }
  75%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.badge--bounce { animation: badgeBounce .5s cubic-bezier(.36,.07,.19,.97) forwards; }

/* Button added state */
.btn--added {
  background: #27ae60 !important;
  border-color: #27ae60 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: background .2s, border-color .2s;
}

/* Fly-to-cart dot */
.cart-fly-dot {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 1;
}
@keyframes flyToCart {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.3); opacity: 0; }
}
.cart-fly-dot--go { animation: flyToCart .55s cubic-bezier(.25,.46,.45,.94) forwards; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── NAVIGATION ────────────────────────────────────────── */
.site-nav { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.06); }
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .35rem;
  padding: .75rem 1rem; color: var(--text);
  font-size: .88rem; font-weight: 500; white-space: nowrap;
  transition: color .15s;
}
.nav-link:hover, .nav-item--active .nav-link { color: var(--gold); }
.dropdown-arrow { transition: transform .2s; flex-shrink: 0; }
.nav-item--dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px; z-index: 100;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown-menu__inner { padding: .5rem 0; }
.dropdown-menu a {
  display: block; padding: .55rem 1.25rem;
  font-size: .85rem; color: var(--text-muted);
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,.08); }

/* ── HERO SLIDER ───────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; background: var(--navy-mid); width: 100%; height: clamp(280px, 37.5vw, 600px); }
.slider-track { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.slide--active { opacity: 1; }
.slide picture { display: block; width: 100%; height: 100%; }
.slide__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide video.slide__img { object-fit: cover; }
.slide__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 3rem;
  background: linear-gradient(to top, rgba(26,26,46,.95) 0%, transparent 100%);
  z-index: 2;
}
.slide__title { font-size: clamp(1.5rem, 4vw, 2.75rem); color: var(--white); margin-bottom: .5rem; }
.slide__subtitle { color: var(--text-muted); margin-bottom: 1.25rem; font-size: clamp(.9rem, 1.5vw, 1.1rem); }
.slide__btn { position: relative; z-index: 3; }
.slide__flyer-trigger { cursor: pointer; z-index: 1; position: relative; }

.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,26,46,.7); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 10;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-prev:hover, .slider-next:hover { background: var(--gold); color: var(--navy); }

.slider-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .2s; }
.slider-dot--active { background: var(--gold); width: 24px; }

/* Hero fallback */
.hero-default { padding: 5rem 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.hero-default__inner { text-align: center; }
.hero-default h1 { margin-bottom: 1rem; }
.hero-default p { font-size: 1.1rem; margin-bottom: 2rem; }

/* ── CATEGORIES GRID ────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.category-card { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; transition: transform .25s; aspect-ratio: 4/3; }
.category-card:hover { transform: translateY(-4px); }
.category-card__image { position: absolute; inset: 0; }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.category-card:hover .category-card__image img { transform: scale(1.05); }
.category-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.1) 60%); }
.category-card__placeholder { width: 100%; height: 100%; background: var(--gray-800); }
.category-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.category-card__label span { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.category-card__label small { color: var(--gold); font-size: .75rem; }

/* ── PRODUCTS GRID ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Product Card */
.product-card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.2); }
.product-card__image-wrap { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badges {
  position: absolute; top: .65rem; left: .65rem;
  display: flex; flex-direction: column; gap: .3rem; z-index: 1;
}
.product-card__badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700; padding: .18rem .5rem;
  border-radius: var(--radius-sm); line-height: 1.4;
  width: fit-content;
}
.product-card__badge--sale     { background: var(--red); color: #fff; }
.product-card__badge--special  { background: #2a7d4f; color: #fff; }
.product-card__badge--featured { background: var(--gold); color: var(--navy); }
/* Custom label — full-width strip at bottom of image */
.product-card__ribbon {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #6a1b9a, #9c27b0);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  text-align: center;
  padding: .3rem .5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 -2px 8px rgba(0,0,0,.25);
}
.product-card__body { padding: 1rem; }
.product-card__sku { font-size: .72rem; color: var(--text-muted); margin-bottom: .25rem; }
.product-card__name { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.product-card__name a { color: var(--white); text-decoration: none; }
.product-card__name a:hover { color: var(--gold); }
.product-card__price { margin-bottom: .75rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem; }
.product-card__price--sale { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.product-card__price--original { font-size: .85rem; text-decoration: line-through; color: var(--text-muted); }
.product-card__price--regular { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.product-card__price--call { font-size: 1rem; font-weight: 600; color: var(--gold); font-style: italic; }
.product-card__save { font-size: .72rem; background: rgba(224,82,82,.15); color: var(--red); padding: .15rem .4rem; border-radius: var(--radius-sm); }
.product-card__btn { width: 100%; font-size: .82rem; padding: .5rem; }

/* ── FEATURED & FINANCING ───────────────────────────────── */
.financing-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 2.5rem 0;
}
.financing-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.financing-banner h3 { color: var(--gold); font-family: var(--font-display); margin-bottom: .3rem; }
.financing-banner p { color: var(--text-muted); }

/* ── WHY US ─────────────────────────────────────────────── */
.why-us-section { background: var(--navy-mid); }
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-us-item { text-align: center; padding: 1.5rem 1rem; }
.why-us-item__icon { color: var(--gold); margin: 0 auto 1rem; width: fit-content; }
.why-us-item h4 { color: var(--white); margin-bottom: .5rem; font-size: 1rem; }
.why-us-item p { font-size: .85rem; }

/* ── BRANDS CAROUSEL ────────────────────────────────────── */
.brands-section { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); }
.brands-section__title { text-align: center; margin-bottom: 2rem; font-size: 1.25rem; }
.brands-carousel { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; }
.brand-item { opacity: .6; transition: opacity .2s; display: flex; align-items: center; justify-content: center; padding: .5rem; min-width: 100px; }
.brand-item:hover { opacity: 1; }
.brand-item img { max-width: 120px; max-height: 60px; object-fit: contain; filter: grayscale(1) brightness(1.4); transition: filter .2s; }
.brand-item:hover img { filter: none; }
.brand-item__name { font-weight: 600; color: var(--text-muted); font-size: .9rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: #0d0d1a; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2.5rem; }
.footer-logo { margin-bottom: 1rem; font-size: 1.5rem; }
.footer-col p { font-size: .88rem; color: var(--text-muted); margin-bottom: .75rem; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a { color: var(--text-muted); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-col__title { color: var(--white); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: var(--text-muted); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-address { font-style: normal; font-size: .85rem; }
.footer-address p { margin-bottom: .3rem; }
.footer-address a { color: var(--text-muted); }
.footer-address a:hover { color: var(--gold); }
.footer-all-locations { font-size: .82rem; color: var(--gold); }
.footer-hours { font-size: .82rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }

/* ── PAGE CONTAINER ─────────────────────────────────────── */
.page-container { padding: 2rem 0 4rem; }
@media (min-width: 769px) {
  .page-container { padding-left: 3rem; padding-right: 3rem; }
}
.page-title { margin-bottom: 1.5rem; }
.page-subtitle { color: var(--text-muted); margin-top: .4rem; margin-bottom: 2rem; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .82rem; }
.breadcrumb__item + .breadcrumb__item::before { content: '/'; color: var(--text-muted); }
.breadcrumb__item a { color: var(--text-muted); }
.breadcrumb__item a:hover { color: var(--gold); }
.breadcrumb__item span { color: var(--white); }

/* ── CATEGORY PAGE ──────────────────────────────────────── */
.category-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; min-height: 200px; }
.category-hero__img { width: 100%; height: 250px; object-fit: cover; }
.category-hero__content { position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(26,26,46,.9) 0%, transparent 60%); }
.category-hero__content h1 { margin-bottom: .4rem; }
.category-hero__content p { color: var(--text-muted); }
.subcategories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.subcat-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-mid); transition: transform .2s; text-decoration: none; }
.subcat-card:hover { transform: translateY(-3px); }
.subcat-card__image { aspect-ratio: 3/2; overflow: hidden; background: var(--gray-800); }
.subcat-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.subcat-card:hover .subcat-card__image img { transform: scale(1.05); }
.subcat-card__image--all { display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.subcat-card__placeholder { width: 100%; height: 100%; background: var(--gray-800); }
.subcat-card__label { padding: .75rem 1rem; font-size: .9rem; font-weight: 600; color: var(--white); }

/* ── PRODUCT LISTING ────────────────────────────────────── */
.listing-layout { display: flex; gap: 2rem; align-items: start; }
.listing-main { flex: 1; min-width: 0; }
.filter-sidebar {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 1.5rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
  width: 260px; min-width: 260px; flex-shrink: 0;
  transition: width .3s ease, min-width .3s ease, opacity .3s ease, padding .3s ease, border-color .3s ease;
  overflow: hidden;
}
.filter-sidebar--collapsed {
  width: 0; min-width: 0; padding-left: 0; padding-right: 0;
  opacity: 0; border-color: transparent; pointer-events: none;
}
.filter-sidebar__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.filter-sidebar__close { display: none; }
/* Filter toggle button chevron */
.filter-toggle__icon { transition: transform .3s; display: inline-block; margin-left: .35rem; }
.filter-toggle--active .filter-toggle__icon { transform: rotate(0deg); }
.filter-toggle__icon { transform: rotate(180deg); }

/* Sidebar collapse tab — visible on sidebar edge */
.filter-sidebar__collapse { display: none; }
/* Expand handle — shown when sidebar is collapsed */
.filter-expand-handle { display: none; }

@media (min-width: 769px) {
  .filter-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); overflow: visible; }
  .filter-sidebar--collapsed { overflow: hidden; }

  /* ‹ tab on the right edge of the sidebar */
  .filter-sidebar__collapse {
    display: flex; align-items: center; justify-content: center;
    position: absolute; right: -14px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 48px;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,.1); border-left: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer; color: var(--text-muted);
    transition: color .2s, background .2s;
    z-index: 2;
  }
  .filter-sidebar__collapse:hover { color: var(--gold); background: var(--navy-light); }

  /* › expand handle — hidden by default, shown when sidebar collapsed */
  .filter-expand-handle {
    display: none;
    align-items: center; justify-content: center;
    width: 28px; height: 48px; flex-shrink: 0;
    position: sticky; top: calc(var(--header-h) + 1rem);
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    cursor: pointer; color: var(--text-muted);
    transition: color .2s, background .2s;
    align-self: start;
  }
  .filter-expand-handle:hover { color: var(--gold); background: var(--navy-light); }

  /* Show expand handle only when sidebar is collapsed */
  .listing-layout--sidebar-collapsed .filter-expand-handle { display: flex; }
  .listing-layout--sidebar-collapsed .filter-sidebar { width: 0; min-width: 0; }
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group__title { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .75rem; font-family: var(--font-body); }
.filter-list { display: flex; flex-direction: column; gap: .25rem; }
.filter-list__link { font-size: .88rem; color: var(--text-muted); padding: .25rem .5rem; border-radius: var(--radius-sm); transition: color .15s; }
.filter-list__link:hover, .filter-list__link--active { color: var(--gold); background: rgba(201,168,76,.08); }
.price-range { display: flex; align-items: center; gap: .5rem; }
.price-range__input { flex: 1; min-width: 0; width: 0; }
.price-range span { color: var(--text-muted); white-space: nowrap; }
.price-bucket-list { list-style: none; padding: 0; margin: 0; }
.price-bucket-list li { margin-bottom: .15rem; }
.filter-empty { font-size: .82rem; color: var(--text-muted); }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap; }
.listing-title { font-size: 1.5rem; margin-bottom: 0; }
.listing-count { color: var(--text-muted); font-size: .85rem; margin-left: .75rem; }
.listing-controls { display: flex; align-items: center; gap: .75rem; }
.sort-select { padding: .4rem .75rem; font-size: .85rem; background: var(--navy-mid); border: 1px solid var(--gray-800); border-radius: var(--radius); color: var(--white); }
.listing-info { display: flex; align-items: baseline; gap: .5rem; }

/* ── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.product-gallery__main { position: relative; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.08); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-800); }
.product-gallery__img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .3s; display: block; }
.product-gallery__img:hover { transform: scale(1.03); }
.product-gallery__thumbs { display: flex; gap: .6rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb { padding: 0; background: none; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: border-color .2s; }
.gallery-thumb img { width: 70px; height: 52px; object-fit: cover; display: block; }
.gallery-thumb--active { border-color: var(--gold); }
.product-gallery__placeholder { aspect-ratio: 4/3; background: var(--gray-800); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.gallery-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.gallery-lightbox--open { display: flex; }
.gallery-lightbox__inner { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.gallery-lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 8px 60px rgba(0,0,0,.8); }
.gallery-lightbox__close { position: fixed; top: 1.25rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s; z-index: 10000; padding: 0; }
.gallery-lightbox__close:hover { opacity: 1; }
.gallery-lightbox__prev, .gallery-lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 3rem; line-height: 1; width: 3rem; height: 5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: var(--radius-sm); transition: background .2s; z-index: 10000; }
.gallery-lightbox__prev { left: 1rem; }
.gallery-lightbox__next { right: 1rem; }
.gallery-lightbox__prev:hover, .gallery-lightbox__next:hover { background: rgba(255,255,255,.2); }

.product-info__sku { font-size: .78rem; color: var(--text-muted); margin-bottom: .4rem; }
.product-info__name { margin-bottom: .75rem; }
.product-rating { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.stars { display: flex; gap: 1px; font-size: 1.1rem; }
.star { color: var(--gray-600); }
.star--filled { color: var(--gold); }
.product-rating__count { font-size: .85rem; color: var(--text-muted); }

.product-info__price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.price-sale { font-size: 2rem; font-weight: 700; color: var(--gold); }
.price-regular { font-size: 2rem; font-weight: 700; color: var(--white); }
.price-call { font-size: 1.4rem; font-weight: 600; color: var(--gold); font-style: italic; }
.price-original { font-size: 1.1rem; text-decoration: line-through; color: var(--text-muted); }
.price-badge { background: rgba(224,82,82,.15); color: var(--red); padding: .2rem .6rem; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; }

.product-info__short-desc { margin-bottom: 1.25rem; }

.variant-group { margin-bottom: 1.25rem; }
.variant-group__label { font-size: .85rem; color: var(--text-muted); display: block; margin-bottom: .5rem; }
.variant-group__label strong { color: var(--white); }
.variant-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.variant-option {
  padding: .4rem .9rem; background: var(--navy-mid); border: 1px solid var(--gray-800);
  border-radius: var(--radius-sm); cursor: pointer; font-size: .85rem; color: var(--text); transition: var(--transition);
}
.variant-option:hover { border-color: var(--gold); color: var(--gold); }
.variant-option--selected { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 600; }

.product-purchase { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 1rem; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; }
.qty-btn { width: 36px; height: 40px; background: var(--navy-mid); border: 1px solid var(--gray-800); color: var(--white); font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
.qty-btn--minus { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn--plus  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.qty-btn:hover { background: var(--gray-800); }
.qty-input { width: 56px; height: 40px; text-align: center; background: var(--navy-mid); border: 1px solid var(--gray-800); border-left: none; border-right: none; color: var(--white); font-size: .95rem; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-input--inline { width: 50px; height: 32px; font-size: .85rem; }

.stock-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; padding: .3rem .7rem; border-radius: var(--radius-sm); }
.stock-badge--in { color: var(--green); background: rgba(76,175,125,.12); }
.stock-badge--out { color: var(--orange); background: rgba(240,160,80,.12); }

.product-perks { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }
.perk { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--text-muted); }
.perk svg { color: var(--gold); flex-shrink: 0; }

.product-tabs { border-top: 1px solid rgba(255,255,255,.08); margin-top: .5rem; }
.tab-nav { display: flex; border-bottom: 1px solid rgba(255,255,255,.08); }
.tab-btn { padding: .9rem 1.5rem; background: none; border: none; color: var(--text-muted); font-size: .9rem; cursor: pointer; transition: color .2s; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn--active, .tab-btn:hover { color: var(--gold); }
.tab-btn--active { border-bottom-color: var(--gold); }
.tab-panel { display: none; padding: 2rem 0; }
.tab-panel--active { display: block; }
.product-description { color: var(--text-muted); line-height: 1.8; }
.reviews-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.review-item { background: var(--navy-mid); border-radius: var(--radius); padding: 1.25rem; }
.review-item__header { display: flex; align-items: center; gap: 1rem; margin-bottom: .6rem; }
.review-item__header strong { color: var(--white); }
.review-item__header time { font-size: .8rem; color: var(--text-muted); margin-left: auto; }
.review-item h4 { font-size: .95rem; margin-bottom: .3rem; }
.review-item p { font-size: .88rem; }
.review-form-wrap { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.review-form-wrap h3 { margin-bottom: 1.25rem; }
.review-form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label, .review-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; }

.related-products { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); }

/* ── CART ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); padding: .75rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.cart-row td { padding: 1rem .5rem; border-bottom: 1px solid rgba(255,255,255,.06); vertical-align: middle; }
.cart-row__product { display: flex; align-items: center; gap: 1rem; }
.cart-row__product img { border-radius: var(--radius-sm); object-fit: cover; }
.cart-item__remove { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: .25rem; transition: color .2s; }
.cart-item__remove:hover { color: var(--red); }
.cart-actions { padding: 1rem 0; }
.cart-summary { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.cart-summary h3 { margin-bottom: 1.25rem; }
.cart-summary__row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.cart-summary__row--total { font-size: 1.1rem; font-weight: 700; color: var(--white); border-bottom: none; padding-top: .75rem; }
.cart-summary .btn { margin-top: .75rem; }
.cart-summary__note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }

/* ── CART SIDEBAR ───────────────────────────────────────── */
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--navy-mid);
  box-shadow: -4px 0 40px rgba(0,0,0,.6);
  z-index: 2000; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); flex-shrink: 0; }
.cart-sidebar__header h2 { font-size: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.cart-sidebar__count { background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: .15rem .45rem; border-radius: 10px; }
.cart-sidebar__close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: .25rem; transition: color .2s; }
.cart-sidebar__close:hover { color: var(--white); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-sidebar__empty { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 0; color: var(--text-muted); text-align: center; }
.cart-sidebar__empty svg { opacity: .3; }
.cart-item { display: flex; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06); align-items: flex-start; }
.cart-item__image img { width: 70px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: .88rem; font-weight: 500; color: var(--white); margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item__price { font-size: .85rem; color: var(--gold); margin-bottom: .4rem; }
.cart-item__qty { display: flex; align-items: center; gap: .25rem; }
.cart-sidebar__footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); flex-shrink: 0; }
.cart-sidebar__subtotal { display: flex; justify-content: space-between; font-weight: 600; font-size: 1rem; color: var(--white); margin-bottom: .4rem; }
.cart-sidebar__note { font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem; }
.cart-sidebar__footer .btn { margin-bottom: .5rem; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.active { opacity: 1; pointer-events: all; }

/* ── CHECKOUT ───────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; align-items: start; }
.checkout-section { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.checkout-section__title { font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.payment-options { display: flex; flex-direction: column; gap: .75rem; }
.payment-option { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--navy); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); cursor: pointer; transition: border-color .2s; }
.payment-option input[type="radio"] { margin-top: .15rem; accent-color: var(--gold); flex-shrink: 0; }
.payment-option--selected { border-color: var(--gold); background: rgba(201,168,76,.05); }
.payment-option--disabled { opacity: .55; cursor: not-allowed; }
.payment-option__body strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.payment-option__body p { font-size: .82rem; }
.payment-option__title-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .2rem; }
.payment-option__badges { display: flex; align-items: center; gap: .35rem; }
.payment-option__soon { font-size: .82rem; color: var(--text-muted); font-style: italic; }
.stripe-card-element { background: var(--navy); padding: .75rem; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.1); }
.stripe-card-errors { color: #e05252; font-size: .82rem; margin-top: .4rem; }
.checkout-summary { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.checkout-summary h3 { margin-bottom: 1.25rem; }
.checkout-item { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.checkout-item__name { color: var(--text-muted); }
.checkout-totals { margin-top: .5rem; }
.checkout-totals__row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .9rem; color: var(--text-muted); }
.checkout-totals__row--total { font-size: 1.15rem; font-weight: 700; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); padding-top: .75rem; margin-top: .25rem; }
.checkout-shipping--free { color: var(--gold); font-weight: 600; }
.checkout-shipping--pending { color: var(--text-muted); font-size: .82rem; font-style: italic; }

/* ── CONFIRMATION ───────────────────────────────────────── */
.confirmation-box { max-width: 680px; margin: 0 auto; background: var(--navy-mid); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-xl); padding: 3rem; text-align: center; }
.confirmation-icon { width: 80px; height: 80px; background: rgba(76,175,125,.15); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--green); }
.confirmation-number { color: var(--text-muted); margin-bottom: .75rem; font-size: 1rem; }
.confirmation-notice { background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); border-radius: var(--radius); padding: 1rem; margin: 1.5rem 0; font-size: .9rem; color: var(--gold); }
.confirmation-notice--success { background: rgba(76,175,125,.1); border-color: rgba(76,175,125,.3); color: var(--green); }
.order-summary-table { border-top: 1px solid rgba(255,255,255,.08); margin: 1.5rem 0; padding-top: 1.5rem; }
.order-summary-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; }
.order-summary-row--total { font-weight: 700; border-top: 1px solid rgba(255,255,255,.08); padding-top: .75rem; margin-top: .25rem; color: var(--white); }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

/* ── LOCATIONS & CONTACT ────────────────────────────────── */
/* ── Locations page ── */
.locations-list { display: flex; flex-direction: column; gap: 3rem; }
.location-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.location-block__map { min-height: 380px; position: relative; background: var(--gray-800); }
.location-block__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.location-block__info { background: var(--navy-mid); padding: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.location-block__name { font-size: 1.3rem; font-weight: 600; color: var(--gold); margin-bottom: .25rem; }
.location-block__address { font-style: normal; display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.location-block__address svg { flex-shrink: 0; margin-top: 2px; }
.location-block__contact { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.location-block__contact:hover { color: var(--gold); }
.location-block__contact--whatsapp:hover { color: #25d366; }
.location-block__hours { margin-top: .5rem; border-top: 1px solid rgba(255,255,255,.07); padding-top: .75rem; }
.location-block__hours strong { font-size: .82rem; color: var(--white); display: block; margin-bottom: .4rem; }
.location-block__hours-row { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-muted); padding: .15rem 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.contact-details { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.contact-detail { display: flex; align-items: center; gap: .6rem; color: var(--text-muted); font-size: .9rem; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-detail a { color: var(--text-muted); }
.contact-detail a:hover { color: var(--gold); }

/* ── ABOUT ──────────────────────────────────────────────── */
.page-hero { text-align: center; padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 3rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: .75rem auto 0; }
.about-section { margin-bottom: 3rem; max-width: 800px; }
.about-section h2 { margin-bottom: 1rem; }
.about-section p { margin-bottom: 1rem; font-size: .95rem; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-value { background: var(--navy-mid); border-radius: var(--radius-lg); padding: 1.5rem; }
.about-value h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: .75rem; }
.about-value p { font-size: .88rem; }

/* ── LEGAL PAGES (Terms / Privacy) ─────────────────────── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-updated { font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.15rem; color: var(--gold); margin: 2.5rem 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.legal-content p { font-size: .94rem; line-height: 1.85; margin-bottom: 1rem; color: var(--text-muted); }
.legal-content ul { margin: 0 0 1.25rem 1.25rem; }
.legal-content ul li { font-size: .94rem; line-height: 1.8; color: var(--text-muted); margin-bottom: .4rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content strong { color: var(--text); }

/* ── EMPTY STATE ────────────────────────────────────────── */
.empty-state { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 4rem 0; text-align: center; color: var(--text-muted); }
.empty-state svg { opacity: .25; }
.empty-state h3 { color: var(--white); }

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination__btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); color: var(--text-muted); font-size: .88rem;
  transition: var(--transition); text-decoration: none;
}
.pagination__btn:hover, .pagination__btn--active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.pagination__btn--prev, .pagination__btn--next { width: auto; padding: 0 .75rem; }
.pagination__ellipsis { color: var(--text-muted); }

/* ── BADGES & STATUS ────────────────────────────────────── */
.badge { display: inline-block; padding: .18rem .55rem; font-size: .72rem; font-weight: 600; border-radius: var(--radius-sm); }
.badge--green  { background: rgba(76,175,125,.15);  color: var(--green); }
.badge--red    { background: rgba(224,82,82,.15);   color: var(--red); }
.badge--gold   { background: rgba(201,168,76,.15);  color: var(--gold); }
.badge--orange { background: rgba(240,160,80,.15);  color: var(--orange); }
.status-badge { display: inline-block; padding: .2rem .6rem; font-size: .75rem; font-weight: 600; border-radius: 20px; }
.status-badge--new        { background: rgba(201,168,76,.2);  color: var(--gold); }
.status-badge--confirmed  { background: rgba(76,175,125,.2);  color: var(--green); }
.status-badge--processing { background: rgba(100,150,240,.2); color: #6496f0; }
.status-badge--shipped    { background: rgba(180,100,240,.2); color: #b464f0; }
.status-badge--delivered  { background: rgba(76,175,125,.3);  color: var(--green); }
.status-badge--cancelled  { background: rgba(224,82,82,.2);   color: var(--red); }

/* ── SEARCH ─────────────────────────────────────────────── */
.search-header { margin-bottom: 1.5rem; }
.search-header h1 { margin-bottom: .3rem; }
.search-again-form { display: flex; gap: .75rem; max-width: 500px; margin-bottom: 2rem; }
.search-again-input { flex: 1; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filter-sidebar { width: 220px; min-width: 220px; }
}

@media (max-width: 768px) {
  .header-main__inner { grid-template-columns: auto auto; }
  .header-search { display: none; }
  .header-search.open { display: block; grid-column: 1 / -1; order: 3; }
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; display: none; }
  .nav-item--dropdown.open .dropdown-menu { display: block; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .subcategories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 300px; z-index: 1500; transform: translateX(-100%); transition: transform .3s; border-radius: 0; }
  .filter-sidebar.open { transform: translateX(0); }
  .filter-sidebar__close { display: block; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .financing-banner__inner { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .location-block { grid-template-columns: 1fr; }
  .location-block__map { min-height: 260px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories-grid, .products-grid, .subcategories-grid { grid-template-columns: 1fr; }
  :root { --container: 100%; }
  .slide__content { padding: 1.5rem; }
}

/* ── Flyer Button ──────────────────────────────────────── */
.flyer-btn {
  background: linear-gradient(135deg, #b71c1c 0%, #e53935 50%, #ff5252 100%);
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: .42rem 1.1rem .42rem .75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: .82rem;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(229,57,53,.55), 0 1px 4px rgba(0,0,0,.2);
  animation: flyerBtnPulse 2.2s ease-in-out infinite;
  transition: transform .18s, box-shadow .18s;
}
.flyer-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 28px rgba(229,57,53,.7);
  animation-play-state: paused;
}
.flyer-btn:hover .flyer-btn__shimmer { animation: flyerShimmer .6s linear; }
@keyframes flyerBtnPulse {
  0%, 100% { box-shadow: 0 3px 14px rgba(229,57,53,.55); transform: scale(1); }
  50%       { box-shadow: 0 5px 26px rgba(229,57,53,.8); transform: scale(1.05); }
}
.flyer-btn__hot {
  background: #fff;
  color: #e53935;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 1rem;
  padding: .08rem .32rem;
  margin-right: .45rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.flyer-btn__label { position: relative; z-index: 1; }
.flyer-btn__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -100% 0;
  pointer-events: none;
}
@keyframes flyerShimmer {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}

/* ── Flyer Modal ──────────────────────────────────────── */
.flyer-modal {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
}
.flyer-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(4px);
}
.flyer-modal__box {
  position: relative; z-index: 1;
  width: min(92vw, 700px);
  max-height: 92vh;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  border: 1px solid rgba(201,168,76,.2);
}
.flyer-modal__toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1rem;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.flyer-modal__counter { font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.flyer-modal__icon-btn {
  background: rgba(255,255,255,.08); border: none; color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.flyer-modal__icon-btn:hover { background: var(--gold); color: var(--navy); }
.flyer-modal__stage {
  flex: 1; display: flex; align-items: center; overflow: hidden; position: relative;
  min-height: 0;
}
.flyer-modal__img-wrap {
  flex: 1; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
.flyer-modal__img-wrap.flyer--slide-left  { animation: flyerSlideLeft  .35s cubic-bezier(.4,0,.2,1); }
.flyer-modal__img-wrap.flyer--slide-right { animation: flyerSlideRight .35s cubic-bezier(.4,0,.2,1); }
@keyframes flyerSlideLeft  { from { transform:translateX(60px); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes flyerSlideRight { from { transform:translateX(-60px); opacity:0; } to { transform:translateX(0); opacity:1; } }
.flyer-modal__img {
  max-width: 100%; max-height: calc(92vh - 120px);
  object-fit: contain; display: block; border-radius: 4px;
  cursor: zoom-in;
}
.flyer-modal__nav {
  background: rgba(0,0,0,.35); border: none; color: var(--white);
  font-size: 2rem; line-height: 1; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; margin: 0 .5rem;
  position: relative; z-index: 2;
}
.flyer-modal__nav:hover { background: var(--gold); color: var(--navy); }
.flyer-modal__nav--prev { margin-left: .75rem; }
.flyer-modal__nav--next { margin-right: .75rem; }
.flyer-modal__dots {
  display: flex; justify-content: center; gap: .4rem;
  padding: .6rem;
  background: rgba(0,0,0,.2);
}
.flyer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.flyer-dot--active { background: var(--gold); transform: scale(1.3); }

/* ── Flyer Zoom Modal ─────────────────────────────────── */
.flyer-zoom-modal {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,.92);
  overflow-y: auto;
  overflow-x: hidden;
  cursor: zoom-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.flyer-zoom-modal__img {
  width: min(94vw, 1400px);
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
  cursor: default;
  flex-shrink: 0;
}

/* ── Important Message Popup ──────────────────────────── */
.imp-msg-backdrop {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}
.imp-msg-modal {
  position: fixed; z-index: 5001;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 480px);
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  padding: 2rem 2rem 1.75rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .75rem;
  animation: impMsgIn .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes impMsgIn {
  from { transform: translate(-50%, -46%); opacity: 0; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}
.imp-msg-modal__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.imp-msg-modal__title {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--gold); margin: 0;
}
.imp-msg-modal__body {
  font-size: .95rem; color: var(--text-muted); line-height: 1.65;
  margin: 0;
}
.imp-msg-modal__close {
  margin-top: .5rem; min-width: 120px;
}
