/* ============================================================
   Battery Australia — Main Stylesheet
   Colors: Red #ab0000 | Blue #0047D6
   Fonts: Barlow Condensed (headings) | Barlow (body)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --red:         #d70000;
  --red-dark:    #a80000;
  --red-light:   #ffeaea;
 
  --blue:        #ffd200;
  --blue-dark:   #c9a600;
  --blue-light:  #fffbe6;
 
  --white:       #ffffff;
  --black:       #0d0d0d;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --bg-light:    #f9fafb;
  --bg-dark:     #111111;
 
  --green:       #16a34a;
  --green-light: #dcfce7;
  --yellow:      #ffd200;
 
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
 
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
 
  --radius:      6px;
  --radius-lg:   10px;
  --transition:  0.2s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Utility ─────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-red         { color: var(--red); }
.text-blue        { color: var(--blue); }
.text-muted       { color: var(--text-muted); }
.text-center      { text-align: center; }
.font-head        { font-family: var(--font-head); }
.sr-only          { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-primary:hover  { background: var(--red-dark); border-color: var(--red-dark); }

.btn-blue     { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover     { background: var(--blue-dark); }

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

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

.btn-block    { width: 100%; }
.btn-sm       { padding: 8px 16px; font-size: 13px; }
.btn-lg       { padding: 16px 32px; font-size: 17px; }

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar { background: var(--blue); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 7px 20px; }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--white); }
.topbar a:hover { text-decoration: underline; }
.topbar-center { font-weight: 800; letter-spacing: .1em; }

/* ── Site Header ─────────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; }

.site-logo img { height: 56px; width: auto; }

.header-search { flex: 1; display: flex; max-width: 500px; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.header-search:focus-within { border-color: var(--blue); }
.header-search input { flex: 1; padding: 10px 14px; font-size: 14px; border: none; outline: none; }
.header-search button { background: var(--red); color: var(--white); padding: 0 16px; border: none; cursor: pointer; transition: background var(--transition); }
.header-search button:hover { background: var(--red-dark); }

.header-actions { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.header-icon { position: relative; color: var(--text); padding: 6px; transition: color var(--transition); }
.header-icon:hover { color: var(--red); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-nav { background: var(--red); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; color: var(--white);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 14px 14px; transition: background var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { background: var(--red-dark); }
.nav-menu .specials-link > a { color: #FFD700; }
.caret { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg); min-width: 240px; z-index: 200;
  border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown li a {
  display: block; padding: 10px 18px;
  font-size: 13px; color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition), color var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--red-light); color: var(--red); }
.has-dropdown:hover .dropdown { display: block; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Flash Messages ──────────────────────────────────────── */
.flash { padding: 12px 20px; text-align: center; font-weight: 500; font-size: 14px; }
.flash-success { background: var(--green-light); color: var(--green); }
.flash-error   { background: var(--red-light); color: var(--red); }

/* ── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumb { padding: 10px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── Section Titles ──────────────────────────────────────── */
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; text-transform: uppercase; line-height: 1.05;
  margin-bottom: 8px;
}
.section-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.section-head { margin-bottom: 40px; }
.eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red);
  margin-bottom: 8px; display: block;
}

/* ── Product Card ────────────────────────────────────────── */
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-card-image { position: relative; overflow: hidden; background: #f8f8f8; }
.product-card-image img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 16px; transition: transform .3s; }
.product-card:hover .product-card-image img { transform: scale(1.04); }

.badge-sale {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 3px 8px; border-radius: 3px;
}
.badge-au {
  position: absolute; top: 10px; right: 10px;
  background: #006400; color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px;
}

.product-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-brand { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; }
.product-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--text); }
.product-name:hover { color: var(--red); }
.product-specs { font-size: 12px; color: var(--text-muted); }
.product-specs span { margin-right: 10px; }

.product-price { margin-top: auto; padding-top: 10px; }
.price-current { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--red); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.price-afterpay { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

.product-card-footer { padding: 12px 16px; border-top: 1px solid var(--border); }
.btn-add-cart {
  width: 100%; background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 10px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--red-dark); }

/* ── Product Grid ────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Category Card ───────────────────────────────────────── */
.category-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center; padding: 24px 16px; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }
.category-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; }
.category-card-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.category-card-count { font-size: 12px; color: var(--text-muted); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--bg-dark);
  background-image: url('https://batteryaustralia.com.au/wp-content/uploads/2025/06/Brisbane-CBD.png');
  background-size: cover; background-position: center;
  position: relative; min-height: 500px; display: flex; align-items: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.hero-content { position: relative; z-index: 1; padding: 60px 0; }
