/* ══════════════════════════════════════════════
   FAMILY FOOTWEAR — STYLE.CSS (UPGRADED v2)
   ══════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #FAFAF8; color: #1C1208; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─── */
:root {
  --brand:        #C8860A;
  --brand-dark:   #9E6A08;
  --brand-light:  #F5D98B;
  --brand-pale:   #FFF8EC;
  --dark:         #1C1208;
  --mid:          #3D2C0F;
  --text:         #2C1F08;
  --muted:        #7A6242;
  --bg:           #FAFAF8;
  --bg-light:     #FFF8EC;
  --white:        #FFFFFF;
  --wa:           #25D366;
  --wa-dark:      #128C7E;
  --r:            16px;
  --r-sm:         10px;
  --shadow-sm:    0 2px 12px rgba(200,134,10,0.10);
  --shadow:       0 6px 28px rgba(200,134,10,0.14);
  --shadow-lg:    0 16px 56px rgba(200,134,10,0.22);
  --trans:        all 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.18; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); display: block; margin-bottom: 8px; }
.section-title { font-size: clamp(1.8rem,4vw,2.6rem); color: var(--dark); margin-bottom: 44px; }
.section-header { text-align: center; }

/* ─── CONTAINER ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.bg-light { background: var(--bg-light); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--trans); white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }
.btn-glass { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-outline-map { background: transparent; color: var(--brand); border: 2px solid var(--brand); border-radius: 50px; display: inline-flex; align-items: center; gap: 6px; padding: 13px 26px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: var(--trans); }
.btn-outline-map:hover { background: var(--brand); color: #fff; }
.full-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0; transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,248,236,0.97); backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(200,134,10,0.12);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: #fff; transition: color 0.4s; }
.navbar.scrolled .nav-logo { color: var(--dark); }
.logo-mark { color: var(--brand-light); transition: color 0.4s; flex-shrink: 0; }
.logo-mark.small { color: var(--brand); }
.navbar.scrolled .logo-mark { color: var(--brand); }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.05rem; color: inherit; }
.logo-main strong { font-weight: 800; }
.logo-sub { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; transition: color 0.4s; }
.navbar.scrolled .logo-sub { color: var(--muted); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.82); transition: var(--trans); }
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: var(--brand); background: rgba(200,134,10,0.08); }
.nav-cta { background: var(--brand); color: #fff !important; padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; transition: var(--trans); }
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.ham-line { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); transform-origin: center; }
.navbar.scrolled .ham-line { background: var(--dark); }
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 800; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════ HERO ══════════ */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bgimg { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.7); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg,rgba(40,18,2,0.82) 0%,rgba(28,12,2,0.75) 60%,rgba(60,30,5,0.7) 100%); }

/* Floaters */
.hero-floaters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floater { position: absolute; }
.f1 { top: 12%; right: -2%; width: 240px; animation: floatUp 7s ease-in-out infinite; }
.f2 { bottom: 20%; left: -1%; width: 160px; animation: floatUp 9s ease-in-out infinite reverse; }
.f3 { top: 55%; right: 8%; width: 190px; animation: floatUp 11s ease-in-out infinite 2s; }
@keyframes floatUp { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-18px) rotate(-4deg)} }

.hero-content { position: relative; z-index: 2; padding: 130px 24px 70px; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,10,0.25); border: 1px solid rgba(200,134,10,0.5);
  color: var(--brand-light); padding: 9px 22px; border-radius: 50px;
  font-size: 0.86rem; font-weight: 600; margin-bottom: 28px;
  backdrop-filter: blur(10px); letter-spacing: 0.02em;
}
.badge-stars { color: #FFD700; font-size: 0.95rem; letter-spacing: 2px; }
.hero-title { font-size: clamp(3.8rem,11vw,7.2rem); color: #fff; line-height: 0.92; margin-bottom: 20px; font-weight: 900; }
.ht-top { display: block; }
.ht-accent { display: block; color: var(--brand-light); }
.hero-tagline { font-size: clamp(1rem,2.8vw,1.25rem); color: rgba(255,255,255,0.78); margin-bottom: 14px; font-style: italic; }
.hero-location { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 38px; letter-spacing: 0.02em; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-chevron { width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,0.35); border-bottom: 2px solid rgba(255,255,255,0.35); transform: rotate(45deg); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ══════════ TRUST BAR ══════════ */
.trust-bar { background: var(--dark); padding: 52px 0; }
.trust-headline { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 36px; }
.trust-headline strong { color: var(--brand-light); font-weight: 700; }
.trust-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 48px; text-align: center; }
.trust-icon { font-size: 2rem; line-height: 1; }
.trust-num { font-size: 2rem; font-weight: 800; color: var(--brand-light); font-family: 'Playfair Display', serif; line-height: 1; }
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.trust-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ══════════ CATEGORIES ══════════ */
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cat-card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  cursor: pointer; transition: var(--trans); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; border: 1px solid rgba(200,134,10,0.1);
  position: relative;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.1); }
