/* ==============================================
   Zainy's Delights — style.css  (Production v3)
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:wght@400;500;600;700;800;900&family=Dancing+Script:wght@600;700&display=swap');

/* ─── Design Tokens ─────────────────────────── */
:root {
  /* Brand colours */
  --blue:          #1EAEF5;
  --blue-dark:     #0277BD;
  --blue-light:    #E0F4FF;
  --blue-mid:      #B3E5FC;
  --pink:          #FF6FB7;
  --pink-light:    #FFE4F3;
  --pink-dark:     #E91E8C;
  --cream:         #FFF9F2;
  --text:          #2E1F2F;
  --text-soft:     #7A5F6A;
  --gold:          #FFD740;
  --gold-dark:     #F9A825;
  --mint:          #00E5C3;
  --mint-light:    #DFFFF9;
  --purple-light:  #F3E5F5;

  /* Gradients */
  --grad-pink:   linear-gradient(135deg, #FF6FB7, #E91E8C);
  --grad-blue:   linear-gradient(135deg, #1EAEF5, #0277BD);
  --grad-candy:  linear-gradient(135deg, #FF6FB7 0%, #1EAEF5 50%, #FFD740 100%);
  --grad-hero:   linear-gradient(150deg, #FFF0FA 0%, #E8F8FF 45%, #FFF8E0 100%);

  /* Shadows */
  --shadow-soft: 0 8px 40px rgba(30,174,245,0.15);
  --shadow-card: 0 6px 28px rgba(255,111,183,0.2);
  --shadow-pink: 0 8px 32px rgba(233,30,140,0.25);
  --shadow-blue: 0 8px 32px rgba(30,174,245,0.3);

  /* Layout */
  --nav-h:        72px;   /* navbar height */
  --band-h:       32px;   /* ticker band height */
  --top-offset:   104px;  /* nav + band combined */

  /* Radii */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* Typography */
  --f-display: 'Pacifico', cursive;
  --f-script:  'Dancing Script', cursive;
  --f-body:    'Nunito', sans-serif;
}

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

/* ─── Utilities ─────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ================================================
   TICKER BAND
   sits at the very top, z-index below nav
   ================================================ */
.candy-band {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 998;                   /* below nav (999) */
  height: var(--band-h);
  background: var(--grad-candy);
  overflow: hidden;
  display: flex; align-items: center;
}
.candy-band-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.candy-band-track span {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 24px;
}
.candy-band-track .dot { opacity: 0.55; padding: 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================
   NAVIGATION
   sits above the band
   ================================================ */
.nav {
  position: fixed;
  top: var(--band-h);             /* pushed down by ticker */
  left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--pink-light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(255,111,183,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 36px rgba(30,174,245,0.15); }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--pink-light);
  background: #fff;
  flex-shrink: 0;
}
.nav-logo__text {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--blue);
  line-height: 1.15;
}
.nav-logo__tagline {
  display: block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--pink-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 15px;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light);
  color: var(--blue-dark);
}
/* CTA pill */
.nav-links .nav-cta {
  background: var(--grad-pink) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  box-shadow: var(--shadow-pink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
  background: var(--grad-pink) !important;
}

/* Hamburger button */
.nav-hamburger {
  display: none;              /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;  /* large tap target */
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--pink-light); }
.nav-hamburger__bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
  transform-origin: center;
}

/* Open state — X shape */
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── Mobile nav ────────────────────────────── */
@media (max-width: 768px) {

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Slide-down mobile menu */
  .nav-links {
    display: flex;               /* always in DOM for animation */
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: fixed;
    /* sits right below nav bar */
    top: calc(var(--band-h) + var(--nav-h));
    left: 0; right: 0;
    background: #fff;
    padding: 12px 16px 20px;
    border-bottom: 2px solid var(--pink-light);
    box-shadow: 0 12px 40px rgba(30,174,245,0.12);
    z-index: 997;
    /* hide by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--blue-light);
    color: var(--blue-dark);
  }

  /* CTA pill on mobile */
  .nav-links .nav-cta {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: var(--r-pill);
    font-size: 1rem;
    background: var(--grad-pink) !important;
    color: #fff !important;
    box-shadow: var(--shadow-pink);
  }
  .nav-links .nav-cta:hover {
    transform: none;
    opacity: 0.9;
  }
}

/* ─── Tiny phones ─────────────────────────── */
@media (max-width: 360px) {
  .nav { padding: 0 16px; }
  .nav-logo__text { font-size: 1rem; }
  .nav-logo__tagline { display: none; }
}

/* ================================================
   PAGE BODY OFFSET
   every page needs top padding = band + nav
   ================================================ */
.page-offset { padding-top: var(--top-offset); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover   { transform: translateY(-3px); }
.btn:active  { transform: translateY(-1px); opacity: 0.9; }

.btn-primary  { background: var(--grad-blue);  color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover  { box-shadow: 0 12px 36px rgba(30,174,245,0.45); }
.btn-secondary{ background: var(--grad-pink);  color: #fff; box-shadow: var(--shadow-pink); }
.btn-secondary:hover{ box-shadow: 0 12px 36px rgba(233,30,140,0.45); }
.btn-candy    { background: var(--grad-candy); color: #fff; box-shadow: 0 8px 28px rgba(255,111,183,0.38); }
.btn-outline  { background: transparent; color: var(--blue-dark); border: 2px solid var(--blue); }
.btn-outline:hover  { background: var(--blue-light); }
.btn-white    { background: #fff; color: var(--pink-dark); font-weight: 800; }
.btn-white:hover    { background: var(--pink-light); }

@media (max-width: 480px) {
  .btn { padding: 13px 24px; font-size: 0.95rem; }
}

/* ================================================
   SECTION LABELS & TITLES
   ================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.section-tag.blue  { background: var(--blue-light); color: var(--blue-dark); }
.section-tag.gold  { background: #FFF8D6; color: var(--gold-dark); }
.section-tag.mint  { background: var(--mint-light); color: #007B68; }
.section-tag.white { background: rgba(255,255,255,0.25); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title .accent      { color: var(--blue); }
.section-title .accent-pink { color: var(--pink-dark); }
.section-title .accent-gold { color: var(--gold-dark); }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.78;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes float  { 0%,100%{ transform:translateY(0);    } 50%{ transform:translateY(-12px); } }
@keyframes fade-up{ from{ opacity:0;transform:translateY(24px); } to{ opacity:1;transform:translateY(0); } }
@keyframes load   { to{ width:100%; } }
@keyframes sparkle{ 0%{ opacity:.8;transform:translateY(0) scale(1); } 100%{ opacity:0;transform:translateY(-28px) scale(.4); } }

.fade-up { animation: fade-up 0.65s ease both; }
.d1 { animation-delay: 0.10s; }
.d2 { animation-delay: 0.20s; }
.d3 { animation-delay: 0.30s; }
.d4 { animation-delay: 0.40s; }
.d5 { animation-delay: 0.50s; }

/* Scroll-triggered reveals */
.reveal       { opacity:0; transform:translateY(36px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.in    { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-36px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.in { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(36px);  transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.in{ opacity:1; transform:translateX(0); }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--top-offset);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
}
/* dot-pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--pink) 3px, transparent 3px),
    radial-gradient(circle, var(--blue) 2px, transparent 2px),
    radial-gradient(circle, var(--gold) 3px, transparent 3px),
    radial-gradient(circle, var(--mint) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 140px 140px;
  background-position: 15px 20px, 50px 60px, 80px 10px, 25px 90px;
  opacity: 0.07;
}
/* blobs */
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.17; pointer-events: none;
}
.hero__blob--1 { width:500px;height:500px; top:-120px;right:-120px; background:var(--pink); }
.hero__blob--2 { width:380px;height:380px; bottom:-100px;left:-100px; background:var(--blue); }
.hero__blob--3 { width:220px;height:220px; top:35%;left:38%; background:var(--gold); }

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%; max-width: 1160px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 0.8rem; font-weight: 800;
  color: var(--pink-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero__title .c-pink { color: var(--pink-dark); }
.hero__title .c-blue { color: var(--blue); }
.hero__title .c-gold { color: var(--gold-dark); }

.hero__tagline {
  font-family: var(--f-script);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-soft);
  margin-bottom: 16px;
}
.hero__desc {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__stat {
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 76px;
}
.hero__stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--blue);
}
.hero__stat small {
  font-size: 0.68rem; font-weight: 800;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Visual / chef circle */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__circle {
  position: relative;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, #fff 55%, var(--pink-light) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 14px rgba(255,111,183,0.10),
    0 0 0 28px rgba(30,174,245,0.06),
    0 24px 72px rgba(255,111,183,0.26);
  animation: float 4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__circle img {
  width: 270px; height: 270px;
  object-fit: contain;
}
/* Floating info cards */
.hero__card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
  font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  animation: float 3.5s ease-in-out infinite;
}
.hero__card--1 { top:8%;right:-5%;   border-left:3px solid var(--blue);  color:var(--blue-dark);  animation-delay:0s;   }
.hero__card--2 { bottom:12%;left:-4%;border-left:3px solid var(--pink);  color:var(--pink-dark);  animation-delay:1s;   }
.hero__card--3 { top:52%;right:-8%;  border-left:3px solid var(--gold);  color:var(--gold-dark);  animation-delay:0.5s; }
.hero__card .card-emoji { font-size: 1.2rem; }

/* Mobile hero */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px 60px;
    gap: 36px;
  }
  .hero__desc   { margin-left: auto; margin-right: auto; }
  .hero__btns   { justify-content: center; }
  .hero__stats  { justify-content: center; }
  .hero__visual { margin-top: 8px; }
  .hero__circle { width: 260px; height: 260px; }
  .hero__circle img { width: 200px; height: 200px; }
  .hero__card--3 { display: none; }
  /* reposition remaining cards so they don't overflow */
  .hero__card--1 { top:-10px; right: 10px; }
  .hero__card--2 { bottom:-10px; left: 10px; }
}
@media (max-width: 400px) {
  .hero__card { display: none; } /* avoid overflow on tiny phones */
}

/* ================================================
   HIGHLIGHTS GRID
   ================================================ */
.highlights { padding: 88px 0; background: #fff; }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.highlight-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:nth-child(1){ border-bottom-color: var(--pink); }
.highlight-card:nth-child(2){ border-bottom-color: var(--blue); }
.highlight-card:nth-child(3){ border-bottom-color: var(--gold-dark); }
.highlight-card:nth-child(4){ border-bottom-color: var(--mint); }
.highlight-card:hover { transform: translateY(-10px); box-shadow: 0 20px 52px rgba(255,111,183,0.22); }
.highlight-card__icon { font-size: 2.6rem; margin-bottom: 14px; display: block; animation: float 3s ease-in-out infinite; }
.highlight-card h3 { font-family: var(--f-display); font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.highlight-card p  { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

/* ================================================
   PRODUCT CARDS
   ================================================ */
.products { padding: 88px 0; background: linear-gradient(180deg, var(--cream) 0%, #FFE4F3 55%, #E0F4FF 100%); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 48px;
}
.product-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 28px 68px rgba(255,111,183,0.22); }
.product-card__img {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: var(--pink-light);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.09); }
/* scallop bottom edge */
.product-card__img::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 26px; background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.product-card__badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-pink);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 4px 11px; border-radius: var(--r-pill);
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(233,30,140,0.28);
}
.product-card__badge.blue { background: var(--grad-blue); }
.product-card__badge.gold { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--text); }
.product-card__body { padding: 18px 22px 22px; }
.product-card__body h3 { font-family: var(--f-display); font-size: 1.08rem; color: var(--text); margin-bottom: 6px; }
.product-card__body p  { font-size: 0.86rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 14px; }
.product-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; padding: 4px 13px; border-radius: var(--r-pill); }
.product-tag        { background: var(--blue-light); color: var(--blue-dark); }
.product-tag.pink   { background: var(--pink-light); color: var(--pink-dark); }
.product-tag.gold   { background: #FFF8D6;           color: var(--gold-dark); }
.product-tag.mint   { background: var(--mint-light); color: #007B68; }

/* ================================================
   DELIVERY BANNER
   ================================================ */
.delivery-banner {
  padding: 68px 0;
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #1EAEF5 0%, #0277BD 40%, #E91E8C 100%);
}
.delivery-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.13) 2px, transparent 2px);
  background-size: 40px 40px;
}
.delivery-banner h2 { font-family: var(--f-display); font-size: clamp(1.7rem,4vw,2.5rem); color: #fff; margin-bottom: 12px; }
.delivery-banner p  { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 520px; margin: 0 auto 26px; line-height: 1.75; }
.delivery-icons {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px; margin-bottom: 34px;
}
.delivery-icon-item {
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: var(--r-md);
  padding: 14px 20px;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.delivery-icon-item:hover { background: rgba(255,255,255,0.26); transform: translateY(-4px); }
.delivery-icon-item span { display: block; font-size: 1.7rem; margin-bottom: 5px; }

/* ================================================
   GALLERY STRIP
   ================================================ */
.gallery-strip {
  display: flex; gap: 5px;
  height: 220px; overflow: hidden;
}
.gallery-strip__item {
  flex: 1; min-width: 0;
  overflow: hidden;
}
.gallery-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-strip__item:hover img { transform: scale(1.08); }

@media (max-width: 600px) {
  .gallery-strip { height: 140px; }
  /* hide last two on tiny screens to avoid crush */
  .gallery-strip__item:nth-child(4),
  .gallery-strip__item:nth-child(5) { display: none; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { padding: 88px 0; background: var(--cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease;
}
.testimonial-card:nth-child(1){ border-top: 4px solid var(--pink); }
.testimonial-card:nth-child(2){ border-top: 4px solid var(--blue); }
.testimonial-card:nth-child(3){ border-top: 4px solid var(--gold-dark); }
.testimonial-card:hover { transform: translateY(-6px); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 6px; right: 16px;
  font-family: var(--f-display); font-size: 5.5rem;
  color: var(--pink-light); line-height: 1;
  pointer-events: none;
}
.testimonial-card__stars { color: var(--gold-dark); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 18px; position: relative; z-index: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 11px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0;
}
.av-pink { background: linear-gradient(135deg,var(--pink-light),#f8bbd9); color:var(--pink-dark); }
.av-blue { background: linear-gradient(135deg,var(--blue-light),var(--blue-mid)); color:var(--blue-dark); }
.av-gold { background: linear-gradient(135deg,#FFF8D6,#FFE082); color:var(--gold-dark); }
.testimonial-card__author-info strong { display: block; font-size: 0.88rem; color: var(--text); }
.testimonial-card__author-info span   { font-size: 0.76rem; color: var(--text-soft); }

/* ================================================
   ABOUT SPLIT LAYOUT
   ================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-soft);
}
.about-img img { width:100%; height:100%; object-fit:cover; }
.about-img--placeholder {
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-text p { font-size: 0.98rem; color: var(--text-soft); line-height: 1.82; margin-bottom: 15px; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.badge {
  font-size: 0.74rem; font-weight: 800;
  padding: 5px 13px; border-radius: var(--r-pill);
}
.badge-blue  { background: var(--blue-light); color: var(--blue-dark); }
.badge-pink  { background: var(--pink-light); color: var(--pink-dark); }
.badge-gold  { background: #FFF8D6;           color: var(--gold-dark); }
.badge-mint  { background: var(--mint-light); color: #007B68; }

/* Values grid */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 18px;
  margin-top: 52px;
}
.value-card {
  background: #fff;
  border-radius: var(--r-lg); padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.value-card:nth-child(1){ border-top: 4px solid var(--blue); }
.value-card:nth-child(2){ border-top: 4px solid var(--pink-dark); }
.value-card:nth-child(3){ border-top: 4px solid var(--gold-dark); }
.value-card:nth-child(4){ border-top: 4px solid var(--mint); }
.value-card:hover { transform: translateY(-6px); }
.value-card__icon { font-size: 2.1rem; margin-bottom: 11px; }
.value-card h3 { font-family: var(--f-display); font-size: 0.97rem; color: var(--text); margin-bottom: 7px; }
.value-card p  { font-size: 0.84rem; color: var(--text-soft); line-height: 1.65; }

/* ================================================
   SERVICES PAGE
   ================================================ */
.services { padding: 78px 0; }
.service-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
  margin-bottom: 86px;
}
.service-section.reverse { direction: rtl; }
.service-section.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .service-section, .service-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
    margin-bottom: 60px;
  }
}
.service-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 330px;
  box-shadow: var(--shadow-soft);
}
.service-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.service-img:hover img { transform: scale(1.05); }
.service-content h2 { font-family: var(--f-display); font-size: clamp(1.5rem,3.5vw,1.85rem); color: var(--text); margin-bottom: 13px; }
.service-content h2 .accent      { color: var(--blue); }
.service-content h2 .accent-pink { color: var(--pink-dark); }
.service-content p { font-size: 0.97rem; color: var(--text-soft); line-height: 1.82; margin-bottom: 18px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.ft { font-size: 0.74rem; font-weight: 800; padding: 5px 13px; border-radius: var(--r-pill); }
.ft-blue   { background: var(--blue-light); color: var(--blue-dark); }
.ft-pink   { background: var(--pink-light); color: var(--pink-dark); }
.ft-gold   { background: #FFF8D6;           color: var(--gold-dark); }
.ft-mint   { background: var(--mint-light); color: #007B68; }
.ft-purple { background: var(--purple-light); color: #7B1FA2; }

/* Occasions grid */
.perfect-for { padding: 88px 0; background: linear-gradient(135deg, var(--blue-light) 0%, var(--pink-light) 50%, #FFF8D6 100%); }
.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 46px;
}
.occasion-card {
  background: #fff;
  border-radius: var(--r-lg); padding: 24px 12px;
  text-align: center; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.occasion-card:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 18px 44px rgba(255,111,183,0.22); }
.occasion-card span { display: block; font-size: 2.2rem; margin-bottom: 9px; }
.occasion-card p    { font-size: 0.78rem; font-weight: 800; color: var(--text); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { padding: 78px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 44px; align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
.contact-card {
  background: #fff;
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 480px) { .contact-card { padding: 24px; } }
.contact-card h2 { font-family: var(--f-display); font-size: 1.55rem; color: var(--text); margin-bottom: 8px; }
.contact-card .subtitle { font-size: 0.93rem; color: var(--text-soft); margin-bottom: 28px; line-height: 1.65; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px; padding: 16px 18px;
  background: var(--cream); border-radius: var(--r-md);
  text-decoration: none; color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-item:hover { transform: translateX(5px); box-shadow: var(--shadow-card); }
.contact-item__icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ci-blue { background: var(--blue-light); }
.ci-pink { background: var(--pink-light); }
.ci-gold { background: #FFF8D6; }
.ci-mint { background: var(--mint-light); }
.contact-item__text strong { display: block; font-size: 0.72rem; font-weight: 800; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-item__text a    { font-size: 0.97rem; font-weight: 700; color: var(--blue-dark); transition: color 0.2s; }
.contact-item__text a:hover { color: var(--pink-dark); }
.contact-item__text span { font-size: 0.97rem; font-weight: 700; color: var(--text); }

.contact-map {
  background: linear-gradient(135deg, var(--blue-light), var(--pink-light));
  border-radius: var(--r-xl); height: 270px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); text-align: center; padding: 28px;
}
.contact-map span { font-size: 3.2rem; margin-bottom: 12px; }
.contact-map h3 { font-family: var(--f-display); font-size: 1.25rem; color: var(--text); margin-bottom: 7px; }
.contact-map p  { font-size: 0.87rem; color: var(--text-soft); line-height: 1.7; }
.contact-area-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.contact-area-tags span {
  background: rgba(255,255,255,0.82);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-size: 0.72rem; font-weight: 700; color: var(--text);
}
.contact-cta {
  background: var(--grad-pink);
  border-radius: var(--r-xl); padding: 32px;
  text-align: center; color: #fff;
  margin-top: 24px; box-shadow: var(--shadow-pink);
}
.contact-cta h3 { font-family: var(--f-display); font-size: 1.35rem; margin-bottom: 9px; }
.contact-cta p  { font-size: 0.93rem; opacity: 0.92; margin-bottom: 20px; line-height: 1.7; }
.contact-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.social-links { margin-top: 22px; padding: 20px; background: var(--cream); border-radius: var(--r-md); }
.social-links p { font-size: 0.72rem; font-weight: 800; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.social-links__row { display: flex; gap: 9px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1.5px solid var(--pink-light);
  border-radius: var(--r-md); padding: 9px 15px;
  font-size: 0.85rem; font-weight: 700; color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ================================================
   PAGE HERO  (inner pages)
   ================================================ */
.page-hero {
  padding: 60px 0 72px;
  padding-top: calc(var(--top-offset) + 40px);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FFE4F3 0%, #E0F4FF 40%, #FFF8D6 80%, #F3E5F5 100%);
}
.page-hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, var(--pink) 2px, transparent 2px),
    radial-gradient(circle, var(--blue) 2px, transparent 2px),
    radial-gradient(circle, var(--gold) 2px, transparent 2px);
  background-size: 60px 60px, 90px 90px, 75px 75px;
  background-position: 10px 10px, 40px 50px, 20px 70px;
  opacity: 0.07;
}
.page-hero__content { position: relative; z-index: 2; padding: 0 24px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--text); margin: 10px 0;
}
.page-hero h1 .accent      { color: var(--blue); }
.page-hero h1 .accent-pink { color: var(--pink-dark); }
.page-hero p { font-size: 1.05rem; color: var(--text-soft); max-width: 560px; margin: 0 auto; line-height: 1.78; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #1A0D1E; color: rgba(255,255,255,0.85); padding: 56px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 44px; padding-bottom: 44px;
}
@media (max-width: 820px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

.footer__brand p { margin: 14px 0 22px; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.58); max-width: 290px; }
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo img { width:52px; height:52px; object-fit:contain; border-radius:50%; border:2px solid var(--pink); background:#fff; }
.footer-logo span { font-family: var(--f-display); font-size: 1.15rem; color: var(--blue); }
.footer-contact-row { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; font-size: 0.86rem; color: rgba(255,255,255,0.62); }
.footer-contact-row a { color: var(--blue); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--pink); }

.footer__col-heading { font-family: var(--f-display); font-size: 0.97rem; color: #fff; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.58); font-size: 0.86rem; padding: 4px 0; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--pink); padding-left: 5px; }

.footer__social { display: flex; gap: 9px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.social-icon:hover { background: var(--grad-pink); transform: scale(1.15); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
}
.footer__bottom a { color: var(--pink); }

/* ================================================
   MISC UTILITIES
   ================================================ */
.section-gap    { padding: 88px 0; }
.section-gap-sm { padding: 56px 0; }

/* Back-to-top */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-pink); color: #fff;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-pink); cursor: pointer; border: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); }

/* Page loader */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.page-loader__emoji { font-size: 3.2rem; animation: float 1s ease-in-out infinite; }
.page-loader__bar { width: 150px; height: 5px; background: var(--pink-light); border-radius: 3px; overflow: hidden; }
.page-loader__fill { height: 100%; width: 0; background: var(--grad-candy); border-radius: 3px; animation: load 1.2s ease forwards; }

/* ================================================
   RESPONSIVE TYPOGRAPHY HELPERS
   ================================================ */
@media (max-width: 600px) {
  .section-gap    { padding: 64px 0; }
  .section-gap-sm { padding: 40px 0; }
  .highlights     { padding: 64px 0; }
  .products       { padding: 64px 0; }
  .testimonials   { padding: 64px 0; }
  .delivery-banner{ padding: 52px 0; }
  .perfect-for    { padding: 64px 0; }
  .services       { padding: 56px 0; }
}
