/*======================================================================
  ICELOFT — Premium theme
  Warm & indulgent identity: cream / honey gold / chocolate
======================================================================*/

:root {
  /* Brand palette */
  --cream: #fbf3e7;
  --cream-deep: #f6e8d3;
  --surface: #ffffff;
  --choco: #2e1b12;
  --choco-soft: #4a2d1e;
  --text: #5a4a40;
  --muted: #8a7868;
  --gold: #e89b2d;
  --gold-deep: #d77f1e;
  --honey-1: #f6b93b;
  --honey-2: #e07c2a;
  --berry: #8e3b7e;
  --blueberry: #2e86c1;
  --line: rgba(46, 27, 18, 0.10);
  --shadow-sm: 0 6px 18px rgba(46, 27, 18, 0.08);
  --shadow-md: 0 18px 40px rgba(46, 27, 18, 0.12);
  --shadow-lg: 0 30px 70px rgba(46, 27, 18, 0.18);
  --grad-gold: linear-gradient(135deg, var(--honey-1), var(--honey-2));
  --grad-choco: linear-gradient(120deg, #2e1b12, #5a3826);
  --radius: 18px;
  --radius-lg: 28px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body.index-page {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.index-page h1,
.index-page h2,
.index-page h3,
.index-page h4,
.index-page h5,
.index-page h6 {
  font-family: var(--display);
  color: var(--choco);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.index-page a { color: var(--gold-deep); text-decoration: none; transition: .25s; }
.index-page a:hover { color: var(--honey-2); }
.index-page img { max-width: 100%; height: auto; }
.index-page .container { max-width: 1200px; }

/* Section rhythm */
.index-page section { padding: 74px 0; position: relative; }
.index-page .light-background { background: var(--cream); }
.index-page .section-title { text-align: center; margin-bottom: 54px; }
.index-page .section-title .eyebrow,
.index-page .eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.index-page .section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
.index-page .section-title p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* Buttons */
.index-page .btn-il {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.index-page .btn-primary-il {
  background: var(--grad-gold);
  color: #3a2410;
  box-shadow: 0 12px 26px rgba(224, 124, 42, 0.35);
}
.index-page .btn-primary-il:hover { transform: translateY(-3px); color: #3a2410; box-shadow: 0 18px 34px rgba(224, 124, 42, 0.45); }
.index-page .btn-outline-il {
  background: transparent;
  color: var(--choco);
  border-color: rgba(46, 27, 18, 0.25);
}
.index-page .btn-outline-il:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }

/*===================== Header =====================*/
.index-page .header {
  background: var(--grad-choco);
  padding: 14px 0;
  transition: padding .3s, box-shadow .3s, background .3s;
  z-index: 1000;
}
.index-page.scrolled .header { padding: 8px 0; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.index-page .header .logo img { max-height: 52px; width: auto; transition: max-height .3s; }
.index-page.scrolled .header .logo img { max-height: 44px; }

.index-page .navmenu ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.index-page .navmenu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .95rem;
  color: #f6e8d3;
  border-radius: 999px;
  position: relative;
}
.index-page .navmenu a:hover,
.index-page .navmenu a.active { color: #fff; }
.index-page .navmenu a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.index-page .btn-getstarted {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 1.05rem;
  transition: .25s;
}
.index-page .btn-getstarted:hover { background: var(--grad-gold); border-color: transparent; color: #3a2410; transform: translateY(-2px); }
.index-page .mobile-nav-toggle { color: #fff; font-size: 1.8rem; cursor: pointer; }

/* Header CTA (replaces social circles) */
.index-page .header-cta { gap: 16px; }
.index-page .header-phone { display: flex; align-items: center; gap: 10px; color: #f6e8d3; }
.index-page .header-phone i { color: var(--honey-1); font-size: 1.25rem; }
.index-page .header-phone span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 600; font-size: .98rem; }
.index-page .header-phone span small { font-size: .66rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #c9b6a2; }
.index-page .header-phone:hover { color: #fff; }
.index-page .btn-order {
  display: inline-flex; align-items: center; gap: 9px; background: var(--grad-gold); color: #3a2410;
  font-weight: 600; font-size: .94rem; padding: 11px 22px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(224,124,42,.35); transition: transform .25s, box-shadow .25s;
}
.index-page .btn-order i { font-size: 1.15rem; }
.index-page .btn-order:hover { color: #3a2410; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(224,124,42,.5); }
@media (max-width: 575px) {
  .index-page .btn-order { padding: 10px 14px; }
  .index-page .btn-order .btn-order-text { display: none; }
}

/* Mobile nav */
@media (max-width: 1199px) {
  .index-page .navmenu ul { position: fixed; top: 0; right: -100%; width: 300px; max-width: 80vw; height: 100vh;
    background: var(--grad-choco); padding: 90px 24px 24px; flex-direction: column; align-items: stretch; gap: 6px;
    transition: right .35s ease; z-index: 999; box-shadow: -20px 0 60px rgba(0,0,0,.4); overflow-y: auto; }
  .index-page .navmenu a { font-size: 1.05rem; padding: 12px 14px; }
  .index-page.mobile-nav-active .navmenu ul { right: 0; }
  .index-page .mobile-nav-toggle { position: relative; z-index: 1001; color: #fff; margin-left: 6px; }
}

/*===================== Hero =====================*/
.index-page .hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(246, 185, 59, 0.30), transparent 60%),
    radial-gradient(900px 500px at 8% 90%, rgba(142, 59, 126, 0.10), transparent 55%),
    linear-gradient(180deg, #fff6e9, var(--cream));
  overflow: hidden;
}
.index-page .hero .eyebrow { font-style: italic; font-family: var(--display); text-transform: none; letter-spacing: .04em; font-size: 1.15rem; font-weight: 500; }
.index-page .hero-title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin: 6px 0 20px; }
.index-page .hero-title .accent { color: var(--gold-deep); }
.index-page .hero-subtitle { font-size: 1.08rem; color: var(--text); max-width: 560px; }
.index-page .hero-actions { margin-top: 8px; }
.index-page .hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.index-page .hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--choco-soft); font-size: .94rem; }
.index-page .hero-trust i { color: var(--gold-deep); font-size: 1.1rem; }

.index-page .hero-images { position: relative; }
.index-page .hero-images .main-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Hero category collage */
.index-page .hero-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 192px 192px; gap: 12px; }
.index-page .hero-collage .hc-tile { position: relative; margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--cream-deep); }
.index-page .hero-collage .hc-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.index-page .hero-collage .hc-tile:hover img { transform: scale(1.08); }
.index-page .hero-collage figcaption { position: absolute; left: 8px; bottom: 8px; background: rgba(46,27,18,.72); color: #fff; font-size: .7rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
.index-page .hero-collage .hc-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.index-page .hero-collage .hc-a figcaption { font-size: .82rem; padding: 6px 14px; }
.index-page .hero-collage .hc-b { grid-column: 3; grid-row: 1; }
.index-page .hero-collage .hc-c { grid-column: 4; grid-row: 1; }
.index-page .hero-collage .hc-d { grid-column: 3; grid-row: 2; }
.index-page .hero-collage .hc-e { grid-column: 4; grid-row: 2; }
@media (max-width: 991px) { .index-page .hero-collage { grid-template-rows: 168px 168px; } }
@media (max-width: 575px) { .index-page .hero-collage { grid-template-rows: 132px 132px; gap: 8px; } .index-page .hero-collage figcaption { font-size: .62rem; padding: 3px 8px; } }

/* ===== Enterprise menu — masonry layout (all categories) ===== */
.index-page .menu-prices .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.index-page .menu-prices .price-card { display: flex; flex-direction: column; width: auto; margin: 0; height: 100%; }
.index-page .menu-prices .price-cols { columns: 1; padding-bottom: 6px; }
.index-page .pc-sub { margin: 14px 0 2px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.index-page .price-card.specials .pc-sub { color: var(--honey-1); }
.index-page .price-row .nm small { color: var(--muted); font-weight: 500; font-size: .82em; }
@media (max-width: 991px) { .index-page .menu-prices .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .index-page .menu-prices .price-grid { grid-template-columns: 1fr; } }

/* ===== Premium coloured menu boards (matches ICE LOFT posters) ===== */
.index-page .menu-prices { background: linear-gradient(180deg, #fff, #fbf0e0); }
.index-page .menu-prices .price-card { background: #fff; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 16px 38px rgba(46,27,18,.10); transition: transform .25s, box-shadow .25s; }
.index-page .menu-prices .price-card:hover { transform: translateY(-5px); box-shadow: 0 26px 52px rgba(46,27,18,.16); }
.index-page .menu-prices .price-card::before { display: none; }
.index-page .menu-prices .price-card > * { padding-left: 24px; padding-right: 24px; }
.index-page .menu-prices .price-card .pc-head { margin: 0; padding: 20px 24px; border: 0; color: #fff; background: var(--grad-choco); align-items: center; }
.index-page .menu-prices .price-card .pc-head::after { display: none; }
.index-page .menu-prices .price-card .pc-title h3 { color: #fff; font-size: 1.42rem; }
.index-page .menu-prices .price-card .pc-kicker { color: rgba(255,255,255,.9); }
.index-page .menu-prices .price-card .pc-sizes span { background: rgba(255,255,255,.94); color: #3a2410; }
.index-page .menu-prices .price-cols { padding-top: 14px; }
.index-page .menu-prices .price-row .pr { color: var(--gold-deep); font-weight: 700; }
.index-page .menu-prices .price-row:hover { background: var(--cream); }

/* per-category header colours (DOM order) */
.index-page .menu-prices .price-grid > div:nth-of-type(1) .pc-head { background: linear-gradient(120deg,#5bb648,#2f8f3e); }
.index-page .menu-prices .price-grid > div:nth-of-type(2) .pc-head { background: linear-gradient(120deg,#8a4fc0,#5e2c93); }
.index-page .menu-prices .price-grid > div:nth-of-type(3) .pc-head { background: linear-gradient(120deg,#46a8e6,#2d7fc0); }
.index-page .menu-prices .price-grid > div:nth-of-type(4) .pc-head { background: linear-gradient(120deg,#f0608c,#d63e6e); }
.index-page .menu-prices .price-grid > div:nth-of-type(5) .pc-head { background: linear-gradient(120deg,#8163d8,#5b3fb0); }
.index-page .menu-prices .price-grid > div:nth-of-type(6) .pc-head { background: linear-gradient(120deg,#3a8ad6,#2462a8); }
.index-page .menu-prices .price-grid > div:nth-of-type(7) .pc-head { background: linear-gradient(120deg,#3a7a45,#1f5128); }
.index-page .menu-prices .price-grid > div:nth-of-type(8) .pc-head { background: linear-gradient(120deg,#f3b24a,#e0801f); }
.index-page .menu-prices .price-grid > div:nth-of-type(9) .pc-head { background: var(--grad-choco); }

/* reset the old fully-dark specials card to the new light-body system */
.index-page .menu-prices .price-card.specials { background: #fff; }
.index-page .menu-prices .price-card.specials .price-row .nm { color: var(--choco); }
.index-page .menu-prices .price-card.specials .price-row .pr { color: var(--gold-deep); }
.index-page .menu-prices .price-card.specials .price-row .dots { border-bottom-color: rgba(46,27,18,.3); }
.index-page .menu-prices .price-card.specials .pc-note { color: var(--muted); }
.index-page .menu-prices .price-card.specials .shake-title { color: var(--gold-deep); }
.index-page .menu-prices .price-card.specials .shake-line span { background: var(--cream); border-color: var(--line); color: var(--choco-soft); }

/* ===== Prices hidden for now (toggle: remove this block to show prices again) ===== */
.index-page .menu-prices .price-row .pr,
.index-page .menu-prices .price-row .dots,
.index-page .menu-prices .pc-sizes { display: none; }
.index-page .menu-prices .price-row { padding: 7px 10px; }
.index-page .menu-prices .price-row .nm { font-size: 1rem; }

/* ===== Dull watermark product image behind each category (premium) ===== */
.index-page .menu-prices .price-card { position: relative; }
.index-page .menu-prices .price-card > * { position: relative; z-index: 1; }
.index-page .menu-prices .price-card { overflow: hidden; }
.index-page .menu-prices .price-card::after { display: none; }
/* keep text crisp: soft wash above the image, below the content */
.index-page .menu-prices .price-card .pc-head { position: relative; z-index: 2; }
.index-page .menu-prices .price-card .price-cols,
.index-page .menu-prices .price-card .pc-sub,
.index-page .menu-prices .price-card .shake-title,
.index-page .menu-prices .price-card .shake-line,
.index-page .menu-prices .price-card .pc-note { position: relative; z-index: 2; }
.index-page .menu-prices .price-grid > div:nth-of-type(1)::after { background-image: url(../img/popsicle/popsicle.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(2)::after { background-image: url(../img/sipup/strawbery.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(3)::after { background-image: url(../img/popsicle/popsicle.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(4)::after { background-image: url(../img/tub/strawberry.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(5)::after { background-image: url(../img/tub/chocobrownie.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(6)::after { background-image: url(../img/tub/blueberry.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(7)::after { background-image: url(../img/tub/redvelvet.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(8)::after { background-image: url(../img/tub/vanilla.webp); }
.index-page .menu-prices .price-grid > div:nth-of-type(9)::after { background-image: url(../img/tub/tendercoconut.webp); }

.index-page .hero-images .floating-image { position: absolute; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid #fff; width: 130px; animation: float 6s ease-in-out infinite; }
.index-page .hero-images .floating-image-1 { bottom: -26px; left: -22px; }
.index-page .hero-images .floating-image-2 { top: -26px; right: -18px; width: 110px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.index-page .hero-badge {
  position: absolute; top: 30px; left: -18px;
  background: #fff; color: var(--choco); border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow-md); font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: 10px;
}
.index-page .hero-badge i { color: var(--gold-deep); font-size: 1.4rem; }

/*===================== About =====================*/
.index-page .about { background: var(--surface); }
.index-page .about-image { position: relative; }
.index-page .about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.index-page .about-image .experience-badge {
  position: absolute; bottom: -24px; right: -10px;
  background: var(--grad-choco); color: #fff; border-radius: 20px; padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-lg); max-width: 200px;
}
.index-page .experience-badge .years { display: block; font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--honey-1); line-height: 1; }
.index-page .experience-badge .text { font-size: .82rem; color: #f6e8d3; }

.index-page .about-content .story-text p { font-size: 1.05rem; }
.index-page .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 26px 0; }
.index-page .feature-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px;
  display: flex; gap: 14px; align-items: flex-start; transition: transform .25s, box-shadow .25s;
}
.index-page .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.index-page .feature-card .ic {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center; color: #3a2410; font-size: 1.3rem;
}
.index-page .feature-card h4 { font-size: 1.02rem; margin: 0 0 2px; }
.index-page .feature-card p { margin: 0; font-size: .9rem; color: var(--muted); }

.index-page .chef-quote { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 12px; padding: 18px 22px; }
.index-page .chef-quote h6 { font-family: var(--body); font-weight: 700; color: var(--choco); margin-bottom: 10px; }
.index-page .chef-quote p { margin: 0 0 6px; font-size: .96rem; }
.index-page .chef-quote b { color: var(--choco); }

/*===================== Products / Menu =====================*/
.index-page .menu { background: var(--cream); }
.index-page .menu-filters .nav-pills { gap: 10px; flex-wrap: wrap; margin-bottom: 44px; border: 0; }
.index-page .menu-filters .nav-link {
  border: 1.5px solid var(--line); background: #fff; color: var(--choco-soft);
  border-radius: 999px; padding: 11px 22px; font-family: var(--body); font-weight: 500; font-size: .95rem; transition: .25s;
}
.index-page .menu-filters .nav-link:hover { border-color: var(--gold); color: var(--gold-deep); }
.index-page .menu-filters .nav-link.active { background: var(--grad-gold); color: #3a2410; border-color: transparent; box-shadow: 0 10px 22px rgba(224,124,42,.3); }

.index-page .menu-item {
  background: var(--surface); border-radius: var(--radius); overflow: hidden; height: 100%;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.index-page .menu-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.index-page .menu-item-image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-deep); }
.index-page .menu-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.index-page .menu-item:hover .menu-item-image img { transform: scale(1.07); }
.index-page .menu-item-content { padding: 18px 18px 22px; }
.index-page .menu-item-header h4 { font-size: 1.15rem; margin: 0 0 6px; }
.index-page .menu-item-content p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.55; }
.index-page .menu .col-lg-3 { margin-bottom: 8px; }

/*===================== Testimonials =====================*/
.index-page .testimonials { background: var(--surface); }
.index-page .testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.index-page .testimonial-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  height: 100%; position: relative; transition: transform .25s, box-shadow .25s;
}
.index-page .testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.index-page .testimonial-card .quote-icon { font-size: 2rem; color: var(--gold); opacity: .55; }
.index-page .testimonial-card .stars { color: var(--gold); margin: 8px 0 10px; font-size: .95rem; }
.index-page .testimonial-body p { font-size: 1.02rem; color: var(--choco-soft); font-style: italic; }
.index-page .testimonial-header { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.index-page .testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex: 0 0 50px;
  background: var(--grad-choco); color: var(--honey-1); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
}
.index-page .testimonial-meta h3 { font-size: 1.02rem; margin: 0; }
.index-page .testimonial-meta h4 { font-size: .82rem; margin: 0; color: var(--muted); font-family: var(--body); font-weight: 500; }

/*===================== Gallery =====================*/
.index-page .gallery { background: var(--cream); }
.index-page .gallery .gallery-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.index-page .gallery .gallery-wrap img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s; display: block; }
.index-page .gallery .gallery-wrap:hover img { transform: scale(1.08); }
.index-page .gallery .gallery-info {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(46,27,18,.55), rgba(46,27,18,.05)); opacity: 0; transition: .3s;
}
.index-page .gallery .gallery-wrap:hover .gallery-info { opacity: 1; }
.index-page .gallery .gallery-links a {
  width: 56px; height: 56px; border-radius: 50%; background: var(--grad-gold); color: #3a2410;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transform: translateY(10px); transition: .3s;
}
.index-page .gallery .gallery-wrap:hover .gallery-links a { transform: translateY(0); }

/*===================== Contact =====================*/
.index-page .contact { background: var(--surface); }
.index-page .contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; height: 100%; }
.index-page .contact-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.index-page .contact-card-location { text-align: center; margin-bottom: 28px; }
.index-page .location-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.index-page .location-chips span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
  font-size: .85rem; font-weight: 500; color: var(--choco-soft);
}
.index-page .contact-details { margin: 22px 0; }
.index-page .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.index-page .contact-item > i {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-gold); color: #3a2410;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.index-page .contact-item h4 { font-family: var(--body); font-weight: 600; font-size: .9rem; color: var(--muted); margin: 0 0 2px; text-transform: uppercase; letter-spacing: .04em; }
.index-page .contact-item p { margin: 0; font-size: 1.05rem; color: var(--choco); font-weight: 500; }
.index-page .social-links { display: flex; gap: 12px; margin-top: 18px; }
.index-page .social-links a {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--choco); font-size: 1.15rem;
}
.index-page .social-links a:hover { background: var(--grad-gold); color: #3a2410; border-color: transparent; transform: translateY(-3px); }

.index-page .contact-form-wrapper { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.index-page .php-email-form label { font-weight: 500; font-size: .88rem; color: var(--choco-soft); margin-bottom: 6px; }
.index-page .php-email-form .form-control {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 16px; background: #fff; font-size: .95rem; color: var(--choco);
}
.index-page .php-email-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,155,45,.18); outline: none; }
.index-page .php-email-form button[type=submit] {
  background: var(--grad-gold); color: #3a2410; border: 0; border-radius: 999px; padding: 13px 38px; font-weight: 600; transition: .25s;
}
.index-page .php-email-form button[type=submit]:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(224,124,42,.35); }
.index-page .contact-map { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.index-page .contact-map iframe { width: 100%; height: 320px; border: 0; }

/*===================== Footer =====================*/
.index-page .footer { background: var(--grad-choco); color: #e8d9c8; padding: 70px 0 0; }
.index-page .footer .logo img { max-height: 60px; }
.index-page .footer h5 { color: #fff; }
.index-page .footer p { color: #d9c6b3; }
.index-page .footer .footer-tagline { font-family: var(--display); font-style: italic; color: var(--honey-1); font-size: 1.1rem; }
.index-page .footer hr { border-color: rgba(255,255,255,.12); }
.index-page .footer .newsletter-form .form-control { border: 0; border-radius: 999px 0 0 999px; padding: 13px 18px; }
.index-page .footer .btn-subscribe { background: var(--grad-gold); border: 0; color: #3a2410; border-radius: 0 999px 999px 0; padding: 0 20px; font-size: 1.1rem; }
.index-page .footer-bottom { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.index-page .footer-bottom p { margin: 0; font-size: .9rem; color: #c9b6a2; }
.index-page .footer-bottom a { color: var(--honey-1); }
.index-page .footer .social-links { justify-content: center; margin-top: 4px; }
.index-page .footer .social-links a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.index-page .footer .social-links a:hover { background: var(--grad-gold); color: #3a2410; }

/*===================== Preloader & scroll-top =====================*/
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
#preloader:before {
  content: ""; width: 52px; height: 52px; border-radius: 50%;
  border: 5px solid rgba(232,155,45,.25); border-top-color: var(--gold); animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.index-page .scroll-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%; background: var(--grad-gold); color: #3a2410;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  opacity: 0; visibility: hidden; transition: .3s; box-shadow: var(--shadow-md);
}
.index-page .scroll-top.active { opacity: 1; visibility: visible; }
.index-page .scroll-top:hover { transform: translateY(-3px); color: #3a2410; }

/*===================== Responsive =====================*/
@media (max-width: 991px) {
  .index-page section { padding: 58px 0; }
  .index-page .hero { padding: 60px 0 50px; }
  .index-page .hero-images { margin-top: 60px; }
  .index-page .about-image { margin-bottom: 56px; }
  .index-page .testimonial-grid { grid-template-columns: 1fr; }
  .index-page .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .index-page .hero-images .floating-image { display: none; }
  .index-page .hero-badge { left: 8px; }
  .index-page .menu-item-content { padding: 16px; }
  .index-page .cta-inner { flex-direction: column; text-align: center; }
}

/*===================== Polish add-ons =====================*/
/* Gradient accent text in hero */
.index-page .hero-title .accent {
  background: linear-gradient(120deg, var(--honey-2), var(--berry));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-deep);
}

/* Flavour marquee */
.index-page .flavour-marquee {
  background: var(--grad-choco); color: #fff; overflow: hidden; white-space: nowrap;
  padding: 16px 0; border-top: 3px solid var(--honey-1); border-bottom: 3px solid var(--honey-1);
}
.index-page .marquee-track {
  display: inline-flex; align-items: center; gap: 26px;
  animation: marquee 28s linear infinite; will-change: transform;
}
.index-page .marquee-track span {
  font-family: var(--display); font-style: italic; font-size: 1.35rem; font-weight: 500; letter-spacing: .01em;
}
.index-page .marquee-track i { color: var(--honey-1); font-size: .9rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .index-page .marquee-track { animation: none; } }

/* CTA band */
.index-page .cta-band { padding: 0; background: var(--cream); }
.index-page .cta-inner {
  background: var(--grad-gold); border-radius: var(--radius-lg); padding: 46px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  box-shadow: 0 24px 50px rgba(224, 124, 42, 0.30); position: relative; overflow: hidden;
}
.index-page .cta-inner::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  background: rgba(255,255,255,.18); border-radius: 50%;
}
.index-page .cta-inner h2 { color: #3a2410; margin: 0 0 6px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.index-page .cta-inner p { color: #5a3a18; margin: 0; font-weight: 500; }
.index-page .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.index-page .btn-light-il { background: #fff; color: var(--choco); }
.index-page .btn-light-il:hover { background: var(--choco); color: #fff; transform: translateY(-3px); }

/* Floating WhatsApp */
.index-page .wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); transition: transform .25s;
  animation: wa-pulse 2.4s infinite;
}
.index-page .wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 575px) { .index-page .wa-float { width: 50px; height: 50px; font-size: 1.5rem; } }

/*===================== Opening Soon banner =====================*/
.index-page .opening-soon { padding: 0; background: var(--cream); }
.index-page .opening-inner {
  background: var(--grad-choco); color: #fff; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 40px 46px;
  position: relative; box-shadow: var(--shadow-lg);
}
.index-page .opening-inner::before {
  content: ""; position: absolute; left: -60px; bottom: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(246,185,59,.35), transparent 70%);
}
.index-page .opening-pin {
  flex: 0 0 auto; background: var(--grad-gold); color: #3a2410; border-radius: 18px;
  padding: 16px 22px; text-align: center; font-weight: 700; position: relative; z-index: 1;
}
.index-page .opening-pin i { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.index-page .opening-pin span { display: block; font-family: var(--display); font-size: 1.15rem; line-height: 1.1; }
.index-page .opening-text { position: relative; z-index: 1; }
.index-page .opening-text .tag {
  display: inline-block; background: rgba(246,185,59,.2); color: var(--honey-1);
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 10px;
}
.index-page .opening-text h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.index-page .opening-text p { color: #e8d9c8; margin: 0; }

/*===================== Menu & Prices =====================*/
.index-page .menu-prices { background: var(--surface); }
.index-page .price-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.index-page .price-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 34px 30px; box-shadow: var(--shadow-sm);
}
.index-page .price-card .pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px dashed rgba(46,27,18,.18); }
.index-page .price-card .pc-head h3 { margin: 0; font-size: 1.5rem; }
.index-page .price-card .pc-sizes { font-size: .78rem; font-weight: 600; color: var(--gold-deep); letter-spacing: .04em; white-space: nowrap; }
.index-page .price-cols { columns: 2; column-gap: 36px; }
.index-page .price-row { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; break-inside: avoid; }
.index-page .price-row .nm { color: var(--choco); font-weight: 500; }
.index-page .price-row .dots { flex: 1; border-bottom: 1px dotted rgba(46,27,18,.3); transform: translateY(-4px); }
.index-page .price-row .pr { color: var(--gold-deep); font-weight: 600; white-space: nowrap; }
.index-page .price-card.specials .price-cols { columns: 1; }
.index-page .price-card .pc-note { margin: 16px 0 0; font-size: .85rem; color: var(--muted); }
.index-page .price-card .shake-line { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.index-page .price-card .shake-line span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .85rem; font-weight: 500; color: var(--choco-soft); }
@media (max-width: 991px) {
  .index-page .price-grid { grid-template-columns: 1fr; }
  .index-page .opening-inner { padding: 32px 26px; }
}
@media (max-width: 575px) { .index-page .price-cols { columns: 1; } }

/*======================================================================
  PREMIUM UPGRADE LAYER
======================================================================*/
/* Hero: hug the top, kill blank space */
.index-page .hero .hero-content > .row { align-items: flex-start; }
.index-page .hero .hero-images { margin-top: 6px; }
@media (min-width: 992px) { .index-page .hero { padding-top: 44px; } }

/* ---- Menu & Prices: premium ---- */
.index-page .menu-prices { background: linear-gradient(180deg, #ffffff, #fbf3e7); }
.index-page .price-grid { gap: 30px; }
.index-page .price-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
  padding: 0;
}
.index-page .price-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--grad-gold);
}
.index-page .price-card > * { padding-left: 34px; padding-right: 34px; }
.index-page .price-card .pc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 0; padding-top: 30px; padding-bottom: 18px; border: 0; position: relative;
}
.index-page .price-card .pc-head::after {
  content: ""; position: absolute; left: 34px; right: 34px; bottom: 0; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(46,27,18,.25) 0 6px, transparent 6px 12px);
}
.index-page .pc-kicker {
  display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px;
}
.index-page .pc-title h3 { margin: 0; font-size: 1.6rem; }
.index-page .price-card .pc-sizes { display: flex; gap: 8px; }
.index-page .price-card .pc-sizes span {
  background: var(--grad-gold); color: #3a2410; font-size: .7rem; font-weight: 700;
  padding: 6px 13px; border-radius: 999px; letter-spacing: .02em; white-space: nowrap;
}
.index-page .price-cols { padding-top: 18px; padding-bottom: 8px; column-gap: 40px; }
.index-page .price-row { padding: 9px 10px; border-radius: 8px; transition: background .2s; }
.index-page .price-row:hover { background: var(--cream); }
.index-page .price-row .nm { font-weight: 500; }
.index-page .price-row .pr { font-variant-numeric: tabular-nums; }
.index-page .price-card.specials { background: var(--grad-choco); border-color: transparent; }
.index-page .price-card.specials::before { background: var(--grad-gold); }
.index-page .price-card.specials .pc-title h3,
.index-page .price-card.specials .price-row .nm { color: #fff; }
.index-page .price-card.specials .pc-head::after { background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 12px); }
.index-page .price-card.specials .price-row:hover { background: rgba(255,255,255,.07); }
.index-page .price-card.specials .price-row .pr { color: var(--honey-1); }
.index-page .price-card.specials .price-row .dots { border-bottom-color: rgba(255,255,255,.25); }
.index-page .price-card .shake-title { padding-top: 18px; margin: 0 0 12px; color: var(--honey-1); font-family: var(--display); font-style: italic; }
.index-page .price-card.specials .pc-note { color: #c9b6a2; padding-bottom: 28px; }
.index-page .price-card.specials .shake-line span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; }

/* ---- Growth / Expansion ---- */
.index-page .growth { background: var(--surface); overflow: hidden; }
.index-page .growth .accent {
  background: linear-gradient(120deg, var(--honey-2), var(--berry));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.index-page .growth-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 8px 0 16px; }
.index-page .growth p { font-size: 1.05rem; max-width: 540px; }
.index-page .stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 26px 0 30px; max-width: 520px; }
.index-page .stat { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.index-page .stat .num { display: block; font-family: var(--display); font-weight: 700; font-size: 2.3rem; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.index-page .stat .num small { font-size: 1.3rem; -webkit-text-fill-color: var(--gold-deep); }
.index-page .stat .lbl { display: block; margin-top: 6px; font-size: .82rem; font-weight: 500; color: var(--muted); }

.index-page .growth-map {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow-md);
}
.index-page .growth-map .real-map { width: 100%; height: 430px; border: 0; display: block; }
.index-page .map-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; background: var(--grad-choco); color: #fff; padding: 14px 20px; }
.index-page .map-strip span { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; }
.index-page .map-strip i { color: var(--honey-1); }
.index-page .map-strip .dot-ker i { color: #57b246; font-size: .7rem; }
.index-page .map-strip .dot-tn i { color: #ecab36; font-size: .7rem; }
@media (max-width: 991px) { .index-page .growth-map .real-map { height: 340px; } }

/* Shaped Kerala + Tamil Nadu map */
.index-page .ilmap { width: 100%; height: auto; display: block; background: linear-gradient(180deg, #eaf6fb, #dbeef6); }
.index-page .ilmap .sea { fill: transparent; }
.index-page .ilmap .ker { filter: drop-shadow(0 12px 18px rgba(20,80,30,.28)); }
.index-page .ilmap .tn { filter: drop-shadow(0 12px 18px rgba(150,90,20,.25)); }
.index-page .ilmap .state-lbl { font-family: var(--body); font-weight: 700; font-size: 15px; letter-spacing: .12em; fill: rgba(255,255,255,.85); }
.index-page .ilmap .state-lbl.tn-lbl { fill: rgba(90,55,15,.75); }
.index-page .ilmap .bp .dot { fill: #e23744; stroke: #fff; stroke-width: 2; }
.index-page .ilmap .bp .ring { fill: none; stroke: #e23744; stroke-width: 2.5; opacity: .8;
  transform-box: fill-box; transform-origin: center; animation: ilPin 2.4s ease-out infinite; animation-delay: var(--d); }
.index-page .ilmap .lbl { font-family: var(--body); font-size: 13px; font-weight: 600; fill: #243240;
  paint-order: stroke; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; }
.index-page .ilmap .lbl.end { text-anchor: end; }
.index-page .ilmap .leader { stroke: rgba(36,50,64,.45); stroke-width: 1.2; stroke-dasharray: 2 3; }
@media (prefers-reduced-motion: reduce) { .index-page .ilmap .bp .ring { animation: none; } }
.index-page .map-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: var(--choco); box-shadow: var(--shadow-sm);
}
.index-page .map-badge i { color: var(--gold-deep); }
.index-page .kmap { width: 100%; height: auto; display: block; max-height: 460px; }
.index-page .kmap .land { filter: drop-shadow(0 18px 30px rgba(224,124,42,.30)); }
.index-page .kmap .route { fill: none; stroke: #8a5a2a; stroke-width: 2.2; stroke-dasharray: 3 7; stroke-linecap: round; opacity: .6; animation: ilDash 16s linear infinite; }
@keyframes ilDash { to { stroke-dashoffset: -200; } }
.index-page .kmap .pin .dot { fill: #3a2410; }
.index-page .kmap .pin.big .dot { fill: var(--berry); }
.index-page .kmap .pin .ring { fill: none; stroke: #3a2410; stroke-width: 2; opacity: .7;
  transform-box: fill-box; transform-origin: center; animation: ilPin 2.4s ease-out infinite; animation-delay: var(--d); }
.index-page .kmap .pin.big .ring { stroke: var(--berry); }
@keyframes ilPin { 0% { transform: scale(.45); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
.index-page .kmap .lbl { font-family: var(--body); font-size: 13px; font-weight: 600; fill: #3a2410; }
.index-page .kmap .lbl.end { text-anchor: end; }
@media (prefers-reduced-motion: reduce) { .index-page .kmap .route, .index-page .kmap .pin .ring { animation: none; } }
@media (max-width: 991px) { .index-page .growth-map { margin-top: 30px; } .index-page .kmap { max-height: 380px; } }

/* ---- Stunning floating social stack ---- */
.index-page .wa-float { display: none; }
.index-page .social-float { position: fixed; right: 22px; bottom: 84px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.index-page .social-float .sf-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 10px 26px rgba(46,27,18,.28);
  transform: translateY(0); transition: transform .25s, box-shadow .25s; position: relative;
}
.index-page .social-float .sf-btn:hover { transform: translateY(-4px) scale(1.06); color: #fff; box-shadow: 0 16px 32px rgba(46,27,18,.35); }
.index-page .social-float .sf-wa { background: #25d366; }
.index-page .social-float .sf-ig { background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #bc1888 90%); }
.index-page .social-float .sf-fb { background: #1877f2; }
.index-page .social-float .sf-wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
  animation: ilWa 2.4s ease-out infinite;
}
@keyframes ilWa { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 575px) { .index-page .social-float { gap: 10px; } .index-page .social-float .sf-btn { width: 46px; height: 46px; font-size: 1.3rem; } }

/*======================================================================
  TREND / PLAYFUL LAYER — modern, fun, still on-brand
======================================================================*/
/* Sprinkle dot pattern on key sections (fades at edges) */
.index-page section > .container { position: relative; z-index: 1; }
.index-page .menu::before,
.index-page .menu-prices::before,
.index-page .gallery::before,
.index-page .growth::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(232,155,45,.16) 1.6px, transparent 1.8px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

/* Twinkling sparkles */
@keyframes ilTwinkle { 0%,100% { transform: scale(1) rotate(0); opacity: .9; } 50% { transform: scale(1.4) rotate(18deg); opacity: .4; } }
.index-page .section-title h2::after {
  content: " ✦"; color: var(--gold); font-size: .55em; vertical-align: super;
  display: inline-block; animation: ilTwinkle 3s ease-in-out infinite;
}
.index-page .hero-images { position: relative; }
.index-page .hero-images::before {
  content: "✦"; position: absolute; top: -14px; left: -8px; z-index: 3;
  color: var(--honey-1); font-size: 1.8rem; animation: ilTwinkle 2.6s ease-in-out infinite;
}
.index-page .hero-images::after {
  content: "✦"; position: absolute; bottom: 6px; right: -6px; z-index: 3;
  color: var(--berry); font-size: 1.3rem; animation: ilTwinkle 3.4s ease-in-out infinite .5s;
}

/* Animated honey glow blob behind hero */
.index-page .hero::before {
  content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -100px; z-index: 0;
  background: radial-gradient(circle, rgba(246,185,59,.30), transparent 62%);
  animation: ilBlob 9s ease-in-out infinite; pointer-events: none;
}
@keyframes ilBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-22px,22px) scale(1.08); } }

/* Wobble the handcrafted sticker */
@keyframes ilWobble { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.index-page .hero-badge { animation: ilWobble 4.5s ease-in-out infinite; }

/* Sticker-style primary buttons (hard offset shadow) */
.index-page .btn-primary-il { box-shadow: 4px 4px 0 rgba(46,27,18,.16); }
.index-page .btn-primary-il:hover { box-shadow: 6px 6px 0 rgba(46,27,18,.22); transform: translateY(-3px) rotate(-1deg); }

/* Playful card micro-tilt on hover */
.index-page .menu-item:hover { transform: translateY(-8px) rotate(-1deg); }
.index-page .stat:hover { transform: translateY(-4px) rotate(1deg); transition: transform .25s; }

/* Bouncy nav pills underline already present; add pill hover lift */
.index-page .menu-filters .nav-link:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .index-page .hero-badge, .index-page .hero::before,
  .index-page .section-title h2::after,
  .index-page .hero-images::before, .index-page .hero-images::after { animation: none; }
}
