html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fff9fb;
  --bg-alt: #ffffff;
  --primary-hover: #6796ff;
  --primary-dark: #0F2854;
  --primary: #0c2e77;
  --accent: #023E8A;
  --text: #333033;
  --muted: #77727a;
  --border-soft: #f0d7e3;
  --btn-secondary-border: #002067;
  --btn-secondary-text: #002067;
  --btn-secondary-hover-bg: #fff1f6;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --container-width: 1080px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  animation: pageFadeIn 0.8s ease-out;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--primary);
  padding: 8px;
}

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

.logo {
  width: 200px;
  height: 70px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.logo-mark {
  background: var(--accent);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(233, 122, 169, 0.28);
}

.logo-text {
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--bg);
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary-hover);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #dc0981 0%, #ff4ba5 100%);
  color: white !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(220, 9, 129, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: navPulse 2s infinite;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(220, 9, 129, 0.4);
  background: linear-gradient(135deg, #ff4ba5 0%, #dc0981 100%);
  text-decoration: none;
}

@keyframes navPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 9, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(220, 9, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 9, 129, 0);
  }
}

/* Hamburger - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--accent);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

body.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero {
  padding: 2.5rem 0 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--bg-alt);
}

.hero-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.12;
  animation: blobFloat 12s infinite ease-in-out;
}

.h-blob-1 {
  width: 600px;
  height: 600px;
  background: #ff4ba5;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.h-blob-2 {
  width: 500px;
  height: 500px;
  background: #0c2e77;
  bottom: -100px;
  left: -150px;
  animation-delay: -4s;
}

.h-blob-3 {
  width: 400px;
  height: 400px;
  background: #dc0981;
  top: 30%;
  left: 20%;
  animation-delay: -8s;
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(139, 182, 79, 0.4), transparent),
    radial-gradient(3px 3px at 50% 50%, rgba(107, 114, 217, 0.3), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(139, 182, 79, 0.35), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 15% 90%, rgba(107, 114, 217, 0.3), transparent);
  background-size: 200% 200%, 180% 180%, 220% 220%, 190% 190%, 210% 210%, 170% 170%, 200% 200%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 100% 0%, 0% 100%, 50% 0%, 0% 50%;
  animation: particlesFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Glowing orbs in background */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 00px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 182, 79, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* SVG Path Animation for Hero */
.hero-path-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hidden-paths {
  position: absolute;
  visibility: hidden;
}

.path-cake {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.4;
  filter: blur(0.5px);
  z-index: 1;
  offset-rotate: auto 180deg;
  animation: pathGlide linear infinite;
}

@keyframes pathGlide {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  10%,
  90% {
    opacity: 0.4;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.cake-1 {
  offset-path: path("M -100 250 Q 250 50 500 250 T 1100 250");
  animation-duration: 35s;
  animation-delay: 0s;
}

.cake-2 {
  offset-path: path("M 1100 100 Q 750 450 500 100 T -100 100");
  animation-duration: 40s;
  animation-delay: -5s;
}

.cake-3 {
  offset-path: path("M -100 400 Q 250 -100 500 400 T 1100 400");
  animation-duration: 30s;
  animation-delay: -15s;
}

.cake-4 {
  offset-path: path("M 1100 300 Q 500 0 0 300 T -100 300");
  animation-duration: 38s;
  animation-delay: -20s;
}

.path-cake:hover {
  opacity: 0.8;
  filter: blur(0);
  scale: 1.2;
  transition: all 0.5s ease;
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: heroSlideUp 0.9s ease-out;
}

/* Add glowing effect behind hero content */
.hero-text::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 114, 217, 0.2) 0%, transparent 70%);
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.hero-text {
  position: relative;
}

.brand-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.veg-dot {
  width: 12px;
  height: 12px;
  background: #00843D;
  border-radius: 2px;
  border: 1px solid white;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 132, 61, 0.5);
  position: relative;
}

.veg-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #00843D;
  border-radius: 50%;
}

.hero-text h1 {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw + 1rem, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #dc0981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 4s linear infinite;
  filter: drop-shadow(0 4px 15px rgba(12, 46, 119, 0.1));
  letter-spacing: -1px;
  white-space: nowrap;
}

