/* ============================================================
   GHURABA V4 — style.css
   Dark. Premium. Intentional.
   ============================================================ */

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg:    #FAFAF7;
  --bg2:   #F3F1EB;
  --bg3:   #EAE7DE;
  --ink:   #18150E;
  --ink2:  #2E2A20;
  --ink3:  #5A5446;
  --sand:  #C4A96B;
  --sandl: #DEC48A;
  --sandd: #96793A;
  --white: #FFFFFF;
  --muted: #5A5446;
  --border: rgba(24,21,14,0.09);
  --fh: 'Playfair Display', serif;
  --fb: 'Outfit', sans-serif;
  --fc: 'Cormorant Garamond', serif;
  --nav-h: 68px;
  --radius: 4px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Custom Cursor ────────────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--sand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
#cursorFollower {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.6;
}
@media (hover: none) { #cursor, #cursorFollower { display: none; } }

/* ── Announcement Bar ─────────────────────────────────────── */
.announce-bar {
  background: var(--ink);
  color: var(--sandl);
  height: 36px;
  overflow: hidden;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.announce-track span {
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.announce-track span::before {
  content: '·';
  color: var(--sand);
  font-size: 1rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
#navbar.scrolled {
  box-shadow: 0 2px 24px rgba(24,21,14,0.08);
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo-tag {
  font-family: var(--fb);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--transition);
}
.cart-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
#cartCount {
  display: none;
  background: var(--sand);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px; right: -6px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Mobile Menu ──────────────────────────────────────────── */
#mobileOverlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(24,21,14,0.5);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
#mobileOverlay.show { display: block; }
#mobileMenu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg);
  z-index: 1200;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
#mobileMenu.open { right: 0; }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.mobile-menu-logo {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
#mobileClose {
  font-size: 1.5rem;
  color: var(--ink3);
  line-height: 1;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-links a {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-links a::after { content: '→'; color: var(--sand); font-size: 0.8rem; }
.mobile-wa {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border: 1.5px solid var(--ink);
}
.btn-dark:hover {
  background: var(--ink2);
  border-color: var(--ink2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-gold {
  background: var(--sand);
  color: var(--white);
  border: 1.5px solid var(--sand);
}
.btn-gold:hover {
  background: var(--sandd);
  border-color: var(--sandd);
}
.full-w { width: 100%; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080604;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-media img.loaded { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,6,4,0.93) 0%,
    rgba(8,6,4,0.78) 38%,
    rgba(8,6,4,0.32) 62%,
    rgba(8,6,4,0.1) 100%
  );
}
.hero-wm {
  position: absolute;
  bottom: -1rem; right: -1rem;
  font-family: var(--fh);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 6vw, 6rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 700px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.hero-kicker .kl {
  display: block;
  width: 1.6rem; height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}
.hero-h {
  font-family: var(--fh);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-h em {
  font-style: italic;
  color: var(--sand);
}
.hero-sub {
  font-family: var(--fb);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--fb);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px; height: 100%;
  background: var(--sand);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Manifesto Strip ──────────────────────────────────────── */
.manifesto-strip {
  background: var(--sand);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}
.manifesto-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.manifesto-track span {
  font-family: var(--fc);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.manifesto-track span::after {
  content: '✦';
  font-style: normal;
  font-size: 0.5rem;
  color: var(--sandd);
}

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
}
.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink2);
  white-space: nowrap;
}
.trust-item svg {
  color: var(--sand);
  flex-shrink: 0;
}

/* ── Section Scaffolding ──────────────────────────────────── */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section--bg2 { background: var(--bg2); }
.section--bg3 { background: var(--bg3); }

.sec-hdr {
  margin-bottom: 3rem;
}
.sec-ey {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.sec-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.section--dark .sec-title { color: var(--white); }
.sec-sub {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink3);
  margin-top: 0.6rem;
  max-width: 500px;
}
.section--dark .sec-sub { color: rgba(255,255,255,0.55); }

/* ── Product Grid ─────────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

.prod-card {
  display: flex;
  flex-direction: column;
}
.prod-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg3);
  border-radius: var(--radius);
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 1px;
  z-index: 1;
}
.b-new   { background: var(--sand); color: var(--white); }
.b-best  { background: var(--ink);  color: var(--sandl); }
.b-lim   { background: #8B4513;     color: var(--white); }
.b-soon  { background: rgba(24,21,14,0.75); color: var(--sandl); }

.prod-info {
  padding: 0.85rem 0 0;
}
.prod-cat {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.25rem;
}
.prod-name {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.prod-name a { color: inherit; transition: color var(--transition); }
.prod-name a:hover { color: var(--sand); }
.prod-price {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.prod-price .original {
  text-decoration: line-through;
  color: var(--ink3);
  font-weight: 400;
  margin-right: 0.4rem;
  font-size: 0.8rem;
}

/* ── View All Link ────────────────────────────────────────── */
.view-all-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.view-all-link {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: color var(--transition);
}
.view-all-link:hover { color: var(--sandd); }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 600px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Coming Soon Section ──────────────────────────────────── */
.coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .coming-grid { grid-template-columns: 1fr; } }
.coming-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}
@media (max-width: 640px) { .coming-card { aspect-ratio: 4/3; } }
.coming-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(0.45);
  transition: filter 0.55s ease, transform 0.55s ease;
}
.coming-card:hover img {
  filter: grayscale(40%) brightness(0.55);
  transform: scale(1.03);
}
.coming-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.coming-badge {
  align-self: flex-start;
  background: var(--sand);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 1px;
}
.coming-name {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.coming-price-range {
  font-family: var(--fb);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.btn-wa-notify {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.65rem 1.25rem;
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: flex-start;
  transition: all var(--transition);
}
.btn-wa-notify:hover {
  background: #25D366;
  border-color: #25D366;
}

/* ── Brand Story ──────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; } }
.story-img-wrap {
  position: relative;
}
.story-main-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.story-accent-img {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
  box-shadow: 0 8px 32px rgba(24,21,14,0.15);
}
@media (max-width: 768px) {
  .story-accent-img { right: 0.5rem; bottom: -1rem; }
}
.story-est-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--sand);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 1px;
}
.story-quote {
  font-family: var(--fc);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--sand);
}
.story-text {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-text + .story-text { margin-bottom: 2rem; }

/* ── Why Ghuraba ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-item:nth-child(odd) { padding-right: 2rem; border-right: 1px solid rgba(255,255,255,0.07); }
.why-item:nth-child(even) { padding-left: 2rem; }
@media (max-width: 580px) {
  .why-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .why-item:nth-child(even) { padding-left: 0; }
}
.why-num {
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.08em;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.why-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.why-desc {
  font-family: var(--fb);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.testi-stars {
  color: var(--sand);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: var(--fc);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.testi-name {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}

/* ── WhatsApp Banner ──────────────────────────────────────── */
.wa-banner {
  background: var(--ink2);
  padding: 3.5rem clamp(1rem, 4vw, 3rem);
  text-align: center;
}
.wa-banner-title {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.wa-banner-sub {
  font-family: var(--fb);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}
.btn-wa-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-wa-main:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 4rem clamp(1rem, 4vw, 3rem) 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.footer-brand-tag {
  font-family: var(--fb);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.footer-brand-q {
  font-family: var(--fc);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 240px;
}
.footer-col-title {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-family: var(--fb);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}
.footer-credit {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}
.footer-credit a {
  color: var(--sand);
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--sandl); }

/* ── Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  background: #25D366;
  color: white;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── Toast ────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  border-left: 3px solid var(--sand);
  z-index: 9000;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}
#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
@keyframes fallbackReveal {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right {
    animation: fallbackReveal 0s 2s forwards;
  }
}

/* ── Products Page ────────────────────────────────────────── */
.page-header {
  background: var(--ink);
  padding: 4rem clamp(1rem, 4vw, 3rem) 3rem;
  text-align: center;
}
.page-header-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-header-sub {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.filter-bar {
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1px;
  color: var(--ink3);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
#productCount {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--ink3);
}

/* ── Product Detail ───────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.gallery-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg2);
  border-radius: var(--radius);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s;
}
.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.thumb-btn {
  width: 64px; height: 80px;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn.active { border-color: var(--sand); }
.detail-name {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.detail-price-wrap { margin-bottom: 1rem; }
.detail-price {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.detail-price-original {
  font-family: var(--fb);
  font-size: 1rem;
  color: var(--ink3);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.detail-desc {
  font-family: var(--fb);
  font-size: 0.88rem;
  color: var(--ink3);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.detail-label {
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.size-guide-link {
  color: var(--sand);
  font-weight: 500;
  text-decoration: underline;
}
.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.size-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.qty-btn {
  width: 44px; height: 44px;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--bg2);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg3); }
#qtyVal {
  width: 52px;
  text-align: center;
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.btn-wa-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.85rem;
  border-radius: 2px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-wa-detail:hover { background: #1ebe5a; }
.detail-meta {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.meta-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--fb);
  font-size: 0.78rem;
}
.meta-item span:first-child { color: var(--ink3); }
.meta-item span:last-child  { color: var(--ink); font-weight: 500; }
.related-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* ── Cart ─────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-section-title {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-cat {
  font-family: var(--fb);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.2rem;
}
.cart-item-name {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.cart-item-size {
  font-family: var(--fb);
  font-size: 0.78rem;
  color: var(--ink3);
  margin-bottom: 0.75rem;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-item-price {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-remove {
  font-family: var(--fb);
  font-size: 0.7rem;
  color: var(--ink3);
  text-decoration: underline;
  transition: color var(--transition);
}
.cart-remove:hover { color: #c0392b; }
.cart-summary {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.summary-lines { display: flex; flex-direction: column; gap: 0.6rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--fb);
  font-size: 0.85rem;
  color: var(--ink3);
}
.total-line {
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.3rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}
.free-delivery-hint {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--sand);
  font-style: italic;
  margin-top: -0.2rem;
}
.cod-note {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--ink3);
  text-align: center;
  margin-top: 0.75rem;
}
.cart-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h2 {
  font-family: var(--fh);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cart-empty p {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink3);
  margin-bottom: 1.5rem;
}

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form-title {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--fb);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sand);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.checkout-summary-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.co-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.co-item img {
  width: 52px; height: 64px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  flex-shrink: 0;
}
.co-item-name {
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.co-item-meta {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--ink3);
}
.co-item-price {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-left: auto;
  white-space: nowrap;
}

/* ── Thank You ────────────────────────────────────────────── */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.thankyou-icon {
  width: 72px; height: 72px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}
.thankyou-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.thankyou-sub {
  font-family: var(--fb);
  font-size: 0.95rem;
  color: var(--ink3);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
}

/* ── Limited Drop Card ────────────────────────────────────── */
.prod-card.is-limited .prod-img {
  box-shadow: 0 0 0 2px var(--sand);
  border-radius: var(--radius);
}
.prod-card.is-limited .prod-img::after {
  content: 'EID DROP';
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  font-family: var(--fb);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sand);
  background: var(--ink);
  padding: 0.25rem 0.5rem;
  border-radius: 1px;
}

/* ── Grid responsive for 9 items ─────────────────────────── */
@media (min-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── Hero mobile image fix ────────────────────────────────── */
@media (max-width: 768px) {
  .hero-media img {
    object-position: 70% center;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,6,4,0.3) 0%,
      rgba(8,6,4,0.5) 40%,
      rgba(8,6,4,0.92) 75%,
      rgba(8,6,4,0.97) 100%
    );
  }
}