.cat-info { padding: 18px 18px 0; flex: 1; }
.cat-info h3 { font-size: 1.05rem; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-info span { font-size: 0.78rem; color: var(--muted); }
.cat-arrow { display: block; padding: 14px 18px 16px; color: var(--brand); font-size: 1.1rem; font-weight: 700; transition: var(--trans); }
.cat-card:hover .cat-arrow { transform: translateX(6px); }

/* ══════════ FILTER ══════════ */
.filter-section { background: var(--dark); padding: 64px 0; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); padding: 34px; }
.filter-group { display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 200px; }
.filter-group label { color: rgba(255,255,255,0.5); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 20px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: rgba(255,255,255,0.65); font-size: 0.88rem; font-family: 'Outfit', sans-serif; font-weight: 500; cursor: pointer; transition: var(--trans); }
.chip:hover,.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.price-group input[type="range"] { width: 100%; accent-color: var(--brand); cursor: pointer; height: 4px; border-radius: 2px; }
#priceLabel { color: var(--brand-light); font-weight: 700; }
.price-track-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* ══════════ PRODUCTS GRID ══════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 26px; }
.product-card { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans); position: relative; border: 1px solid rgba(200,134,10,0.08); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #f5f0e8; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em; z-index: 1; }
.badge-new { background: var(--brand); color: #fff; }
.badge-popular { background: #E53935; color: #fff; }
.product-body { padding: 18px; }
.product-name { font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); line-height: 1.3; }
.product-mini-stars { color: #F59E0B; font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 4px; }
.product-cat { font-size: 0.75rem; color: var(--muted); text-transform: capitalize; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 1.22rem; font-weight: 800; color: var(--brand); font-family: 'Playfair Display', serif; }
.product-wa-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--wa); color: #fff; border: none; border-radius: 50px;
  padding: 9px 16px; font-size: 0.82rem; font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--trans); text-decoration: none;
}
.product-wa-btn:hover { background: var(--wa-dark); transform: scale(1.03); }