.brand-tagline {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.8rem);
  font-weight: 400;
  color: var(--muted);
  opacity: 0.9;
  font-family: "Lora", serif;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-tagline::after {
  content: '';
  flex-grow: 0;
  width: 60px;
  height: 2px;
  background: #dc0981;
  border-radius: 2px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  margin: 0 0 2rem;
  color: var(--text);
  font-size: 1.1rem;
  max-width: 90%;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-text-subtitle {
  font-weight: 600;
  opacity: 1;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 207, 223, 0.8);
  margin-top: 1.5rem;
}

.hero-card {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/3;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: scale(1.02) rotate(1deg);
}

.btn-primary {
  color: var(--bg);
  padding: 8px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 8px;
  background-color: #dc0981;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
  background-color: #e03294;
  color: #fff;
  text-decoration: none;
}

.btn-hero-order {
  background-color: var(--primary) !important;
  color: white !important;
  border: 2px solid var(--primary) !important;
  gap: 0.8rem;
  box-shadow: 0 10px 20px rgba(12, 46, 119, 0.2);
}

.btn-hero-order:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(12, 46, 119, 0.3);
  color: white !important;
}

.btn-hero-menu {
  background-color: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  gap: 0.8rem;
}

.btn-hero-menu:hover {
  background-color: var(--primary) !important;
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(12, 46, 119, 0.2);
}

