/* ===================================================
   THE HAMPER DELIGHTS — Main Stylesheet
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:       #FDF8FB;
  --cream-dark:  #F5EEF3;
  --navy:        #1B2B6B;
  --navy-light:  #2D3F8F;
  --navy-pale:   #EEF1FA;
  --pink:        #D4547A;
  --pink-light:  #E8729A;
  --rose:        #C4427A;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7A7A;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { color: var(--text-mid); }

/* --- Utility --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--pink); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,43,107,0.3);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,43,107,0.4);
}
.btn-gold {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,84,122,0.35);
}
.btn-gold:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,84,122,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,43,107,0.25);
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-whatsapp:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,43,107,0.35);
}
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ===================================================
   HEADER & NAV
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(253,248,251,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .mobile-nav-cta { margin-top: 8px; }

/* ===================================================
   HERO SLIDER — Premium Redesign
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 960px;
  overflow: hidden;
  background: #050d2e;
}

/* Slides with zoom-in animation */
.hero-slides { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}
.hero-slide.active img { transform: scale(1); }

/* Overlays */
.hero-overlay-base {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5,13,46,0.78) 0%,
    rgba(5,13,46,0.45) 50%,
    rgba(5,13,46,0.15) 100%
  );
}
.hero-overlay-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Decorative corner frame */
.hero-frame { position: absolute; inset: 28px; z-index: 3; pointer-events: none; }
.hero-frame span {
  position: absolute;
  width: 48px; height: 48px;
  border-color: rgba(212,84,122,0.5);
  border-style: solid;
}
.hero-frame-tl { top: 0; left: 0; border-width: 1.5px 0 0 1.5px; }
.hero-frame-tr { top: 0; right: 0; border-width: 1.5px 1.5px 0 0; }
.hero-frame-bl { bottom: 0; left: 0; border-width: 0 0 1.5px 1.5px; }
.hero-frame-br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: rgba(212,84,122,0.35);
  border-color: var(--pink-light);
}
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* Main content layout */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hero-text-block { max-width: 600px; }

/* Tag line */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 24px;
}
.hero-tag-line {
  display: block;
  width: 36px; height: 1px;
  background: var(--pink-light);
  opacity: 0.7;
}

/* Title — stacked lines */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.hero-title-top {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.hero-title-mid {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
}
.hero-title-mid em {
  font-style: italic;
  color: var(--pink-light);
  -webkit-text-stroke: 0px;
}
.hero-title-bot {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* Subtitle */
.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* Actions */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.hero-btn-ghost:hover {
  border-color: var(--pink-light);
  color: var(--pink-light);
  background: rgba(212,84,122,0.08);
}

/* Slide counter */
.hero-counter-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 20px;
}
.hero-counter-current {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-counter-line {
  width: 2px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hero-counter-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--pink-light);
  border-radius: 2px;
  height: 0%;
  transition: height 5s linear;
}
.hero-counter-total {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-slide-labels {
  flex: 1;
  display: flex;
}
.hero-slide-label {
  flex: 1;
  padding: 16px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.hero-slide-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.hero-slide-label.active {
  color: var(--pink-light);
}
.hero-slide-label.active::after { transform: scaleX(1); }
.hero-slide-label:hover { color: rgba(255,255,255,0.7); }
.hero-dots-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--pink-light);
  width: 20px;
  border-radius: 3px;
}

/* Hero text entrance animation */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text-block { animation: heroSlideUp 1s ease 0.3s both; }

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--navy-light); }
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--pink-light); }
.trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.trust-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

/* ===================================================
   CATEGORIES SECTION
   =================================================== */
