/* ============================================================
   GONDAL GATHIYA v2 — Design System & Global Styles
   Golden Flower theme · Live Items animation · WhatsApp Cart
   ============================================================ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Gold spectrum */
  --gold-light: #FFD700;
  --gold-primary: #F5C518;
  --gold-deep: #D4A017;
  --gold-dark: #B8860B;
  --saffron: #E8A430;
  --amber: #C77D15;

  /* Backgrounds */
  --bg-dark: #1A1A1A;
  --bg-darker: #111111;
  --bg-light: #FAF5E4;
  --bg-cream: #FFF8E7;

  /* Text */
  --text-light: #FAFAFA;
  --text-dark: #2D2D2D;
  --text-muted: #999999;
  --text-gold: #F5C518;

  /* Accents */
  --border-gold: rgba(212, 160, 23, 0.3);
  --glow-gold: rgba(245, 197, 24, 0.25);
  --glass-bg: rgba(26, 26, 26, 0.6);
  --glass-border: rgba(245, 197, 24, 0.15);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-med: 0.6s var(--ease-out-expo);
  --transition-slow: 1s var(--ease-out-expo);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --topbar-height: 40px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* ── Typography ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 65ch;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--saffron), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
  0% {
    left: -75%
  }

  50% {
    left: 125%
  }

  100% {
    left: 125%
  }
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

.delay-6 {
  transition-delay: .6s
}

/* ── Image Placeholder ───────────────────────────────────── */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(245, 197, 24, 0.04));
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(245, 197, 24, 0.06) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: placeholderShimmer 4s ease infinite;
}

@keyframes placeholderShimmer {
  0% {
    background-position: 100% 100%
  }

  100% {
    background-position: 0% 0%
  }
}

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary), var(--gold-deep));
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--bg-dark);
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: var(--bg-dark);
  font-weight: 600;
}

.topbar a:hover {
  opacity: 0.8;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  height: 56px;
  border-radius: 50px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .container {
  padding: 0 28px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo-img {
  height: 32px;
}

.navbar.scrolled .nav-logo {
  font-size: 1.2rem;
}

.nav-logo .logo-gondal {
  color: var(--gold-primary);
}

.nav-logo .logo-gathiya {
  color: var(--text-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Scroll Animation Hero ───────────────────────────────── */
.scroll-animation {
  position: relative;
  height: 375vh;
  background: #0a0a0a;
}

.scroll-animation-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#scrollCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #0a0a0a;
}

/* Fallback BG before canvas loads */
.scroll-animation-sticky {
  background: url('../image/Animation/ezgif-frame-001.jpg') center/cover no-repeat;
}

/* Dark vignette overlay on canvas */
.scroll-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Typography overlay */
.scroll-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  padding: 0 var(--space-md);
}

.scroll-text-overlay .logo-overlay {
  height: 64px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-text-overlay .logo-overlay.visible {
  opacity: 1;
}

.scroll-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s var(--ease-out-expo);
}

.scroll-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-title .gold {
  color: var(--gold-primary);
  text-shadow: 0 4px 24px rgba(245, 197, 24, 0.3), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.scroll-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.2s, transform 1s var(--ease-out-expo) 0.2s;
}

.scroll-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 1s ease 0.4s;
}

.scroll-tagline.visible {
  opacity: 1;
}

.scroll-cta {
  margin-top: var(--space-lg);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
}

.scroll-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator .scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 0.5;
  }
}

/* Loading overlay */
.scroll-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  transition: opacity 0.8s ease;
}

.scroll-loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.scroll-loading-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.scroll-loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.scroll-loading-bar-fill {
  height: 100%;
  background: var(--gold-primary);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

/* Live slide real images */
.live-slide-image .live-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Heritage real images */
.heritage-grid .heritage-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 160, 23, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.heritage-grid .heritage-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.15);
}

/* Footer logo */
.footer-logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9)
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1)
  }
}

/* Floating decorative */
.hero-float {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  opacity: 0.3;
  pointer-events: none;
}

.hero-float-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.hero-float-2 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  right: 8%;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-float-3 {
  width: 35px;
  height: 35px;
  top: 40%;
  left: 48%;
  animation: float 7s ease-in-out 1s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(10deg)
  }
}

/* ── Heritage Section ────────────────────────────────────── */
.heritage {
  background: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.heritage::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  top: -10%;
  right: -10%;
  pointer-events: none;
}

