/* ============================================================
   LUKU SWEET PUFFS — DESKTOP-FIRST STYLESHEET
   ============================================================
   Architecture:
   01. Reset & Base
   02. CSS Custom Properties
   03. Utility Classes
   04. Navigation
   05. Mobile Menu
   06. Hero Section
   07. Marquee Ticker
   08. Trust Cards
   09. Products / Bestsellers Grid
   10. Category Cards
   11. About Section
   12. Occasions Section (Homepage)
   13. Order CTA Section
   14. Loyalty Section
   15. Footer
   16. WhatsApp Float
   17. POPIA Banner
   18. Page Loader
   19. Menu Hub Page
   20. Product Category Pages
   21. Filter Tabs
   22. Menu Category Sections
   23. Contact Page
   24. Store Cards
   25. Promos Page
   26. Boxes / Gifting Page
   27. About Page Specifics
   28. Ice Cream Page
   29. 404 Page
   30. Catering / Occasions Page
   31. Scroll Animations
   ============================================================ */


/* ============================================================
   01. RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.loading body {
  overflow: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background-color: #fff;
}

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

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

button {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}


/* ============================================================
   02. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand colours */
  --pink:        #d5186d;
  --pink-light:  #fce4ef;
  --teal:        #60cbc7;
  --teal-dark:   #02aca7;
  --blue:        #41afe8;
  --yellow:      #ffd76b;
  --yellow-dark: #f6b641;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --off-white:   #fff9fc;
  --light-pink:  #fce4ef;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14), 0 16px 48px rgba(0,0,0,0.10);
  --shadow-card: 0 2px 20px rgba(213,24,109,0.08), 0 8px 32px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================================
   03. UTILITY CLASSES
   ============================================================ */

/* Container — base is desktop (40px padding) */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1023px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Section spacing — base is desktop (96px) */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 1023px) {
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Text alignment */
.text-center {
  text-align: center;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--r-full);
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s ease, color 0.18s ease;
  min-height: 48px;
  width: auto;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  gap: 8px;
}

@media (max-width: 479px) {
  .btn {
    width: 100%;
  }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  background: #b8125d;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: #333;
}

.btn-white {
  background: var(--white);
  color: var(--pink);
}

.btn-white:hover {
  background: #f5f5f5;
}

.btn-teal {
  background: var(--teal);
  color: var(--black);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
  font-family: inherit;
}

/* Centre section headers when they are direct children of .container
   (skips about-grid / two-col layouts where they live inside .about-text) */
.container > .section-label {
  display: block;
  text-align: center;
}

/* ---- Section Title ---- */
.section-title {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* ---- Section Sub ---- */
.section-sub {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.65;
  max-width: 560px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  display: block;
}

.container > .section-sub {
  text-align: center;
}


/* ============================================================
   04. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--pink);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Base = desktop: 72px height, 24px padding */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}

@media (max-width: 479px) {
  .nav-inner {
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .nav-inner {
    height: 64px;
  }
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Base = desktop: visible */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
  padding-right: 48px;
  padding: 0;
  margin: 0;
  align-items: center;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Base = desktop: visible */
.nav-btn {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .nav-btn {
    display: none;
  }
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-btn-store {
  background: var(--yellow);
  color: var(--black);
}

.nav-btn-order {
  background: white;
  color: var(--pink);
}

/* Base = desktop: hidden */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-sm);
  transition: background 0.2s ease;
}

@media (max-width: 767px) {
  .nav-burger {
    display: flex;
  }
}

.nav-burger:hover {
  background: rgba(255,255,255,0.12);
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   05. MOBILE MENU
   ============================================================ */

/* Base = desktop: hidden */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--pink);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 99;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-menu a {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--yellow);
}

.mobile-menu-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* ============================================================
   06. HERO SECTION
   ============================================================ */

/* Base = desktop: center aligned, 72px top padding */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 64px;
    align-items: flex-end;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-img-motion 16s ease-out forwards;
}

@media (max-width: 767px) {
  .hero-bg {
    background-position: center 65%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
  }
}

/* Base = desktop: 60px 40px padding */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 40px;
}

@media (max-width: 1023px) {
  .hero-content {
    padding: 40px 24px;
  }
}

