/* ═══════════════════════════════════════════════
   DINE ELITE — Static Site Styles
   Elegant, warm, modern design
═══════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --c-primary: #D4580B;
  --c-primary-light: #F48C06;
  --c-primary-dark: #B84408;
  --c-secondary: #1B4332;
  --c-secondary-light: #2D6A4F;
  --c-bg: #FFFBF5;
  --c-bg-warm: #FFF5EB;
  --c-bg-cool: #F0EDE8;
  --c-surface: #FFFFFF;
  --c-surface-hover: #FFF9F2;
  --c-text: #1A1A1A;
  --c-text-secondary: #5A5A5A;
  --c-text-muted: #8A8A8A;
  --c-border: #E8E2DA;
  --c-border-light: #F0ECE5;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-py: clamp(64px, 8vw, 120px);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.04);
  --shadow-glow: 0 8px 30px rgba(212, 88, 11, 0.25);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 100px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════
   FESTIVAL THEMES
═══════════════════════════════════════════════ */
[data-theme="ramadan"] {
  --c-primary: #0D7C3E;
  --c-primary-light: #10A84E;
  --c-primary-dark: #095C2E;
  --c-secondary: #1A1A2E;
}
[data-theme="ramadan"] .marquee-section {
  background: linear-gradient(90deg, #0D7C3E, #145A32, #0D7C3E);
}

[data-theme="eid-fitr"] {
  --c-primary: #E8B931;
  --c-primary-light: #F5D76E;
  --c-primary-dark: #C49B1C;
  --c-secondary: #2C3E50;
}

[data-theme="eid-adha"] {
  --c-primary: #8B4513;
  --c-primary-light: #A0522D;
  --c-primary-dark: #6B3410;
  --c-secondary: #1B4332;
}

[data-theme="independence"] {
  --c-primary: #006233;
  --c-primary-light: #00873E;
  --c-primary-dark: #004D28;
  --c-secondary: #FFFFFF;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(212, 88, 11, 0.04);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENT BANNER
═══════════════════════════════════════════════ */
.site-banner {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 999;
  position: relative;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease, padding 0.4s var(--ease);
}
.site-banner.site-banner--visible {
  max-height: 60px;
  opacity: 1;
  padding: 10px 0;
}

.site-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.site-banner__text {
  flex: 1;
  line-height: 1.4;
}

.site-banner__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0 4px;
}
.site-banner__close:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-light);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar--scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 251, 245, 0.95);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-text);
  transition: opacity 0.2s;
}
.navbar__logo:hover { opacity: 0.8; }
.navbar__logo-icon { font-size: 1.5rem; }
.navbar__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: color 0.2s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--c-text);
}
.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-top: 1px solid var(--c-border-light);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--c-text-secondary);
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: var(--c-bg-warm);
  color: var(--c-primary);
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  transition: padding-top 0.4s var(--ease);
}
body.has-banner .hero {
  padding-top: calc(72px + 44px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 75% 35%, rgba(212, 88, 11, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 65%, rgba(27, 67, 50, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(244, 140, 6, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 50%, var(--c-bg) 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 88, 11, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating emoji decorations */
.hero__floats {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  filter: grayscale(0.3);
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero__float--1 { top: 12%; right: 18%; animation: floatA 6s ease-in-out infinite; font-size: 2.4rem; }
.hero__float--2 { top: 28%; right: 8%; animation: floatB 7s ease-in-out infinite 1s; font-size: 1.8rem; }
.hero__float--3 { bottom: 30%; right: 22%; animation: floatA 5s ease-in-out infinite 0.5s; font-size: 1.6rem; }
.hero__float--4 { bottom: 20%; right: 6%; animation: floatB 8s ease-in-out infinite 2s; font-size: 2rem; }
.hero__float--5 { top: 55%; right: 14%; animation: floatA 7s ease-in-out infinite 1.5s; font-size: 1.5rem; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-14px) rotate(3deg); }
  75% { transform: translateY(8px) rotate(-2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(-4deg); }
  66% { transform: translateY(12px) rotate(3deg); }
}

/* Two-column layout */
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px) 0;
}

/* Left column */
.hero__left {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 88, 11, 0.08);
  border: 1px solid rgba(212, 88, 11, 0.15);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title--accent {
  color: var(--c-primary);
  position: relative;
  display: inline-block;
}
.hero__title--accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(212, 88, 11, 0.3), rgba(244, 140, 6, 0.15));
  border-radius: 3px;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--c-text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-muted);
}
.hero__trust-item svg {
  color: var(--c-secondary);
}

/* ── Right column: Image collage ── */
.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.hero__img-grid {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

.hero__img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}