.hero-eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #ffd700; margin-bottom: 12px; }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 900; text-transform: uppercase; line-height: .95;
  color: var(--white); margin-bottom: 16px; letter-spacing: -.01em;
}
.hero h1 span { color: var(--red); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.avail-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #4ade80; font-weight: 600; }
.avail-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.4)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0)} }

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip { background: var(--blue); color: #000; padding: 16px 0; }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.2); }
.trust-item:last-child { border-right: none; }
.trust-item svg { color: #FFD700; }

/* ── Battery Finder ──────────────────────────────────────── */
.finder-section { background: var(--red); padding: 40px 0; }
.finder-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.finder-title { font-family: var(--font-head); font-size: 28px; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 20px; text-align: center; }
.finder-title span { color: #FFD700; }
.finder-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; }
.finder-field label { display: block; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.finder-field select {
  width: 100%; padding: 12px 16px; border: none; border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-body); background: var(--white); color: var(--text);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.finder-btn { align-self: end; background: var(--white); color: var(--red); font-family: var(--font-head); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 12px 28px; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition); height: 48px; }
.finder-btn:hover { background: #f0f0f0; }

/* ── Payment Strip ───────────────────────────────────────── */
.payment-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.payment-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.payment-strip img { height: 32px; object-fit: contain; }
.payment-text { font-size: 13px; color: var(--text-muted); text-align: center; width: 100%; margin-top: 8px; }

/* ── Features Grid ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-card {
  position: relative; overflow: hidden; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 24px 16px; text-align: center;
  background: var(--bg-dark);
}
.feature-card::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.feature-icon { position: relative; z-index: 1; width: 56px; height: 56px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-title { position: relative; z-index: 1; font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.2; }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-section { background: var(--bg-dark); padding: 80px 0; }
.reviews-title { font-family: var(--font-head); font-size: clamp(28px,4vw,42px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 8px; text-align: center; }
.reviews-title span { color: var(--red); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.review-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 24px; }
.review-stars { color: #FFD700; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.review-source { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── Cart Page ───────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--bg-light); padding: 12px 16px; text-align: left; font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-img { width: 72px; height: 72px; object-fit: contain; border-radius: 6px; border: 1px solid var(--border); background: #f8f8f8; }
.qty-input { width: 60px; text-align: center; padding: 6px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; }
.btn-remove { color: var(--text-muted); font-size: 20px; line-height: 1; padding: 4px; transition: color var(--transition); }
.btn-remove:hover { color: var(--red); }

.order-summary { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 80px; }
.summary-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.summary-row.total { font-family: var(--font-head); font-size: 20px; font-weight: 900; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 4px; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; }
.shipping-calc-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; color: var(--text-muted); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--green); background: var(--green-light); padding: 4px 8px; border-radius: 4px; }

/* ── Checkout ────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-form-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.checkout-section-title { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.form-input { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; transition: border-color var(--transition); }
.form-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,71,214,.1); }

.express-payments { display: flex; gap: 10px; margin-bottom: 20px; }
.express-btn { flex: 1; padding: 12px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 700; background: var(--white); transition: border-color var(--transition); cursor: pointer; }
.express-btn:hover { border-color: var(--blue); }

.shipping-option, .payment-option { display: flex; align-items: center; gap: 12px; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; cursor: pointer; transition: border-color var(--transition); }
.shipping-option:has(input:checked), .payment-option:has(input:checked) { border-color: var(--red); background: var(--red-light); }

.progress-bar { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.progress-step { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.progress-step.active { color: var(--red); }
.progress-step.done { color: var(--green); }
.progress-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.progress-step.active .progress-num { border-color: var(--red); background: var(--red); color: var(--white); }
.progress-step.done .progress-num { border-color: var(--green); background: var(--green); color: var(--white); }
.progress-divider { width: 48px; height: 2px; background: var(--border); margin: 0 8px; align-self: center; }

/* ── Mini Cart Drawer ─────────────────────────────────────── */
.cart-drawer {
  position: fixed; right: -400px; top: 0; bottom: 0; width: 380px;
  background: var(--white); box-shadow: var(--shadow-lg);
  z-index: 1000; transition: right .3s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 2px solid var(--red); }
.cart-drawer-header h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.cart-drawer-close { font-size: 20px; color: var(--text-muted); transition: color var(--transition); }
.cart-drawer-close:hover { color: var(--red); }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty-msg { text-align: center; color: var(--text-muted); padding: 40px 0; }
.cart-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.cart-drawer-total { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 18px; font-weight: 800; }
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; display: none; }
.cart-drawer-overlay.show { display: block; }

/* ── Sticky Mobile CTA ───────────────────────────────────── */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 990; background: var(--white); border-top: 1px solid var(--border);
  padding: 10px 12px; gap: 10px;
}
.sticky-btn {
  flex: 1; text-align: center; font-family: var(--font-head); font-size: 15px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 13px; border-radius: var(--radius); transition: opacity var(--transition);
}
.sticky-btn:hover { opacity: .9; }
.sticky-call { background: var(--red); color: var(--white); }
.sticky-find { background: var(--blue); color: var(--white); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 6px; color: rgba(255,255,255,.7); transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-bottom { background: #111; padding: 16px 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 3px 0; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: all var(--transition); }
.pagination a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination .active, .pagination [aria-current] { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
  .cart-layout      { grid-template-columns: 1fr; }
  .checkout-layout  { grid-template-columns: 1fr; }
  .finder-form      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner     { flex-direction: column; gap: 4px; text-align: center; font-size: 11px; }
  .topbar-center    { display: none; }
  .header-inner     { gap: 12px; }
  .header-search    { display: none; }
  .hamburger        { display: flex; }
  .nav-menu         { display: none; flex-direction: column; position: fixed; top: 0; right: -100%; bottom: 0; width: 85%; max-width: 320px; background: var(--bg-dark); z-index: 900; overflow-y: auto; padding: 80px 0 40px; transition: right .3s ease; }
  .nav-menu.open    { right: 0; display: flex; }
  .nav-menu > li > a { color: var(--white); padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .dropdown         { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); display: none; border-radius: 0; }
  .dropdown.open    { display: block; }
  .dropdown li a    { color: rgba(255,255,255,.75); padding: 10px 40px; background: none; }
  .product-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip-inner { gap: 0; }
  .trust-item       { padding: 6px 12px; font-size: 11px; }
  .finder-form      { grid-template-columns: 1fr; }
  .form-grid        { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  body              { padding-bottom: 68px; }
  .hero h1          { font-size: clamp(30px, 8vw, 50px); }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-actions { flex-direction: column; }
  .btn-lg       { padding: 13px 20px; font-size: 15px; }
}