/* ══════════ BRANDS ══════════ */
.brands-section { background: var(--bg); padding: 80px 0; }
.brands-slider-wrap { overflow: hidden; margin-top: 0; padding: 8px 0; position: relative; }
.brands-slider-wrap::before,.brands-slider-wrap::after { content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none; }
.brands-slider-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-slider-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.brands-track { display: flex; gap: 24px; width: max-content; animation: scrollBrands 22s linear infinite; }
.brands-track:hover { animation-play-state: paused; }
.brand-logo {
  flex-shrink: 0; background: var(--white); border: 1px solid rgba(200,134,10,0.12);
  border-radius: var(--r); padding: 24px 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transition: var(--trans); cursor: default; min-width: 160px;
}
.brand-logo:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-logo-icon { font-size: 2.2rem; line-height: 1; }
.brand-logo-name { font-size: 1rem; font-weight: 800; color: var(--dark); letter-spacing: -0.01em; }
.brand-logo-tag { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes scrollBrands { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════ OFFER BANNER ══════════ */
.offer-banner {
  padding: 110px 24px; text-align: center;
  background: linear-gradient(135deg,#7A3B00 0%,#C8860A 50%,#7A3B00 100%);
  position: relative; overflow: hidden;
}
.confetti-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti-piece {
  position: absolute; width: 10px; height: 10px; opacity: 0;
  animation: confettiFall linear infinite;
}
.offer-content { position: relative; z-index: 2; }
.offer-tag { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; padding: 7px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 20px; }
.offer-title { font-size: clamp(3.2rem,9vw,5.5rem); color: #fff; font-weight: 900; margin-bottom: 16px; text-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.offer-sub { font-size: clamp(1.05rem,3vw,1.35rem); color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.offer-pct {
  font-size: clamp(2rem,6vw,3rem); font-weight: 900; color: var(--brand-light);
  font-family: 'Playfair Display',serif;
  text-shadow: 0 0 30px rgba(245,217,139,0.6), 0 0 60px rgba(245,217,139,0.3);
  animation: glowPct 2.5s ease-in-out infinite;
}
@keyframes glowPct { 0%,100%{text-shadow:0 0 20px rgba(245,217,139,0.5)} 50%{text-shadow:0 0 40px rgba(245,217,139,0.9),0 0 80px rgba(245,217,139,0.5)} }

/* Countdown */
.offer-countdown { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.cd-box { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 14px 20px; text-align: center; min-width: 80px; backdrop-filter: blur(8px); }
.cd-box span { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; font-family: 'Playfair Display',serif; }
.cd-box label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; display: block; }
.cd-sep { font-size: 1.8rem; color: rgba(255,255,255,0.5); font-weight: 700; line-height: 1; margin-top: -8px; }

.btn-offer { background: #fff; color: var(--brand-dark); font-size: 1.05rem; padding: 17px 40px; border-radius: 50px; font-weight: 800; transition: var(--trans); display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-offer:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

@keyframes confettiFall { 0%{transform:translateY(-20px) rotate(0deg);opacity:1} 100%{transform:translateY(110vh) rotate(720deg);opacity:0} }

/* ══════════ WHY CHOOSE US ══════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--r); padding: 38px 26px; text-align: center; border: 1px solid rgba(200,134,10,0.1); transition: var(--trans); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand); }
.why-icon-ring { font-size: 2.6rem; margin-bottom: 18px; display: inline-block; filter: drop-shadow(0 4px 8px rgba(200,134,10,0.2)); }
.why-card h3 { font-size: 0.98rem; font-family: 'Outfit',sans-serif; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ══════════ REVIEWS ══════════ */
.overall-rating { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.rating-big { display: flex; align-items: center; gap: 14px; }
.r-num { font-size: 3rem; font-weight: 900; color: var(--brand); font-family: 'Playfair Display',serif; line-height: 1; }
.r-stars { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 2px; }
.r-label { font-size: 0.82rem; color: var(--muted); }
.btn-google-review {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(200,134,10,0.25); border-radius: 50px;
  padding: 12px 24px; font-size: 0.9rem; font-weight: 600;
  color: var(--text); transition: var(--trans); background: var(--white);
}
.btn-google-review:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card { background: var(--white); border-radius: var(--r); padding: 28px; border: 1px solid rgba(200,134,10,0.1); transition: var(--trans); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; position: relative; }
.reviewer-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--av,#C8860A); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 3px; }
.review-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 1px; }
.g-badge { position: absolute; right: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 900; color: #4285F4; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.review-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.review-date { font-size: 0.72rem; color: rgba(122,98,66,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ══════════ PRODUCT PHOTOS GALLERY ══════════ */
.gallery-subtitle { color: var(--muted); font-size: 0.92rem; margin-top: -28px; margin-bottom: 32px; }

/* Filter Tabs */
.pg-filter-wrap {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.pg-tab {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid var(--brand); background: transparent;
  color: var(--brand); font-family: 'Outfit', sans-serif;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: var(--trans);
}
.pg-tab:hover, .pg-tab.active {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 18px rgba(200,134,10,0.28);
}

/* Masonry Grid */
.pg-masonry {
  columns: 4; column-gap: 14px;
}
.pg-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; position: relative;
  background: #f0e8d8;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; animation: pgFadeIn 0.55s ease forwards;
}
.pg-item.pg-hidden { display: none; }
@keyframes pgFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pg-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pg-item img {
  width: 100%; display: block;
  object-fit: cover; transition: transform 0.5s ease;
}
.pg-item:hover img { transform: scale(1.05); }
.pg-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,12,2,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.32s ease;
  display: flex; align-items: flex-end;
  padding: 14px 12px;
}
.pg-item:hover .pg-item-overlay { opacity: 1; }
.pg-item-zoom {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.pg-item-zoom::before {
  content: '⊕'; font-size: 1.1rem;
}

/* Load More */
.pg-load-wrap {
  text-align: center; margin-top: 40px;
}

/* ══════════ LIGHTBOX ══════════ */
.pg-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.pg-lightbox.open { opacity: 1; pointer-events: all; }

.pg-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,5,0,0.93);
  backdrop-filter: blur(10px);
}
.pg-lb-stage {
  position: relative; z-index: 1;
  max-width: min(90vw, 800px);
  max-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.pg-lb-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: var(--r);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.pg-lb-img.swapping { opacity: 0; transform: scale(0.97); }

.pg-lb-info {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
  padding: 0 4px;
}
.pg-lb-counter {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem; font-family: 'Outfit', sans-serif;
}
.pg-lb-wa {
  background: var(--wa); color: #fff;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
  text-decoration: none;
}
.pg-lb-wa:hover { background: var(--wa-dark); }

.pg-lb-close {
  position: fixed; top: 20px; right: 24px; z-index: 2;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 1.2rem; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; backdrop-filter: blur(6px);
}
.pg-lb-close:hover { background: rgba(255,255,255,0.25); }

.pg-lb-prev, .pg-lb-next {
  position: fixed; top: 50%; z-index: 2;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 2rem; width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; backdrop-filter: blur(6px);
}
.pg-lb-prev { left: 20px; }
.pg-lb-next { right: 20px; }
.pg-lb-prev:hover, .pg-lb-next:hover { background: rgba(200,134,10,0.5); border-color: var(--brand); }

/* ══════════ FAQ ══════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid rgba(200,134,10,0.12); border-radius: var(--r); overflow: hidden; transition: var(--trans); }
.faq-item:hover { border-color: rgba(200,134,10,0.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Outfit',sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--dark); text-align: left; transition: var(--trans);
}
.faq-q:hover { color: var(--brand); }
.faq-q[aria-expanded="true"] { color: var(--brand); }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; border: 2px solid currentColor; }
.faq-icon span { position: absolute; top: 50%; left: 50%; background: currentColor; border-radius: 2px; transition: var(--trans); transform-origin: center; }
.faq-icon span:first-child { width: 10px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon span:last-child { width: 2px; height: 10px; transform: translate(-50%,-50%); }
.faq-q[aria-expanded="true"] .faq-icon span:last-child { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ══════════ AVAILABILITY ══════════ */
.avail-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.avail-info h3 { font-size: 1.4rem; margin-bottom: 14px; color: var(--dark); }
.avail-info p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; font-size: 0.97rem; }
.avail-features { display: flex; flex-direction: column; gap: 13px; }
.af-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.af-check { width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avail-form-box { display: flex; flex-direction: column; gap: 20px; background: var(--white); padding: 36px; border-radius: var(--r); box-shadow: var(--shadow); border: 1px solid rgba(200,134,10,0.1); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; }
.req { color: #E53935; }
.form-group input { padding: 14px 18px; border: 1.5px solid rgba(200,134,10,0.2); border-radius: var(--r-sm); background: var(--bg); font-family: 'Outfit',sans-serif; font-size: 0.97rem; color: var(--text); transition: var(--trans); outline: none; }
.form-group input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(200,134,10,0.1); background: #fff; }
.form-group input::placeholder { color: #BBA87A; }

/* ══════════ STORE INFO ══════════ */
.store-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.store-info-box { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon-box { font-size: 1.3rem; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; }
.info-item strong { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.info-item p { color: var(--dark); font-size: 0.95rem; line-height: 1.6; }
.info-item a { color: var(--brand); font-weight: 600; }
.open-tag { background: #22c55e; color: #fff; font-size: 0.66rem; padding: 3px 9px; border-radius: 4px; font-weight: 800; text-transform: uppercase; margin-right: 5px; vertical-align: middle; }
.info-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.map-box { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }

/* ══════════ FINAL CTA ══════════ */
.final-cta { background: var(--dark); padding: 110px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(200,134,10,0.14) 0%, transparent 60%), radial-gradient(ellipse at 75% 50%, rgba(200,134,10,0.09) 0%, transparent 60%); }
.cta-title { font-size: clamp(2rem,5vw,3.6rem); color: #fff; position: relative; z-index: 1; margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 42px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════ FOOTER ══════════ */
.footer { background: #120D05; }
.footer-top { padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 52px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; }
.footer-logo-row .logo-mark { color: var(--brand); }
.footer-logo-row strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 800; }
.footer-logo-row span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-rating-row { display: flex; align-items: center; gap: 8px; }
.f-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }
.footer-rating-row span:last-child { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--wa); color: #fff; padding: 11px 24px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; transition: var(--trans); margin-top: 4px; width: fit-content; }
.footer-wa-btn:hover { background: var(--wa-dark); transform: translateY(-2px); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; font-weight: 700; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: var(--trans); line-height: 1.5; }
.footer-col a:hover { color: var(--brand-light); }
.footer-col span { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-map-link { color: var(--brand-light) !important; font-weight: 600; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.footer-dev a { color: var(--brand-light); }

/* ══════════ FLOATING WA ══════════ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 990; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.55); animation: waPulse 2.8s infinite; transition: transform 0.3s ease; }
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 62px; height: 62px; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.5)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.85),0 0 0 10px rgba(37,211,102,.1)} }
.wa-tooltip { position: absolute; right: 74px; background: var(--dark); color: #fff; padding: 7px 16px; border-radius: 8px; font-size: 0.82rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--trans); font-family: 'Outfit',sans-serif; }
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--dark); }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════ MODAL ══════════ */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--trans); }
.modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); }
.modal-box { position: relative; z-index: 1; background: var(--bg); border-radius: var(--r); padding: 36px; max-width: 820px; width: calc(100% - 48px); max-height: 82vh; overflow-y: auto; transform: scale(0.9) translateY(20px); transition: var(--trans); }
.modal.open .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-light); border: 1px solid rgba(200,134,10,0.15); color: var(--muted); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: var(--trans); }
.modal-close:hover { background: var(--brand); color: #fff; }
.modal-title { margin-bottom: 28px; font-size: 1.5rem; color: var(--dark); }
.modal-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 18px; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .pg-masonry { columns: 3; }
}
@media (max-width: 860px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .store-layout { grid-template-columns: 1fr; }
  .avail-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .pg-masonry { columns: 2; }
  .trust-item { padding: 0 28px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 78vw; max-width: 300px;
    background: rgba(28,18,8,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 4px; z-index: 900; padding: 40px 28px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex !important;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { color: rgba(255,255,255,0.8) !important; font-size: 1.1rem; padding: 12px 0; width: 100%; }
  .nav-links .nav-cta { margin-top: 16px; width: 100%; text-align: center; justify-content: center; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 290px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .trust-divider { display: none; }
  .trust-stats { gap: 24px; }
  .trust-item { padding: 0; }
  .offer-countdown { gap: 6px; }
  .cd-box { padding: 10px 14px; min-width: 64px; }
}
@media (max-width: 440px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pg-masonry { columns: 2; column-gap: 10px; }
  .pg-item { margin-bottom: 10px; }
  .pg-lb-prev { left: 8px; }
  .pg-lb-next { right: 8px; }
}

/* ===== MOBILE FIX ===== */

@media (max-width: 900px){

  .categories-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .why-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .reviews-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .pg-masonry{
    columns:2;
  }

}

/* PHONE */
@media (max-width: 600px){

  .categories-grid{
    grid-template-columns: 1fr;
  }

  .why-grid{
    grid-template-columns: 1fr;
  }

  .reviews-grid{
    grid-template-columns: 1fr;
  }

  .pg-masonry{
    columns:1;
  }

  .hero-title{
    font-size: 3rem;
  }

  .hero-btns{
    flex-direction: column;
    align-items:center;
  }

  .container{
    padding:0 16px;
  }

}
