/* ============================================================
   RICH DEER PATISSERIE — MAIN STYLESHEET
   Professional Light Theme · Gold & Cream Color System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600;700&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* ─── COLOR PALETTE — Warm Ivory · Sage Green · Gold ─── */
  /* Primary: Rich Gold (10% accent premium) */
  --gold-deep: #B8960C;
  /* Gold gelap untuk teks & ikon aktif */
  --gold-primary: #D4AF37;
  /* Rich Gold utama — CTA & aksen */
  --gold-light: #E8D9A0;
  /* Gold pucat — border & divider */
  --gold-pale: #F4EFE6;
  /* Soft Cream — hover background */

  /* Background: Warm Ivory (70% dominan) */
  --cream-bg: #FAF8F3;
  /* Warm Ivory — background utama */
  --cream-mid: #F4EFE6;
  /* Soft Cream — surface card & section */
  --cream-warm: #EDE8DC;
  /* Transisi cream hangat */

  /* Secondary: Sage Green (20% identitas natural) */
  --sage-primary: #A8B69A;
  /* Sage Green — border, badge, label */
  --sage-deep: #5E6E59;
  /* Forest Green — accent teks & ikon */
  --sage-light: #D4DDD0;
  /* Sage muda — background pill/tag */

  /* Text: Charcoal */
  --brown-dark: #2B2B2B;
  /* Charcoal — heading utama */
  --brown-mid: #4A4A4A;
  /* Abu gelap — subheading */
  --brown-text: #5E6E59;
  /* Forest Green — aksen teks */
  --text-primary: #2B2B2B;
  /* Charcoal — teks utama */
  --text-secondary: #6B7B65;
  /* Sage-charcoal — teks sekunder */
  --text-muted: #9BA895;
  /* Sage muda — teks placeholder */

  /* Neutrals */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --footer-bg: #A8B69A;
  /* Sage Green — footer */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  /* untuk brand name navbar */
  --font-sans: 'Jost', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows — disesuaikan ke Sage Green shadow */
  --shadow-sm: 0 2px 8px rgba(94, 110, 89, 0.08);
  --shadow-md: 0 8px 24px rgba(94, 110, 89, 0.12);
  --shadow-lg: 0 16px 48px rgba(94, 110, 89, 0.16);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(168, 182, 154, 0.12);
  border: 1px solid var(--sage-primary);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.divider-gold {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  margin: 1rem auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  transition: all var(--trans-mid);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-primary) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-deep);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  padding: 0 0 0.2rem;
  border-radius: 0;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.btn-ghost:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* ─── HEADER / NAVBAR ────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 182, 154, 0.25);
  transition: all var(--trans-mid);
}

#header.scrolled {
  background: rgba(250, 248, 243, 0.99);
  box-shadow: 0 4px 20px rgba(94, 110, 89, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond';
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--brown-dark);
  line-height: 1.1;
}

.nav-brand-sub {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--trans-fast);
}

.nav-link:hover {
  color: var(--gold-deep);
}

.nav-link:hover::after {
  width: 60%;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans-fast);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  transition: all var(--trans-fast);
}

.nav-dropdown a:hover {
  color: var(--gold-deep);
  background: var(--gold-pale);
}

.nav-chevron {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform var(--trans-fast);
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--trans-fast);
}

.nav-icon-btn:hover {
  color: var(--gold-deep);
  background: var(--gold-pale);
}

.cart-badge {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold-deep);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: background var(--trans-fast);
}

.nav-burger:hover {
  background: var(--gold-pale);
}

.burger-line {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.25s ease,
              top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              width 0.25s ease;
  transform-origin: center;
}

.burger-line:nth-child(1) { top: 12px; }
.burger-line:nth-child(2) { top: 19px; }
.burger-line:nth-child(3) { top: 26px; width: 14px; margin-left: 0; }

/* Open state — morphs into X */
.nav-burger.is-open .burger-line:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-burger.is-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open .burger-line:nth-child(3) {
  top: 19px;
  width: 22px;
  transform: rotate(-45deg);
}