.heritage-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.heritage-header .section-label {
  color: var(--amber);
}

.heritage-header .section-title {
  color: var(--text-dark);
}

.heritage-header p {
  margin: 0 auto;
  color: #666;
}

.heritage-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.heritage-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.heritage-text p:last-child {
  margin-bottom: 0;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.heritage-grid .img-placeholder {
  aspect-ratio: 4/3;
  font-size: 0.85rem;
  border-color: rgba(212, 160, 23, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.heritage-grid .img-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.15);
}

/* ── Live Items Section — Animated Showcase ──────────────── */
.live-items {
  background: var(--bg-darker);
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  min-height: 600px;
}

.live-items::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.live-items-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.live-items-header .section-title {
  color: var(--text-light);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.live-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3)
  }
}

/* Carousel */
.live-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 420px;
  z-index: 2;
}

.live-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.live-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.live-slide-image {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.live-slide.active .live-slide-image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.live-slide-image .img-placeholder {
  aspect-ratio: 4/3;
  font-size: 1rem;
  border-color: var(--border-gold);
}

.live-slide-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.live-slide.active .live-slide-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.live-slide-content h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.live-slide-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.live-slide-content .price-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-primary);
}

/* Carousel dots */
.live-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-lg);
  position: relative;
  z-index: 2;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.2);
  border: none;
  transition: all var(--transition-fast);
}

.live-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--glow-gold);
  transform: scale(1.2);
}

.live-dot:hover {
  background: rgba(245, 197, 24, 0.5);
}

/* Progress bar under carousel */
.live-progress {
  max-width: 300px;
  margin: var(--space-md) auto 0;
  height: 3px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.live-progress-bar {
  height: 100%;
  background: var(--gold-primary);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s linear;
}

.live-progress-bar.animating {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}

/* ── Shopping Section ────────────────────────────────────── */
.shopping {
  background: var(--bg-dark);
  position: relative;
}

.shopping::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.06), transparent 70%);
  bottom: -15%;
  left: -10%;
  pointer-events: none;
}

.shopping-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.shopping-header p {
  margin: 0 auto;
}

.shopping-note {
  text-align: center;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.shopping-note .wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 0.9rem;
}

/* Product Carousel */
.product-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: var(--space-sm) 0;
  contain: content;
}

.product-carousel:hover .product-carousel-track {
  animation-play-state: paused;
}

.product-carousel-track {
  display: flex;
  gap: var(--space-md);
  animation: carouselScroll 60s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

@keyframes carouselScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.product-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 240px;
  max-width: 280px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.15);
  border-color: rgba(245, 197, 24, 0.35);
}

.product-card .product-img-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.product-card .product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-info {
  padding: var(--space-md);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-weight {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.product-price .currency {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 2px;
}

.btn-buy-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #25D366;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-buy-wa:hover {
  background: #22c55e;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-buy-wa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact {
  background: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06), transparent 70%);
  top: -10%;
  left: -5%;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-header .section-label {
  color: var(--amber);
}

.contact-header .section-title {
  color: var(--text-dark);
}

.contact-header p {
  margin: 0 auto;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.1);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  background: #f8f5ef;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.1);
  transition: transform var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-info-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(212, 160, 23, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.contact-info-card h4 {
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #666;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  color: var(--gold-deep);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-info a {
  display: inline;
  padding: 0;
  color: var(--gold-primary);
}

.footer-contact-info p {
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .scroll-animation {
    height: 300vh;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .heritage-body {
    grid-template-columns: 1fr;
  }

  .live-slide {
    grid-template-columns: 1fr;
    text-align: center;
    height: auto;
  }

  .live-carousel {
    height: auto;
    min-height: 500px;
  }

  .live-slide-image .img-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }

  .product-card {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .scroll-animation {
    height: 225vh;
  }

  .scroll-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .scroll-subtitle {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }

  .scroll-text-overlay .logo-overlay {
    height: 48px;
  }

  .topbar-left {
    display: none;
  }

  .topbar .container {
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-med);
    border-left: 1px solid var(--glass-border);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-light);
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .live-carousel {
    min-height: 600px;
  }

  .live-slide {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-card {
    min-width: 160px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .scroll-animation {
    height: 188vh;
  }

  .btn {
    width: 100%;
  }

  .product-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  .btn-buy-wa {
    width: 100%;
    justify-content: center;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Selection */
::selection {
  background: rgba(245, 197, 24, 0.25);
  color: var(--text-light);
}