.hero__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main center image */
.hero__img-card--main {
  width: 62%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 3px solid white;
  animation: heroImgMain 4s ease-in-out infinite;
}
.hero__img-card--main:hover {
  transform: translate(-50%, -50%) scale(1.03);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 88, 11, 0.15);
}

@keyframes heroImgMain {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

/* Top-left image */
.hero__img-card--top {
  width: 38%;
  aspect-ratio: 1;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  animation: heroImgTop 5s ease-in-out infinite 0.5s;
}
.hero__img-card--top:hover {
  transform: rotate(-2deg) scale(1.05) !important;
  box-shadow: var(--shadow-xl);
}

@keyframes heroImgTop {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

/* Bottom-right image */
.hero__img-card--bottom {
  width: 38%;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  animation: heroImgBottom 5.5s ease-in-out infinite 1s;
}
.hero__img-card--bottom:hover {
  transform: rotate(3deg) scale(1.05) !important;
  box-shadow: var(--shadow-xl);
}

@keyframes heroImgBottom {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-8px); }
}

/* Badge on main image */
.hero__img-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

/* ── Floating stat cards ── */
.hero__stat-card {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 8px 12px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--c-border-light);
}

.hero__stat-card--rating {
  top: 2%;
  right: 2%;
  animation: heroStatFloat 4s ease-in-out infinite 0.5s;
}
.hero__stat-card--orders {
  bottom: 2%;
  left: 2%;
  animation: heroStatFloat 5s ease-in-out infinite 1.5s;
}

.hero__stat-card__stars {
  display: flex;
  gap: 1px;
}

.hero__stat-card__number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.1;
}

.hero__stat-card__text {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}

@keyframes heroStatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Scroll indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: var(--c-border);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--c-primary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ── Hero responsive — Premium Shelf Layout (mobile) ── */
@keyframes heroImgReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shelfFloatMain {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1); }
}

@keyframes shelfFloatTop {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-5px) translateX(2px) scale(1); }
}

@keyframes shelfFloatBottom {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-4px) translateX(-2px) scale(1); }
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__left {
    max-width: 100%;
    text-align: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__right {
    min-height: unset;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Shelf layout */
  .hero__img-grid {
    max-width: 100%;
    aspect-ratio: unset;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    padding: 20px 16px 12px;
    position: relative;
  }

  .hero__img-card {
    position: relative;
    animation: none !important;
    transform: none !important;
    will-change: transform;
  }

  /* Staggered shelf pattern */
  .hero__img-card--top {
    width: 28%;
    min-width: 85px;
    aspect-ratio: 1;
    order: 1;
    transform: translateY(16px) rotate(-2deg) scale(0.92) !important;
    z-index: 1;
  }
  .hero__img-card--main {
    width: 36%;
    min-width: 110px;
    aspect-ratio: 1;
    order: 2;
    z-index: 3;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) scale(1) !important;
  }
  .hero__img-card--bottom {
    width: 28%;
    min-width: 85px;
    aspect-ratio: 1;
    order: 3;
    transform: translateY(12px) rotate(2deg) scale(0.92) !important;
    z-index: 1;
  }

  /* Reveal animations */
  .hero__img-grid.hero-shelf-animate .hero__img-card--main {
    animation: heroImgReveal 0.6s var(--ease-out) 0.2s both, shelfFloatMain 3s ease-in-out 1s infinite !important;
  }
  .hero__img-grid.hero-shelf-animate .hero__img-card--top {
    animation: heroImgReveal 0.6s var(--ease-out) 0.5s both, shelfFloatTop 3.5s ease-in-out 1.2s infinite !important;
  }
  .hero__img-grid.hero-shelf-animate .hero__img-card--bottom {
    animation: heroImgReveal 0.6s var(--ease-out) 0.8s both, shelfFloatBottom 4s ease-in-out 1.4s infinite !important;
  }

  /* Shelf shadow */
  .hero__img-grid.hero-shelf-animate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 16px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
  }

  .hero__img-card__badge {
    font-size: 0.65rem;
    padding: 4px 8px;
    bottom: 8px;
    left: 8px;
  }

  .hero__stat-card {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    animation: none;
    padding: 10px 16px;
  }
  .hero__stat-card__number { font-size: 1.2rem; }
  .hero__stat-card__text { font-size: 0.75rem; }
  .hero__right {
    /* Stack stat cards inline below images */
  }
  .hero__right > .hero__stat-card--rating,
  .hero__right > .hero__stat-card--orders {
    position: static;
  }
  .hero__floats { display: none; }
}