/* ─── HERO SLIDER ────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 44px;
}

.hero-slides {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(250, 248, 243, 0.88) 0%,
      rgba(244, 239, 230, 0.68) 40%,
      rgba(244, 239, 230, 0.12) 65%,
      transparent 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-text {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s 0.2s ease forwards;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.55s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-social svg {
  width: 14px;
  height: 14px;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.hero-dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: var(--radius-full);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253, 250, 244, 0.85);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-deep);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--trans-fast);
  z-index: 10;
}

.hero-arrow:hover {
  background: var(--gold-primary);
  color: white;
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
  left: 2rem;
}

.hero-arrow-next {
  right: 2rem;
}

/* ─── ABOUT / KENALI KAMI ────────────────────────────────── */
#about {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {}

.about-text .section-label {
  display: block;
  width: fit-content;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.stat-item {}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(253, 250, 244, 0.92);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 1.4rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all var(--trans-mid);
  box-shadow: 0 8px 32px rgba(139, 105, 20, 0.2);
}

.about-video-btn:hover {
  background: var(--gold-primary);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.about-badge-halal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-badge-halal span {
  font-size: 1.2rem;
}

/* ─── CATEGORIES ─────────────────────────────────────────── */
#categories {
  padding: var(--space-2xl) 0;
  background: var(--cream-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 31, 20, 0.75) 0%, rgba(44, 31, 20, 0.1) 55%, transparent 100%);
  transition: background var(--trans-mid);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(139, 105, 20, 0.7) 0%, rgba(44, 31, 20, 0.1) 60%, transparent 100%);
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.75rem;
}

.cat-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.cat-divider {
  width: 36px;
  height: 1.5px;
  background: var(--gold-light);
  margin-bottom: 0.8rem;
  transition: width var(--trans-mid);
}

.cat-card:hover .cat-divider {
  width: 60px;
}

.cat-explore {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--trans-mid);
}

.cat-card:hover .cat-explore {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PRODUK TERLARIS ────────────────────────────────────── */
#bestsellers {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-carousel-wrap {
  position: relative;
}

.product-carousel {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--trans-slow);
  width: 100%;
}

.product-card {
  flex: 0 0 calc(25% - 1.125rem);
  background: var(--cream-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-mid);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-mid);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--gold-deep);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.product-wishlist {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 250, 244, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--trans-fast);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist:hover {
  background: var(--white);
  color: #e74c3c;
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.3rem;
}

.product-weight {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.product-price-old {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
  font-weight: 400;
}

.btn-cart {
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.7rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.carousel-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: white;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.carousel-dot.active {
  background: var(--gold-primary);
  width: 22px;
  border-radius: 4px;
}

/* ─── PILIHAN BULAN INI ──────────────────────────────────── */
#monthly {
  padding: var(--space-2xl) 0;
  background: var(--cream-bg);
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ─── PROMO BANNER ───────────────────────────────────────── */
#promo {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.promo-banner {
  display: grid;
  grid-template-columns: 55% 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
}

.promo-img-side {
  position: relative;
  overflow: hidden;
}

.promo-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.promo-banner:hover .promo-img-side img {
  transform: scale(1.04);
}

.promo-text-side {
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
}

.promo-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.promo-text-side .btn {
  margin-top: 0.5rem;
}

/* ─── LAYANAN KAMI ───────────────────────────────────────── */
#services {
  padding: var(--space-2xl) 0;
  background: var(--cream-bg);
}

.services-header {
  margin-bottom: 2.5rem;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.services-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
  filter: brightness(0.85);
}

.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 31, 20, 0.7) 0%, transparent 60%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
}

.service-card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 250, 244, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
  transition: all var(--trans-fast);
}

.service-card:hover .service-card-icon {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* service placeholder for missing images */
.service-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-warm), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ─── MITRA / PARTNERS ───────────────────────────────────── */
#partners {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.partners-label {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--white), transparent);
}

.partners-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: scrollPartners 24s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  background: var(--cream-bg);
  min-width: 140px;
  transition: all var(--trans-fast);
  cursor: pointer;
}