@media (max-width: 479px) {
  .hero-content {
    padding: 40px 16px;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Base = desktop: row */
.hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 479px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Delivery platform buttons — base = desktop */
.delivery-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border-radius: var(--r-full);
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
  min-height: 56px;
  font-weight: 700;
  font-family: inherit;
}

@media (max-width: 479px) {
  .delivery-btn {
    padding: 8px 16px;
    min-height: 44px;
    gap: 10px;
  }
}

.delivery-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Base = desktop: 32px */
.delivery-btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 479px) {
  .delivery-btn-icon {
    width: 24px;
    height: 24px;
  }
}

.delivery-btn-label small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-btn-label strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}

/* Scroll hint — base = desktop: visible */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  gap: 8px;
  animation: pulse 2s infinite;
  cursor: default;
}

@media (max-width: 767px) {
  .hero-scroll-hint {
    display: none;
  }
}

/* Hero animations */
@keyframes hero-img-motion {
  0%   { transform: scale(1.12); }
  100% { transform: scale(1) translateY(-2%); }
}

@keyframes pulse {
  0%,  100% { opacity: 0.5; }
  50%        { opacity: 1;   }
}


/* ============================================================
   07. MARQUEE TICKER
   ============================================================ */

.marquee-wrap {
  overflow: hidden;
  background: var(--yellow);
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   08. TRUST CARDS
   ============================================================ */

.trust-section {
  background: var(--off-white);
}

/* Base = desktop: 4 columns */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1023px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.6;
}


/* ============================================================
   09. PRODUCTS / BESTSELLERS GRID
   ============================================================ */

/* Base = desktop: 3 columns */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Image wrapper div — used in homepage/boxes cards */
.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image div wrapper — used in boxes page */
div.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

div.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image as a direct img element — used in classic/stuffed/drinks pages */
img.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Base = desktop: larger padding */
.product-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  text-align: left;
  flex-direction: column;
}

@media (max-width: 479px) {
  .product-card-body {
    padding: 16px 18px 20px;
  }
}

.product-cat {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 6px;
}

/* Base = desktop: 1.1rem */
.product-name {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

@media (max-width: 479px) {
  .product-name {
    font-size: 1rem;
  }
}

.product-desc {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.5;
  flex: 1;
}

.product-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
  width: fit-content;
}


/* ============================================================
   10. CATEGORY CARDS
   ============================================================ */

/* Base = desktop: 3 columns (like product grid) */
.cats-grid,
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  .cats-grid,
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .cats-grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.cat-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.cat-name {
  font-size: 1.05rem;
  font-weight: 900;
}

.cat-sub {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.6;
  line-height: 1.4;
}


/* ============================================================
   11. ABOUT SECTION
   ============================================================ */

/* Base = desktop: 2-col, 72px gap */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  align-items: center;
}

@media (max-width: 1023px) {
  .about-grid {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Base = desktop: portrait */
.about-media-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .about-media-img {
    aspect-ratio: 4 / 3;
  }
}

.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--pink);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: var(--r-full);
}

.about-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: var(--r-full);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Base = desktop: 1.05rem */
.about-text p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .about-text p {
    font-size: 0.95rem;
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-item {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 16px 12px;
}

/* Base = desktop: 2rem */
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  display: block;
}

@media (max-width: 479px) {
  .stat-num {
    font-size: 1.6rem;
  }
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}


/* ============================================================
   12. OCCASIONS SECTION (HOMEPAGE)
   ============================================================ */

/* Base = desktop: 2-col */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