@media (max-width: 480px) {
  .hero__img-card {
    min-width: 80px;
    border-radius: var(--r-md);
    border-width: 2px;
  }
  .hero__img-card--main {
    min-width: 100px;
  }
  .hero__img-card--top {
    min-width: 75px;
  }
  .hero__img-card--bottom {
    min-width: 75px;
  }
  .hero__img-card__badge {
    font-size: 0.6rem;
    padding: 3px 6px;
    bottom: 6px;
    left: 6px;
  }
  .hero__stat-card {
    padding: 8px 12px;
  }
  .hero__stat-card__number { font-size: 1.1rem; }
  .hero__stat-card__text { font-size: 0.7rem; }
  .hero__scroll { display: none; }
}

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-section {
  padding: 28px 0;
  background: var(--c-secondary);
  overflow: hidden;
}

.marquee {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee:hover {
  animation-play-state: paused;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item span.emoji {
  font-size: 1.1rem;
}
.marquee__dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTIONS (shared)
═══════════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__title span {
  color: var(--c-primary);
}

.section__desc {
  font-size: 1rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════ */
.products-section {
  background: var(--c-surface);
}

.products__tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.products__tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  background: transparent;
  color: var(--c-text-secondary);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.products__tab:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.products__tab.active {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 88, 11, 0.15);
}

.product-card__img {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-bg-cool);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img img {
  transform: scale(1.06);
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--c-primary);
  color: white;
}

.product-card__body {
  padding: 20px;
}

.product-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
}
.product-card__price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-muted);
}

.product-card__btn {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--c-bg-warm);
  color: var(--c-primary);
  border: 1px solid rgba(212, 88, 11, 0.12);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-card__btn:hover {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.how-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(212, 88, 11, 0.25);
}

.how-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.how-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.how-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════
   CUSTOMER REVIEWS / COMMENT SYSTEM
═══════════════════════════════════════════════ */
.reviews-section {
  background: var(--c-bg-warm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.comment-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.comment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comment-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.comment-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}
.comment-card__stars .star-empty {
  opacity: 0.2;
}

.comment-card__text {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.comment-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comment-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-text);
}

.comment-card__label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* Reuse existing review-card styles for backward compat */
.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-text);
}

.review-card__label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* Empty state */
.comment-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--c-text-muted);
  font-size: 1rem;
  grid-column: 1 / -1;
}
.comment-empty__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

/* Comment form */
.comment-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.comment-form:hover {
  box-shadow: var(--shadow-lg);
}

.comment-form__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  text-align: center;
}

.comment-form__group {
  margin-bottom: 20px;
}

.comment-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-secondary);
  margin-bottom: 8px;
}

.comment-form__input,
.comment-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.comment-form__input::placeholder,
.comment-form__textarea::placeholder {
  color: var(--c-text-muted);
}
.comment-form__input:focus,
.comment-form__textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(212, 88, 11, 0.1);
}
.comment-form__input.input-error,
.comment-form__textarea.input-error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.comment-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.comment-form__stars {
  display: flex;
  gap: 4px;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--c-border);
  transition: color 0.2s ease, transform 0.15s ease;
  padding: 0;
  line-height: 1;
}
.star-btn:hover {
  transform: scale(1.15);
}
.star-btn.active {
  color: #F59E0B;
}

.comment-form__error {
  display: block;
  font-size: 0.78rem;
  color: #DC2626;
  min-height: 18px;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.comment-form__submit {
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 0.92rem;
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--c-secondary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100vw - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast-notification.toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .comment-form {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section {
  background: var(--c-surface);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}

.about__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  z-index: -1;
  opacity: 0.6;
}

.about__content {
  padding: 20px 0;
}

.about__text {
  font-size: 1rem;
  color: var(--c-text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-stat {
  padding: 20px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--c-border-light);
  transition: transform 0.3s var(--ease);
}
.about-stat:hover {
  transform: translateY(-3px);
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.1;
}

.about-stat__label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image-inner {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--c-bg);
}

.contact__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-text-secondary);
}
.contact__info-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer__logo-icon {
  font-size: 1.3rem;
}
.footer__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.footer__social:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.footer__social:hover svg {
  color: white;
}
.footer__social svg {
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer__list li {
  margin-bottom: 8px;
}
.footer__list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__list a:hover {
  color: var(--c-primary-light);
}

.footer__dev-credit {
  padding: 20px 0 8px;
  text-align: center;
}
.footer__dev-line {
  font-size: 0.88rem;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 0.02em;
}
.footer__dev-line a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__dev-line a:hover {
  color: #FFEC8B;
  text-decoration: underline;
}

.footer__bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-text-muted); }

/* ═══════════════════════════════════════════════
   LOADING SKELETON
═══════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f0ece5 25%, #f8f5f0 50%, #f0ece5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ═══════════════════════════════════════════════
   PRODUCT CARD ENTRANCE
═══════════════════════════════════════════════ */
.product-card,
.review-card,
.comment-card,
.how-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              box-shadow 0.4s var(--ease), border-color 0.3s;
}
.product-card.visible,
.review-card.visible,
.comment-card.visible,
.how-card.visible {
  opacity: 1;
  transform: translateY(0);
}