.btn-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-hero-order:hover .btn-icon,
.btn-hero-menu:hover .btn-icon {
  transform: rotate(-10deg) scale(1.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2rem 0 1rem;
}

.hero-actions .btn:nth-child(1) {
  animation: fadeInUp 1s ease-out 0.5s both, pulse 2s ease-in-out 2s infinite;
}

.hero-actions .btn:nth-child(2) {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 550;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
}

.btn-outline {
  padding: 8px;
  text-align: center;
  transition: 0.4s ease;
  border-radius: 8px;
  background: transparent;
  color: white;
  border: 2px solid #dc0981;
  height: 48px;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border: 2px solid #e03294;
  color: #dc0981;
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--muted);
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: fadeInUp 2s ease-out 1.5s both;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollWheel {

  0%,
  20% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes scrollBounce {

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

  50% {
    transform: translateY(5px);
  }
}


.hero-image {
  display: flex;
  justify-content: center;
  height: 100%;
}

.hero-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  scale: 1.2;
}

/* Top Picks Showcase */
.top-picks-showcase {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(107, 114, 217, 0.2);
  animation: fadeInScale 1s ease-out 0.4s both, showcaseGlow 3s ease-in-out 1.5s infinite;
}

.showcase-header {
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Lora", serif;
  font-style: italic;
}

.showcase-header h3 {
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
  color: var(--primary);
  font-weight: 700;
}

.showcase-header p {
  font-size: 0.9rem;
  color: #dc0981;
  margin: 0;
}

.showcase-slider {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.showcase-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-image {
  width: 100%;
  /* aspect-ratio: 16/10; */
  border-radius: 12px;
  /* overflow: hidden; */
}

.showcase-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: showcaseFloat 3s ease-in-out infinite;
}

.showcase-placeholder img {
  width: 100%;
  height: auto;
}

.showcase-info {
  text-align: center;
}

.showcase-info h4 {
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.showcase-indicators {
  display: flex;
  justify-content: center;
}

.showcase-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-indicator.active {
  background: #fff;
  width: 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

@keyframes showcaseFloat {

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

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* New Animation Keyframes */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes particlesFloat {

  0%,
  100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 100% 0%, 0% 100%, 50% 0%, 0% 50%;
    opacity: 1;
  }

  50% {
    background-position: 100% 100%, 0% 0%, 70% 70%, 0% 100%, 100% 0%, 70% 100%, 100% 50%;
    opacity: 0.8;
  }
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  33% {
    transform: translate(-100px, 100px) scale(1.1);
    opacity: 0.8;
  }

  66% {
    transform: translate(50px, -50px) scale(0.9);
    opacity: 0.6;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes showcaseGlow {

  0%,
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(107, 114, 217, 0.2);
  }

  50% {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 60px rgba(107, 114, 217, 0.4);
  }
}


.hero-cake-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #ffe5f1, #ffd1df, #ffe8d6, #ffe5f1);
  box-shadow: inset 0 0 0 10px #fff;
  animation: floatCake 4s ease-in-out infinite;
}

.hero-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ffe0f0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 3.5rem 0;
  scroll-margin-top: 90px;
}

/* Cakes Section with Animated Background */
.cakes-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff9fb 0%, #ffe5f1 100%);
  scroll-margin-top: 90px;
}

.cakes-section .section-subtitle {
  color: var(--text);
}

.cakes-animated-background {
  display: none;
}

.cake-float {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.50;
  filter: blur(0.5px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Individual cake float animations - Fruit Ninja style */
/* Cake 1: Launches from bottom-left in a right arc */
.cake-float-1 {
  bottom: -10%;
  left: 10%;
  font-size: 4rem;
  animation: ninjaArcRight 3s ease-out infinite;
  animation-delay: 0s;
}

/* Cake 2: Launches from bottom-center straight up */
.cake-float-2 {
  bottom: -10%;
  left: 45%;
  font-size: 3.5rem;
  animation: ninjaArcCenter 3.2s ease-out infinite;
  animation-delay: 0.6s;
}

/* Cake 3: Launches from bottom-right in a left arc */
.cake-float-3 {
  bottom: -10%;
  right: 15%;
  font-size: 3.8rem;
  animation: ninjaArcLeft 2.8s ease-out infinite;
  animation-delay: 1.2s;
}

/* Cake 4: Launches from bottom-left in a high center arc */
.cake-float-4 {
  bottom: -10%;
  left: 25%;
  font-size: 3.2rem;
  animation: ninjaArcCenterHigh 3.5s ease-out infinite;
  animation-delay: 1.8s;
}

/* Cake 5: Launches from bottom-right in a right arc */
.cake-float-5 {
  bottom: -10%;
  right: 30%;
  font-size: 3.6rem;
  animation: ninjaArcRight 3.1s ease-out infinite;
  animation-delay: 2.4s;
}

/* Arc Right: Launches from left, curves to the right */
@keyframes ninjaArcRight {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0;
  }

  5% {
    opacity: 0.5;
  }

  15% {
    opacity: 0.5;
    transform: translate(50px, -150px) rotate(120deg) scale(1.1);
  }

  30% {
    transform: translate(120px, -300px) rotate(240deg) scale(1.15);
  }

  45% {
    transform: translate(200px, -400px) rotate(360deg) scale(1.2);
  }

  60% {
    transform: translate(280px, -350px) rotate(480deg) scale(1.15);
  }

  75% {
    transform: translate(350px, -200px) rotate(600deg) scale(1.1);
  }

  90% {
    transform: translate(400px, 0) rotate(720deg) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(450px, 150px) rotate(800deg) scale(0.9);
    opacity: 0;
  }
}

/* Arc Left: Launches from right, curves to the left */
@keyframes ninjaArcLeft {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0;
  }

  5% {
    opacity: 0.5;
  }

  15% {
    opacity: 0.5;
    transform: translate(-50px, -150px) rotate(-120deg) scale(1.1);
  }

  30% {
    transform: translate(-120px, -300px) rotate(-240deg) scale(1.15);
  }

  45% {
    transform: translate(-200px, -400px) rotate(-360deg) scale(1.2);
  }

  60% {
    transform: translate(-280px, -350px) rotate(-480deg) scale(1.15);
  }

  75% {
    transform: translate(-350px, -200px) rotate(-600deg) scale(1.1);
  }

  90% {
    transform: translate(-400px, 0) rotate(-720deg) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(-450px, 150px) rotate(-800deg) scale(0.9);
    opacity: 0;
  }
}

/* Arc Center: Launches straight up */
@keyframes ninjaArcCenter {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0;
  }

  5% {
    opacity: 0.5;
  }

  20% {
    opacity: 0.5;
    transform: translate(0, -200px) rotate(180deg) scale(1.1);
  }

  40% {
    transform: translate(0, -400px) rotate(360deg) scale(1.2);
  }

  50% {
    transform: translate(0, -450px) rotate(450deg) scale(1.25);
  }

  60% {
    transform: translate(0, -400px) rotate(540deg) scale(1.2);
  }

  80% {
    transform: translate(0, -200px) rotate(720deg) scale(1.1);
  }

  95% {
    transform: translate(0, 50px) rotate(900deg) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(0, 150px) rotate(1000deg) scale(0.9);
    opacity: 0;
  }
}