.categories-section {
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.category-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-pale), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover, .category-card.active {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card:hover::before, .category-card.active::before { opacity: 1; }
.category-icon {
  width: 64px; height: 64px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.category-card:hover .category-icon, .category-card.active .category-icon {
  background: var(--navy);
}
.category-icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy);
  transition: stroke var(--transition);
}
.category-card:hover .category-icon svg,
.category-card.active .category-icon svg {
  stroke: var(--white);
}
.category-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.category-card span {
  font-size: 0.75rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ===================================================
   PRODUCT CARDS & GRID
   =================================================== */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-badge.new-badge { background: var(--navy); }
.product-badge.sale-badge { background: #E05252; }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,107,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-category-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  font-family: 'Playfair Display', serif;
}
.product-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.product-price {
  display: flex;
  flex-direction: column;
}
.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.price-original {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.btn-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-card-wa:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-card-wa svg { width: 16px; height: 16px; }

/* Empty state */
.products-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px 24px;
}
.products-empty p { color: var(--text-light); font-size: 1.1rem; }

/* ===================================================
   ABOUT / STORY SECTION
   =================================================== */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-images {
  position: relative;
}
.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-stat-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.story-stat-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--pink-light);
}
.story-stat-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.8); }
.story-content { padding: 20px 0; }
.story-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.story-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.story-value-icon {
  width: 36px; height: 36px;
  background: var(--navy-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-value-icon svg { width: 18px; height: 18px; stroke: var(--navy); }
.story-value strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.story-value p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-section { background: var(--cream-dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--navy-pale), var(--pink-light), var(--navy-pale));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 88px; height: 88px;
  background: var(--white);
  border: 3px solid var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover .step-number {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.step-number svg { width: 32px; height: 32px; stroke: var(--navy); transition: stroke var(--transition); }
.step-card:hover .step-number svg { stroke: var(--white); }
.step-num-label {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h4 {
  font-size: 0.975rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.step-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-label { color: var(--pink-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars span { color: var(--pink-light); font-size: 1rem; }
.testimonial-card blockquote {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-author span { font-size: 0.775rem; color: rgba(255,255,255,0.6); }
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.testimonials-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonials-nav button:hover { background: rgba(255,255,255,0.3); }
.testimonials-nav button svg { width: 20px; height: 20px; stroke: currentColor; }
.testimonials-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active {
  background: var(--pink-light);
  width: 24px;
  border-radius: 4px;
}

/* ===================================================
   OCCASION BANNER STRIP
   =================================================== */
.occasions-section { background: var(--white); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.occasion-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.occasion-pill:hover {
  background: var(--navy-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.occasion-emoji { font-size: 2rem; }
.occasion-pill span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 0;
}
.cta-text .section-label { color: var(--pink-light); }
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.8); max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===================================================
   INSTAGRAM STRIP
   =================================================== */
.instagram-section { background: var(--cream-dark); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,107,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 28px; height: 28px; stroke: var(--white); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #080f2e;
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo img { height: 72px; width: auto; object-fit: contain; margin-bottom: 20px; background: white; border-radius: 8px; padding: 6px 10px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--pink); color: var(--white); }
.social-link svg { width: 18px; height: 18px; stroke: currentColor; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--pink-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--pink); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--pink-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--pink-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===================================================
   SHOP PAGE FILTERS
   =================================================== */
.shop-controls {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}
.shop-controls-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--cream);
  border: 2px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.shop-count {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===================================================
   PRODUCT DETAIL PAGE
   =================================================== */
.product-detail { padding: 60px 0 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery {}
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
  margin-bottom: 16px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-info {}
.product-info .product-category-tag { margin-bottom: 12px; display: block; }
.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.product-price-row .price-current {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 700;
}
.product-price-row .price-original {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.product-includes {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}
.product-includes h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.product-includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-includes li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-includes li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.product-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.occasion-tag {
  padding: 5px 14px;
  background: var(--navy-pale);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.product-actions { display: flex; flex-direction: column; gap: 12px; }
.product-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.product-note svg { width: 16px; height: 16px; stroke: var(--navy); flex-shrink: 0; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 52px; height: 52px;
  background: var(--navy-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 24px; height: 24px; stroke: var(--navy); }
.contact-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
}
.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--navy); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.team-section { background: var(--cream); }
.values-section { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card-icon {
  width: 72px; height: 72px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.value-card:hover .value-card-icon { background: var(--navy); }
.value-card-icon svg { width: 32px; height: 32px; stroke: var(--navy); transition: stroke var(--transition); }
.value-card:hover .value-card-icon svg { stroke: var(--white); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; line-height: 1.7; }

/* ===================================================
   WHATSAPP FLOAT BUTTON
   =================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===================================================
   ORDER MODAL
   =================================================== */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,40,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal-overlay.open { display: flex; }

.order-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(10,15,40,0.18);
  position: relative;
  animation: modalIn .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.order-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none; border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.order-modal-close:hover { background: var(--cream-dark); color: var(--text-dark); }

.order-modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.order-modal-product {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-option-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.order-option-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.order-option-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.order-option-btn .option-label { display: flex; flex-direction: column; }
.order-option-btn .option-label strong { line-height: 1.2; }
.order-option-btn .option-label span  { font-size: .78rem; font-weight: 400; opacity: .75; margin-top: 2px; }

/* WhatsApp */
.order-option-btn.opt-wa {
  background: #e7faf0;
  color: #1a7a3f;
  border-color: #b2e8c8;
}
.order-option-btn.opt-wa:hover { border-color: #25d366; }

/* SMS */
.order-option-btn.opt-sms {
  background: var(--navy-pale);
  color: var(--navy);
  border-color: #d0d8f5;
}
.order-option-btn.opt-sms:hover { border-color: var(--navy-light); }

/* Email */
.order-option-btn.opt-email {
  background: #fdf2f5;
  color: var(--rose);
  border-color: #f5cdd8;
}
.order-option-btn.opt-email:hover { border-color: var(--pink); }

.order-modal-note {
  margin-top: 20px;
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