.partner-logo:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.4) opacity(0.8);
  transition: filter var(--trans-fast);
}

.partner-logo:hover img {
  filter: grayscale(0) opacity(1);
}

.partner-logo-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
}

.partner-logo:hover .partner-logo-text {
  color: var(--gold-deep);
}

/* ─── CTA + NEWSLETTER ───────────────────────────────────── */
#cta {
  padding: var(--space-xl) 0;
  background: var(--cream-mid);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.cta-divider-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

.cta-block {
  text-align: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-text);
  cursor: pointer;
  transition: all var(--trans-fast);
  box-shadow: var(--shadow-sm);
}

.cta-wa-btn:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.cta-wa-icon {
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans-fast);
}

.newsletter-form:focus-within {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
  border-color: var(--gold-primary);
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 0.85rem 1.5rem;
  background: var(--gold-deep);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.newsletter-btn:hover {
  background: var(--gold-primary);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-md);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand-sub {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-halal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: var(--white);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

/* ─── FLOATING WA BUTTON ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--trans-fast);
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1.5px solid var(--gold-light);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--trans-mid);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold-primary);
  color: white;
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ─── MOBILE NAV DRAWER ─────────────────────────────────── */

/* Backdrop overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 35, 28, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1048;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel — slides in from left */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1049;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  opacity: 1;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 8px 0 40px rgba(43,35,28,0.18);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
  pointer-events: auto;
}

/* Drawer header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--sage-light);
  background: var(--cream-bg);
  flex-shrink: 0;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.mobile-nav-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.mobile-nav-brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown-dark);
  line-height: 1.1;
}

.mobile-nav-brand-text span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--trans-fast);
  background: transparent;
}

.mobile-nav-close:hover {
  background: var(--gold-pale);
  color: var(--gold-deep);
}

/* Nav links list */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  flex: 1;
}

.mobile-nav-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}

/* Stagger animation when open */
.mobile-nav.open .mobile-nav-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.13s; }
.mobile-nav.open .mobile-nav-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.18s; }
.mobile-nav.open .mobile-nav-item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.23s; }
.mobile-nav.open .mobile-nav-item:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sage-primary);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--brown-dark);
  background: var(--cream-bg);
  border-left-color: var(--gold-primary);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  color: var(--gold-primary);
}

/* Divider inside drawer */
.mobile-nav-divider {
  height: 1px;
  background: var(--sage-light);
  margin: 0.5rem 1.5rem;
  opacity: 0.6;
}

/* Footer inside drawer */
.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--sage-light);
  background: var(--cream-bg);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
}

.mobile-nav-footer-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.mobile-nav-socials {
  display: flex;
  gap: 0.65rem;
}

.mobile-nav-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--sage-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.mobile-nav-social:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
}

.mobile-nav-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .about-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .nav-menu,
  .nav-actions .nav-icon-btn:not(.cart-badge) {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  #hero {
    height: auto;
    aspect-ratio: 5/3;
    min-height: unset;
  }

  .hero-slides {
    aspect-ratio: 4/3;
  }

  .hero-slide img {
    object-fit: cover;
  }

  .hero-arrow {
    display: none;
  }

  .hero-text {
    max-width: 90%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrap {
    order: -1;
  }


  .about-title {
    display: ruby;
  }

  .about-img-accent {
    width: 120px;
    height: 120px;
    left: -16px;
    bottom: -16px;
  }

  .about-stats {
    gap: 1.5rem;
  }

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

  .cat-card {
    aspect-ratio: 16/9;
  }

  .product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .monthly-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .monthly-grid .product-card {
    flex: none;
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }

  .promo-img-side {
    min-height: 260px;
  }

  .promo-text-side {
    padding: 2.5rem 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    aspect-ratio: 16/9;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-divider-line {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .hero-slides {
    aspect-ratio: 1/1;
  }

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

  .product-card {
    flex: 0 0 100%;
  }

  .about-stats {
    flex-wrap: wrap;
  }
}