/* Arc Center High: Launches high in center with slight wobble */
@keyframes ninjaArcCenterHigh {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0;
  }

  5% {
    opacity: 0.5;
  }

  15% {
    opacity: 0.5;
    transform: translate(-20px, -180px) rotate(150deg) scale(1.05);
  }

  30% {
    transform: translate(30px, -380px) rotate(300deg) scale(1.15);
  }

  45% {
    transform: translate(-40px, -520px) rotate(450deg) scale(1.25);
  }

  60% {
    transform: translate(30px, -480px) rotate(600deg) scale(1.2);
  }

  75% {
    transform: translate(-20px, -300px) rotate(750deg) scale(1.1);
  }

  90% {
    transform: translate(10px, -80px) rotate(900deg) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(0, 120px) rotate(1050deg) scale(0.9);
    opacity: 0;
  }
}

.cakes-section .container {
  position: relative;
  z-index: 1;
}

#home {
  scroll-margin-top: 90px;
}

.section-alt {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.about {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.about-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.15;
  animation: blobFloat 10s infinite ease-in-out;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: #ff4ba5;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #0c2e77;
  bottom: -150px;
  right: -100px;
  animation-delay: -3s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #dc0981;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

/* Ingredient Icons Animation */
.ingredient-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0;
  transform: scale(0.3) rotate(-15deg);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
  z-index: 1;
  animation:
    ingredientEntrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    ingredientSway 6s ease-in-out infinite alternate;
}

@keyframes ingredientEntrance {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
  }

  100% {
    opacity: 0.5;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes ingredientSway {
  0% {
    transform: rotate(-2deg) translateY(0);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  }

  100% {
    transform: rotate(3deg) translateY(-20px);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
  }
}

.icon-chocolate {
  top: 15%;
  left: 10%;
  animation-delay: 0.2s, 1.7s;
}

.icon-berry {
  top: 60%;
  right: 15%;
  animation-delay: 0.7s, 2.2s;
}

.icon-vanilla {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.2s, 2.7s;
}

.ingredient-icon:hover {
  opacity: 0.9 !important;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.9));
  transform: scale(1.1) rotate(8deg) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-40px, 40px) scale(0.9);
  }
}

.section-title {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.about-description {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 215, 227, 0.8);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(107, 114, 217, 0.1), rgba(139, 182, 79, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 0.6rem;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--accent);
}

.card p {
  margin: 0 0 0.5rem;
}

.card-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(107, 114, 217, 0.3);
  border-color: var(--accent);
}