@media (max-width: 767px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

.occasions-media {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.occasions-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.occ-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.occ-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.occ-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}


/* ============================================================
   13. ORDER CTA SECTION
   ============================================================ */

.order-section {
  background: var(--pink);
  text-align: center;
}

.order-section h2,
.order-section .section-title {
  color: white !important;
}

.order-section .section-label {
  background: rgba(255,255,255,0.2);
  color: white !important;
}

.order-section .section-sub,
.order-section p {
  color: rgba(255,255,255,0.85) !important;
  margin: 0 auto;
  max-width: 540px;
}

/* Base = desktop: row */
.order-platforms {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

@media (max-width: 479px) {
  .order-platforms {
    flex-direction: column;
  }
}

/* --- Puff Points loyalty section (index bottom CTA) --- */
.puff-points-section {
  background: var(--pink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.puff-points-inner {
  position: relative;
  z-index: 1;
}

.puff-points-label {
  background: var(--yellow);
  color: var(--black) !important;
  margin-bottom: 20px;
}

.puff-points-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.puff-points-sub {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.puff-points-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 16px;
}

.puff-points-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: var(--black);
  outline: none;
}

.puff-points-form input[type="email"]::placeholder {
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}

.puff-points-disclaimer {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}


/* ============================================================
   14. LOYALTY SECTION
   ============================================================ */

/* Base = desktop: larger padding */
.loyalty-wrap {
  background: white;
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

@media (max-width: 767px) {
  .loyalty-wrap {
    padding: 36px 24px;
  }
}

/* Base = desktop: row */
.loyalty-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  max-width: 420px;
  margin: 24px auto 0;
}

@media (max-width: 479px) {
  .loyalty-form {
    flex-direction: column;
  }
}

.loyalty-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e8e8e8;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease;
  min-height: 48px;
}

.loyalty-input:focus {
  border-color: var(--pink);
}

.loyalty-note {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.5;
  margin-top: 16px;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  color: white;
  padding: 48px 0 0;
}

/* Base = desktop: brand col + 3 nav cols via display:contents on nav */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 1023px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo-link img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-wordmark {
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.55;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* nav with display:contents so its children participate in the parent grid */
.footer-nav {
  display: contents;
}

.footer-nav-col h4 {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.footer-nav-col a:hover {
  opacity: 1;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s ease, transform 0.18s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.social-icon:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

/* Base = desktop: row */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  gap: 8px;
  font-size: 0.82rem;
  opacity: 0.45;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

.footer-bottom a {
  color: white;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 1;
}


/* ============================================================
   16. WHATSAPP FLOAT
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.wa-float.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(213,24,109,0.4);
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(213,24,109,0.55);
}

.wa-dismiss {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #555;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 900;
  transition: background 0.2s ease;
  line-height: 1;
}

.wa-dismiss:hover {
  background: #333;
}


/* ============================================================
   17. POPIA BANNER
   ============================================================ */

.popia {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 16px;
}

.popia.show {
  transform: translateY(0);
}

/* Base = desktop: row */
.popia-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 599px) {
  .popia-inner {
    flex-direction: column;
  }
}

.popia-text {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.5;
}

.popia-text a {
  color: var(--pink);
  font-weight: 700;
}

.popia-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.popia-btn {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  min-height: 44px;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.popia-btn:hover {
  transform: translateY(-1px);
}

.popia-accept {
  background: var(--pink);
  color: white;
}

.popia-decline {
  background: #f0f0f0;
  color: #555;
}


/* ============================================================
   18. PAGE LOADER
   ============================================================ */

#luku-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

#luku-loader.slide-out {
  transform: translateY(-100%);
}

#luku-loader-logo {
  width: 140px;
  opacity: 0;
  transform: scale(0.75);
  animation: loader-logo-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

#luku-loader-tagline {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  animation: loader-fade-in 0.4s ease 0.5s forwards;
  letter-spacing: 0.08em;
}

#luku-loader-dots {
  display: flex;
  gap: 8px;
}

#luku-loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  animation: loader-dot-pulse 1.2s ease-in-out infinite;
}

#luku-loader-dots span:nth-child(1) { animation-delay: 0s;   }
#luku-loader-dots span:nth-child(2) { animation-delay: 0.2s; }
#luku-loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loader-logo-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-fade-in {
  to { opacity: 0.8; }
}

@keyframes loader-dot-pulse {
  0%,  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}


/* ============================================================
   19. MENU HUB PAGE
   ============================================================ */

/* Base = desktop: 3 columns */
.menu-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .menu-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .menu-hub-grid {
    grid-template-columns: 1fr;
  }
}

.menu-hub-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.menu-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-hub-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.menu-hub-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.menu-hub-card-tag {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.menu-hub-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.menu-hub-card p {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.menu-hub-card-count {
  font-size: 0.82rem;
  font-weight: 800;
}


/* ============================================================
   20. PRODUCT CATEGORY PAGES
   ============================================================ */

/* Base = desktop */
.page-hero {
  background: var(--pink);
  padding: 100px 0 56px;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 80px 0 48px;
  }
}

.page-hero-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero .section-label {
  background: rgba(255,255,255,0.2);
  color: white;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 900;
  color: white;
  margin: 12px 0;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-sep {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* Base = desktop: 3 columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Badge in card body (classic/stuffed pages) */
.product-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
  width: fit-content;
}

/* Badge overlaying the image — inside img wrapper */
.product-card-img-wrap .product-card-badge,
div.product-card-img .product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-bottom: 0;
  z-index: 2;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.55;
}

.product-card-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--pink);
  margin-top: 10px;
}


/* ============================================================
   21. FILTER TABS
   ============================================================ */

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 32px;
  -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 12px 20px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  background: #f0f0f0;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  font-family: inherit;
  min-height: 44px;
}

