/* =========================================
   SHREEPAL HARDWARE & PAINTS — style.css
   ========================================= */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rust: #C84B31;
  --rust-dk: #9E3522;
  --rust-lt: #F2A07A;
  --gold: #C9922A;
  --cream: #FBF6EC;
  --dark: #1C1710;
  --charcoal: #2D2820;
  --muted: #7A7060;
  --border: rgba(200,75,49,0.14);
  --border-lt: rgba(200,75,49,0.08);
  --white: #ffffff;
  --surface: #F5EFE0;
  --nav-h: 68px;
  --shadow-sm: 0 2px 12px rgba(28,23,16,0.08);
  --shadow-md: 0 6px 28px rgba(28,23,16,0.12);
  --shadow-lg: 0 16px 56px rgba(28,23,16,0.16);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 10px; }

/* --- UTILITY --- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

.sec-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 10px;
}
.sec-tag.light { color: rgba(255,255,255,0.65); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 900; color: var(--dark);
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.sec-title.light { color: #fff; }
.sec-desc { font-size: 0.97rem; color: var(--muted); max-width: 520px; line-height: 1.78; }
.sec-desc.light { color: rgba(255,255,255,0.65); }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }

.bg-dark { background: var(--dark); }
.bg-surface { background: var(--surface); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); background: #1ebe5d; }
.wa-label { letter-spacing: 0.02em; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky; top: 0; z-index: 500;
  background: rgba(251,246,236,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rust); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.1; display: block; }
.brand-sub { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  text-decoration: none; color: var(--charcoal);
  font-size: 0.84rem; font-weight: 500;
  padding: 7px 12px; border-radius: 8px;
  transition: all 0.18s;
}
.nav-link:hover { color: var(--rust); background: rgba(200,75,49,0.07); }
.nav-link.active { color: var(--rust); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--rust); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-call:hover { background: var(--rust-dk); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
.mobile-drawer {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open { max-height: 600px; }
.drawer-inner { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  text-decoration: none; color: var(--charcoal);
  font-size: 1rem; font-weight: 500;
  padding: 12px 16px; border-radius: 10px;
  transition: all 0.18s;
}
.drawer-link:hover { color: var(--rust); background: var(--surface); }
.drawer-divider { height: 1px; background: var(--border); margin: 10px 0; }
.drawer-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--rust); color: #fff; text-decoration: none;
  padding: 13px 20px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s;
}
.drawer-cta:hover { background: var(--rust-dk); }
.drawer-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 13px 20px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  margin-top: 6px; transition: background 0.2s;
}
.drawer-wa:hover { background: #1ebe5d; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,23,16,0.88) 0%, rgba(28,23,16,0.65) 55%, rgba(28,23,16,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  width: 100%; padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 64px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  width: fit-content; margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 24px; max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--rust-lt); }
.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.78; max-width: 500px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--rust); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
  transition: all 0.22s; border: none; cursor: pointer;
}
.btn-primary-lg:hover { background: var(--rust-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,75,49,0.35); }

.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.22s;
  backdrop-filter: blur(8px);
}
.btn-ghost-lg:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.hstat { text-align: center; padding: 0 clamp(16px, 3vw, 32px); }
.hstat:first-child { padding-left: 0; }
.hstat-n { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: #fff; line-height: 1; }
.hstat-l { font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: rgba(255,255,255,0.6);
  border-radius: 2px; animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim { 0%{opacity:1;transform:translateY(0)} 80%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }

/* =========================================
   INFO BAR
   ========================================= */
.info-bar { background: var(--dark); padding: 0; overflow: hidden; }
.info-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex; align-items: stretch;
  flex-wrap: wrap;
}
.ibar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0; flex: 1; min-width: 200px;
}
.ibar-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(200,75,49,0.2); border: 1px solid rgba(200,75,49,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--rust-lt);
}
.ibar-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.ibar-val { font-size: 0.82rem; color: #fff; font-weight: 500; }
.ibar-sep { width: 1px; background: rgba(255,255,255,0.08); margin: 16px 24px; align-self: stretch; }

/* =========================================
   PRODUCTS GRID
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-lt);
  transition: all 0.28s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.prod-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--surface); }
.prod-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-card:hover .prod-img { transform: scale(1.06); }
.prod-brand-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--dark); color: #fff;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.prod-stock {
  position: absolute; top: 14px; right: 14px;
  background: #16a34a; color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 50px;
}
.prod-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.prod-cat { font-size: 0.68rem; font-weight: 600; color: var(--rust); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.prod-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.prod-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--rust); }
.prod-unit { font-size: 0.72rem; font-weight: 400; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.prod-btn {
  display: inline-flex; align-items: center;
  background: var(--surface); color: var(--rust);
  border: 1.5px solid var(--border);
  text-decoration: none; padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
}
.prod-btn:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

/* =========================================
   CATEGORIES GRID
   ========================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: 20px; overflow: hidden;
  position: relative; cursor: default;
  height: 280px; transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-img-wrap { position: absolute; inset: 0; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,23,16,0.88) 0%, rgba(28,23,16,0.3) 60%, transparent 100%);
}
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.cat-icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rust); display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; border: 2px solid rgba(255,255,255,0.2);
}
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* =========================================
   WHY US
   ========================================= */
.why-section { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.why-img-stack { position: relative; }
.why-main-img { width: 100%; height: clamp(320px, 45vw, 520px); object-fit: cover; border-radius: 24px; }
.why-rating-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: 20px; padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-lt);
}
.wrc-score { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--rust); line-height: 1; }
.wrc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin: 4px 0; }
.wrc-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.why-features { display: flex; flex-direction: column; gap: 18px; }
.why-feat { display: flex; gap: 14px; align-items: flex-start; }
.why-feat-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,75,49,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rust); flex-shrink: 0; margin-top: 2px;
}
.why-feat-title { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 3px; }
.why-feat-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* =========================================
   BRANDS
   ========================================= */