/* Popular Flavors Section */
.flavors {
  margin-top: 5rem;
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border: 1px solid var(--border-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: floatSection 6s ease-in-out infinite;
}

.flavor-chocolate {
  background: #5A3825;
  color: #fff;
}

.flavor-vanilla {
  background: #FFF3C4;
  color: #5A4A2E;
}

.flavor-red-velvet {
  background: #B11226;
  color: #fff;
}

.flavor-butterscotch {
  background: #E6A84A;
  color: #3B2A14;
}

.flavor-black-forest {
  background: #2B1B17;
  color: #fff;
}

.flavor-strawberry {
  background: #FF4D6D;
  color: #fff;
}

.flavor-blueberry {
  background: #4C6EDB;
  color: #fff;
}

.flavor-pineapple {
  background: #FFD60A;
  color: #5A4A00;
}

.flavor-custom {
  background: #E0E0E0;
  color: #333;
}

@keyframes floatSection {

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

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

.flavors h3 {
  margin-bottom: 1rem;
  margin-top: 0px;
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(to right, var(--primary-dark), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.flavor-badge {
  padding: 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(240, 215, 227, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.flavor-badge:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-10px) scale(1.1) rotate(2deg);
  box-shadow: 0 20px 40px rgba(12, 46, 119, 0.2);
  border-color: var(--primary);
}

/* Entrance Animation */
.flavor-badge {
  opacity: 0;
  animation: badgePopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes badgePopUp {
  0% {
    transform: translateY(30px) scale(0.5);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.flavor-badge:nth-child(1) {
  animation-delay: 0.1s;
}

.flavor-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.flavor-badge:nth-child(3) {
  animation-delay: 0.3s;
}

.flavor-badge:nth-child(4) {
  animation-delay: 0.4s;
}

.flavor-badge:nth-child(5) {
  animation-delay: 0.5s;
}

.flavor-badge:nth-child(6) {
  animation-delay: 0.6s;
}

.flavor-badge:nth-child(7) {
  animation-delay: 0.7s;
}

/* Cake Slider */
.cake-slider-container {
  position: relative;
  margin: 2rem auto;
}

.cake-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  padding: 10px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track .card {
  min-width: 320px;
  height: auto;
  min-height: 400px;
}

/* Slider Controls Container */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Slider Navigation Buttons */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: white;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 46, 119, 0.2);
}

.slider-btn:active {
  transform: translateY(0);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-soft);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: var(--primary-hover);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary-hover);
  width: 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 32, 103, 0.3);
}


.btn-view-more {
 font-weight: 600;
 color: white;
 text-transform: uppercase;
 padding: 1.25em 2em;
 background: #dc0981;
 border: 2px solid white;
 -webkit-transform-style: preserve-3d;
 transform-style: preserve-3d;
 margin-bottom: 2rem;
 margin-top: 1rem;
 -webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
 transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

.btn-view-more::before {
 position: absolute;
 content: '';
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: var(--primary);
 border-radius: inherit;
 -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
 box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
 -webkit-transform: translate3d(0, 0.75em, -1em);
 transform: translate3d(0, 0.75em, -1em);
 transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

.btn-view-more:hover {
 background: #dc0981;
 -webkit-transform: translate(0, 0.25em);
 transform: translate(0, 0.25em);
}

.btn-view-more::before {
 -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
 box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
 -webkit-transform: translate3d(0, 0.5em, -1em);
 transform: translate3d(0, 0.5em, -1em);
}

.btn-view-more:active {
 background: #ffe9e9;
 -webkit-transform: translate(0em, 0.75em);
 transform: translate(0em, 0.75em);
}

.btn-view-more:active::before {
 -webkit-box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
 box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
 -webkit-transform: translate3d(0, 0, -1em);
 transform: translate3d(0, 0, -1em);
}


.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.highlight {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.highlight-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.highlight-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery */

.gallery {

  .section-subtitle {
    color: black;
  }
}

/* Testimonials Slider */
.testimonial-slider-container {
  position: relative;
  margin: 2rem auto;
  padding: 0 1rem;
}

.testimonials-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  padding: 10px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 300px;
  text-align: center;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-caption {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--primary-dark);
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  text-align: left;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(12, 46, 119, 0.2);
}

.testimonial-info h4 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.1rem;
  text-align: left;
}

.testimonial-tag {
  margin: 0;
  font-size: 0.80rem;
  color: var(--muted);
}

/* Order / Contact */
.order {
  padding: 8rem 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.order-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.order-blob {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.12;
  animation: blobFloat 12s infinite ease-in-out;
}

.o-blob-1 {
  width: 500px;
  height: 500px;
  background: #ff4ba5;
  top: -100px;
  left: -150px;
  animation-delay: 0s;
}

.o-blob-2 {
  width: 600px;
  height: 600px;
  background: #0c2e77;
  bottom: -200px;
  right: -100px;
  animation-delay: -5s;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order .section-title {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.order .section-subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: white;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: white;
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(12, 46, 119, 0.1);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-info span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-info a,
.contact-info p {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.order-note {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 3px solid #dc0981;
  opacity: 0.8;
}

/* Order Form Styling */
.order-form {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fcfcfc;
}

.form-group input:focus {
  border-color: var(--primary);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(12, 46, 119, 0.1);
}

.order-form .btn-primary {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* FAQ */
.section-title {
  margin-bottom: 24px;
  color: var(--primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--primary);
  background: #fff;
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--primary-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  content: '+';
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  animation: slideInDown 0.4s ease-out;
}

.faq .section-title-small-screen {
  @media (min-width: 768px) {
    display: none;
  }
  @media (max-width: 768px) {
    display: flex;
    font-size: 2.8rem;
    margin: 0 0 1rem;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
  }
}

.faq .section-title {
  display: flex;
  @media (max-width: 768px) {
    display: none;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  padding: 1.4rem 0 1.8rem;
  background: #fff9fb;
  border-top: 1px solid rgba(255, 207, 223, 0.7);
}

.footer-inner {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-inner p {
  margin: 0.1rem 0;
}

/* Keyframe animations */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCake {
  0% {
    transform: translateY(0);
  }

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

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

/* Responsive */
@media (max-width: 900px) {

  .hero-inner,
  .about-grid,
  .order-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 3rem;
  }

  .hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .brand-name {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  }

  .brand-tagline {
    font-size: 1.5rem;
  }

  .brand-tagline::after {
    width: 40px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    height: 70px;
    padding: 0 1.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    background: var(--primary);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 207, 223, 0.7);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .nav {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(240, 215, 227, 0.6);
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.6rem 1rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-badge {
    margin: 0 auto 1.5rem;
  }

  .brand-tagline {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-hero-order,
  .btn-hero-menu {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .brand-name {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .brand-tagline {
    font-size: 1.2rem;
  }

  .hero-text-subtitle {
    font-size: 1rem;
  }

  .order-form {
    padding: 1.2rem 1rem;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 3rem 0;
  }

  .slider-track .card {
    min-width: calc(100% - 1.5rem);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .top-picks-showcase {
    max-width: 100%;
    padding: 1.2rem 1rem;
  }

  .showcase-header h3 {
    font-size: 1.3rem;
  }

  .showcase-item {
    padding: 1rem;
  }

  .showcase-icon {
    font-size: 3.5rem;
  }

  .showcase-info h4 {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

}

.cakes-list-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.cake-card-row {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 215, 227, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 350px;
}

.cake-card-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(107, 114, 217, 0.3);
  border-color: var(--accent);
}

.cake-card-row .card-image {
  flex: 1;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cake-card-row .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.cake-card-row .card-image .custom-img {
  width: 50%;
  height: 50%;
  object-fit: cover;

  @media(max-width: 768px) {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.cake-card-row:hover .card-image img {
  transform: scale(1.05);
}

.cake-card-row .card-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cake-card-row .card-content p {
  font-weight: 700;
}

.cake-card-row .card-content .card-content-heading {
  display: flex;
   @media (max-width: 768px) {
    display: none;
  }
}

.cake-card-row .card-content h3 {
  @media (max-width: 768px) {
    display: flex;
    justify-content: center;
  }
}

/* Checkerboard Layout: Even items have reversed direction */
.cake-card-row:nth-child(even) {
  flex-direction: row-reverse;
}

.cake-card-row h3 {
  font-size: 2rem;
  margin: 0px;
  color: var(--primary-dark);
}

.cake-card-row p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.cake-card-row .card-content ul {
  display: block;

  @media (max-width: 768px) {
    display: none;
  }
}

.cake-card-row .card-content .card-meta {
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.cake-card-row .card-meta {
  font-weight: 700;
  color:  var(--primary-hover);
  font-size: 1.1rem;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .cake-card-row {
    flex-direction: column !important;
    /* Forces stacking */
    height: auto;
    min-height: auto;
  }

  .cake-card-row .card-image {
    width: 100%;
    height: 250px;
    min-height: 250px;
    flex: none;
  }

  .cake-card-row .card-content {
    padding: 1.5rem;
    width: 100%;
    flex: none;
  }

  .cake-card-row h3 {
    font-size: 1.75rem;
  }
}

.pswp__custom-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgb(239, 234, 234);
  color: #ca0eae;
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
}

.pswp__img {
  object-fit: contain;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.gallery-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  height: 100%;
  overflow-y: auto;
}

.close-btn {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0px;
  cursor: pointer;
  z-index: 2;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 5px;
}