.filter-tab:hover {
  background: #e0e0e0;
}

.filter-tab.active {
  background: var(--pink);
  color: white;
}


/* ============================================================
   22. MENU CATEGORY SECTIONS
   ============================================================ */

.menu-section {
  margin-bottom: 64px;
}

.menu-section-header {
  margin-bottom: 28px;
}

.menu-section h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
}


/* ============================================================
   23. CONTACT PAGE
   ============================================================ */

/* Base = desktop: 2-col */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 4px;
}

.contact-detail-text a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s ease;
}

.contact-detail-text a:hover {
  color: var(--pink);
}

/* Base = desktop: larger padding */
.form-wrap {
  background: white;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 479px) {
  .form-wrap {
    padding: 28px 20px;
  }
}

/* Base = desktop: 2-col */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 479px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  background: white;
  color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  background: white;
}

.form-control:focus {
  border-color: var(--pink);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}


/* ============================================================
   24. STORE CARDS
   ============================================================ */

/* Base = desktop: 2x2 grid */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.store-card-header {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.store-card-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  margin: 0;
}

.store-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.store-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--pink);
}

.store-detail a,
.store-detail span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.6;
}

.store-detail a:hover {
  color: var(--pink);
}

.store-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.store-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.store-hour-row span:first-child {
  font-weight: 700;
  color: #555;
}

.store-hour-row span:last-child {
  font-weight: 600;
  color: #777;
}

.store-address {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  line-height: 1.6;
  padding: 10px 0 20px;
}

.store-directions-btn {
  display: block;
  text-align: center;
  background: var(--light-pink);
  color: var(--pink);
  font-weight: 900;
  font-size: 0.88rem;
  padding: 14px;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.store-directions-btn:hover {
  background: var(--pink);
  color: white;
}


/* ============================================================
   25. PROMOS PAGE
   ============================================================ */

/* Base = desktop: 2 columns */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .promos-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.promo-card-body {
  padding: 48px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.promo-badge {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  width: fit-content;
}

.promo-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.promo-terms {
  font-size: 0.72rem;
  opacity: 0.45;
  margin-top: 10px;
  font-weight: 600;
}


/* ============================================================
   26. BOXES / GIFTING PAGE
   ============================================================ */

.box-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.box-size-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 16px;
  text-align: center;
}

.box-size-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 4px;
}

.box-size-card span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.6;
}


/* ============================================================
   27. ABOUT PAGE SPECIFICS
   ============================================================ */

/* Base = desktop: 3 columns */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  border-radius: var(--r-xl);
  padding: 40px 32px;
  color: #fff;
}

.value-card.v1 { background: var(--pink); }
.value-card.v2 { background: var(--yellow); color: var(--black); }
.value-card.v3 { background: var(--black); }

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: inherit;
}

.value-card p {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.7;
  color: inherit;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.65;
}

/* Base = desktop: larger padding */
.brand-quote {
  background: var(--pink);
  border-radius: var(--r-xl);
  padding: 52px 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .brand-quote {
    padding: 40px 28px;
  }
}

.brand-quote blockquote {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: normal;
}

.brand-quote cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

.stat-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}


/* ============================================================
   28. ICE CREAM PAGE
   ============================================================ */

.ice-cream-hero-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

/* Base = desktop: 3 columns */
.pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .pairing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .pairing-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   29. 404 PAGE
   ============================================================ */

.error-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.error-code {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}

.error-page h1 {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.error-page p {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.65;
  max-width: 400px;
  margin-bottom: 32px;
}

/* Base = desktop: row */
.error-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 479px) {
  .error-btns {
    flex-direction: column;
  }
}


/* ============================================================
   30. CATERING / OCCASIONS PAGE
   ============================================================ */

/* Base = desktop: 2 columns */
.occasions-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .occasions-boxes {
    grid-template-columns: 1fr;
  }
}

.occasion-box-card {
  border-radius: var(--r-xl);
  padding: 32px 28px;
}

.occasion-box-card.classic {
  background: var(--off-white);
}

.occasion-box-card.premium {
  background: var(--pink);
}

.occasion-box-card.premium h3,
.occasion-box-card.premium h4,
.occasion-box-card.premium p,
.occasion-box-card.premium li,
.occasion-box-card.premium span,
.occasion-box-card.premium strong {
  color: white;
}

.occasion-box-card.premium .secondary-text {
  color: rgba(255,255,255,0.75);
}