.brands-section { background: var(--white); }
.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  transition: all 0.25s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.brand-logo { height: 48px; width: auto; max-width: 140px; object-fit: contain; }
.brand-logo-sm { height: 38px; }
.brand-fallback {
  height: 48px; display: none; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--rust);
}
.brand-name { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; }
.brand-tag-pill {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  background: var(--surface); color: var(--muted); border: 1px solid var(--border-lt);
}
.brand-tag-pill.primary { background: rgba(200,75,49,0.1); color: var(--rust); border-color: var(--border); }

/* =========================================
   REVIEWS
   ========================================= */
.overall-rating { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.or-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--rust); display: flex; align-items: center; justify-content: center;
  flex-direction: column; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(200,75,49,0.3);
}
.or-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.or-max { font-size: 0.6rem; color: rgba(255,255,255,0.65); }
.or-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 3px; }
.or-count { font-size: 0.8rem; color: var(--muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card {
  background: var(--white); border-radius: 20px;
  padding: 24px; border: 1px solid var(--border-lt);
  transition: all 0.25s; display: flex; flex-direction: column; gap: 14px;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rev-top { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rust); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700;
  flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.rev-stars-sm { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; margin-top: 2px; }
.rev-google { margin-left: auto; flex-shrink: 0; }
.rev-text { font-size: 0.84rem; color: var(--muted); line-height: 1.72; flex: 1; }
.rev-date { font-size: 0.72rem; color: rgba(120,112,96,0.6); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-band-img { position: absolute; inset: 0; }
.cta-band-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,23,16,0.96) 0%, rgba(200,75,49,0.75) 100%);
}
.cta-band-content { position: relative; z-index: 2; }
.cta-band-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.contact-card {
  background: var(--white); border-radius: 24px;
  padding: clamp(24px, 4vw, 36px); display: flex; flex-direction: column; gap: 20px;
}
.cc-item { display: flex; align-items: flex-start; gap: 14px; }
.cc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rust); flex-shrink: 0;
}
.cc-label { font-size: 0.68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.cc-val { font-size: 0.88rem; font-weight: 500; color: var(--dark); line-height: 1.5; }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 6px; border-top: 1px solid var(--border-lt); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 13px 22px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  transition: all 0.2s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-map {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); color: var(--dark); text-decoration: none;
  padding: 13px 22px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-map:hover { background: var(--dark); color: #fff; border-color: var(--dark); transform: translateY(-2px); }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 36px); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px, 5vw, 64px); margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--rust); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.1; display: block; }
.footer-logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.footer-about { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
.footer-col-head { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); }
.footer-rating {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,75,49,0.18); border: 1px solid rgba(200,75,49,0.25);
  padding: 6px 16px; border-radius: 50px;
}
.fr-num { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); }
.fr-star { color: var(--gold); font-size: 0.85rem; }
.fr-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); }

/* =========================================
   RESPONSIVE — TABLET (≤900px)
   ========================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-img-stack { max-width: 540px; }
  .why-rating-card { right: 0; bottom: -16px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }

  .ibar-sep { display: none; }
  .info-bar-inner { flex-wrap: wrap; gap: 0; }
  .ibar-item { min-width: 50%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .hero-stats { gap: 0; }
  .hstat-div { display: none; }
  .hstat { padding: 0 clamp(12px, 2vw, 20px); }
  .hstat:first-child { padding-left: 0; }

  .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤600px)
   ========================================= */
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary-lg, .btn-ghost-lg { justify-content: center; text-align: center; }

  .hero-stats { flex-wrap: wrap; }
  .hstat { min-width: 45%; padding: 10px 8px; }
  .hstat-div { display: none; }

  .ibar-item { min-width: 100%; }

  .cc-actions { flex-direction: column; }
  .cc-actions a { justify-content: center; }

  .why-rating-card { position: static; margin-top: 20px; display: inline-block; }

  .nav-inner { padding: 0 16px; }
  .brand-sub { display: none; }
}

/* =========================================
   RESPONSIVE — LARGE (≥1400px)
   ========================================= */
@media (min-width: 1400px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  .navbar, .wa-float, .hero-scroll-hint { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg { display: none; }
  .hero-title, .hero-desc, .hstat-n, .hstat-l { color: #000; }
}