/* Base = desktop: 3 columns */
.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .perfect-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .perfect-for-grid {
    grid-template-columns: 1fr;
  }
}

.perfect-for-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}


/* ============================================================
   31. SCROLL ANIMATIONS
   ============================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  #luku-loader-logo,
  #luku-loader-tagline,
  #luku-loader-dots span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   SUPPLEMENTARY — Inner page components
   ============================================================ */

/* --- Delivery buttons wrapper --- */
.delivery-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --- About list --- */
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}
.about-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* --- Occasion cards (catering page) — base = desktop: 3 columns --- */
.occasions-grid.card-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .occasions-grid.card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .occasions-grid.card-grid {
    grid-template-columns: 1fr;
  }
}
.occasion-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.occasion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.occasion-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.occasion-card p {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0;
}

/* --- Box options grid (catering page) — base = desktop: 2 columns --- */
.box-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 767px) {
  .box-options-grid {
    grid-template-columns: 1fr;
  }
}
.box-option-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.box-option-card.featured {
  box-shadow: 0 4px 32px rgba(213,24,109,0.18);
  border: 2px solid var(--pink);
}
.box-option-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.box-option-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.box-option-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.box-option-name {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.box-option-desc {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.65;
  margin-bottom: 16px;
}
.box-option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.box-option-features li {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-option-features li::before {
  content: '✓';
  color: var(--teal-dark);
  font-weight: 900;
}

/* --- Steps / How it works — base = desktop: 4 columns --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.step-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pink);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.65;
  margin: 0;
}

/* --- Contact split layout --- */
.contact-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 100vh;
}
.contact-split-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--pink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.contact-split-panel-top {
  padding: 40px 36px 24px;
  z-index: 1;
}
.contact-split-panel-top img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.contact-split-panel-img {
  flex: 1;
  overflow: hidden;
}
.contact-split-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.contact-split-panel-bottom {
  padding: 28px 36px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
.contact-split-panel-bottom h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 6px;
}
.contact-split-panel-bottom p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
.contact-split-right {
  background: #fff;
  padding: 40px 64px;
  height: 100vh;
  overflow-y: auto;
}
.contact-split-right h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.contact-split-right > p {
  font-size: 0.9rem;
  color: rgba(26,26,26,0.6);
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .contact-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .contact-split-panel {
    position: static;
    height: 340px;
  }
  .contact-split-right {
    padding: 48px 32px;
  }
}
@media (max-width: 767px) {
  .contact-split-right {
    padding: 40px 20px;
  }
}

/* --- Contact layout — base = desktop: 2 columns --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.contact-form-col h2,
.contact-details-col h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 28px;
}
.contact-form-col {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 40px;
}

/* --- Contact detail item --- */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-detail-item:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(213,24,109,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}
.contact-detail-item h4 {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin: 0 0 4px;
}
.contact-detail-item a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}
.contact-detail-item a:hover {
  color: var(--pink);
}

/* --- Store card — revised layout with coloured header --- */
.store-card {
  padding: 0;
  overflow: hidden;
}
.store-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}
.store-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.store-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-directions-btn {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
  justify-content: center;
}

/* --- Outline button variants --- */
.btn-outline-pink {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: white;
}
.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-teal:hover {
  background: var(--teal-dark);
  color: white;
}
.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: white;
}

/* --- Promo page — portrait split layout --- */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}
@media (max-width: 767px) {
  .promo-split {
    grid-template-columns: 1fr;
  }
}
.promo-split-media {
  position: relative;
  min-height: 480px;
}
.promo-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.promo-poster-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--r-full);
}
.promo-split-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.promo-split-title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
}
.promo-split-desc {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.7;
  margin-top: -12px;
}
.promo-split-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.promo-split-detail {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.promo-split-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 4px;
}
.promo-split-detail p {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}
.promo-order-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-title {
  font-size: 1.4rem;
  font-weight: 900;
}
.promo-desc {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.65;
}
.promo-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-features li {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 900;
}
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- Social follow buttons --- */
.social-follow-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --- 404 error page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.error-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.error-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.error-num {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.error-puff {
  font-size: clamp(3rem, 10vw, 5rem);
}
.error-inner h1 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.error-inner > p {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 32px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.error-links {
  font-size: 0.875rem;
}
.error-links p {
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 12px;
}
.error-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.error-links a {
  color: var(--pink);
  font-weight: 800;
  text-decoration: none;
}
.error-links a:hover {
  text-decoration: underline;
}
