/* ============================================================
   COOKIES GOURMET ITAPEMA — Chunky Chunks-Inspired Design
   with Brand Pink / Cream / Burgundy Palette
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* --- Variables (from Logo: Pink, Cream, Burgundy) --- */
:root {
  /* Brand Colors from Logo */
  --pink: #E8789C;
  --pink-light: #F5A3C7;
  --pink-bg: #FDE8F0;
  --cream: #FAF3EB;
  --burgundy: #6B1A3A;
  --burgundy-dark: #4A1228;

  /* Neutrals */
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-bg: #F2F0ED;
  --gray-card: #EEEBE6;
  --gray-text: #777;
  --line-color: rgba(107, 26, 58, 0.15);

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  /* Utils */
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 900px;
  --border: 1.5px solid var(--line-color);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background-color: var(--cream);
  color: var(--burgundy);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   STICKY BOTTOM NAVIGATION (Chunky Chunks style)
   ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--burgundy);
  border-top: 2px solid var(--pink);
}

.bottom-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.bottom-nav-value {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bottom-nav-value span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(250,243,235,0.5);
  font-weight: 500;
}

.bottom-nav-value strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
}

.bottom-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.bottom-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  transition: var(--transition);
}

.bottom-nav-links a:hover,
.bottom-nav-links a.active {
  background: var(--pink);
  color: var(--white);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem 6rem;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,120,156,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 2rem;
  animation: floatLogo 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(232,120,156,0.3));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-tagline em {
  font-style: italic;
  color: var(--pink-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,243,235,0.7);
  max-width: 450px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--pink-light);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(232,120,156,0.4);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,243,235,0.35);
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 30px; }
  50% { opacity: 0.3; height: 15px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
}

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

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  white-space: nowrap;
  padding: 0 2.5rem;
}

.marquee-track span::after {
  content: ' ✦ ';
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCT LIST SECTION (Chunky Chunks numbered style)
   ============================================================ */
.products-section {
  padding: 4rem 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products-section-header .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--pink);
  margin-bottom: 0.8rem;
  display: block;
}

.products-section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--burgundy);
}

.products-section-header h2 em {
  font-style: italic;
  color: var(--pink);
}

/* --- Single Product Item --- */
.product-item {
  padding: 2.5rem 0;
  border-top: var(--border);
  position: relative;
}

.product-item:last-child {
  border-bottom: var(--border);
}

/* Number + Name row */
.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-number {
  width: 52px;
  height: 52px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--burgundy);
  flex-shrink: 0;
  position: relative;
}

/* Half-circle decoration on number */
.product-number::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 52px;
  height: 52px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--burgundy);
  line-height: 1.1;
}

/* Image container */
.product-image-box {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1rem;
  position: relative;
}

.product-image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-item:hover .product-image-box img {
  transform: scale(1.08) rotate(-2deg);
}

/* Description + Price + Button  */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 400px;
}

.product-price {
  display: inline-flex;
  align-items: center;
  background: var(--burgundy);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.product-item:hover .product-price {
  background: var(--pink);
  color: var(--white);
}

/* Line separator decoration (scroll icon in center) */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--line-color);
}

.section-divider .icon {
  width: 28px;
  height: 28px;
  margin: 0 12px;
  color: var(--pink);
  flex-shrink: 0;
}

/* ============================================================
   EXPERIENCE / BRAND SECTION
   ============================================================ */
.experience {
  background: var(--burgundy);
  padding: 5rem 2rem;
  color: var(--cream);
}

.experience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.experience-text .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--pink-light);
  margin-bottom: 1rem;
  display: block;
}

.experience-text h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.experience-text h2 em {
  font-style: italic;
  color: var(--pink-light);
}

.experience-text p {
  color: rgba(250,243,235,0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.experience-img {
  border-radius: 20px;
  overflow: hidden;
}

.experience-img img {
  width: 100%;
  transition: transform 0.6s ease;
}

.experience-img:hover img {
  transform: scale(1.04);
}

/* ============================================================
   DELIVERY / HOW TO ORDER
   ============================================================ */
.delivery {
  padding: 5rem 2rem;
  text-align: center;
}

.delivery-inner {
  max-width: 650px;
  margin: 0 auto;
}

.delivery .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

.delivery h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
}

.delivery h2 em {
  font-style: italic;
  color: var(--pink);
}

.delivery > .delivery-inner > p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.delivery-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.delivery-step {
  border: var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.delivery-step:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: translateY(-4px);
}

.delivery-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.delivery-step:hover .delivery-step-number {
  background: var(--pink);
  color: var(--white);
}

.delivery-step h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.delivery-step p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.delivery-step:hover p {
  color: rgba(250,243,235,0.7);
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 44px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.whatsapp-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.whatsapp-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--burgundy-dark);
  color: var(--cream);
  padding: 3rem 2rem 6rem; /* extra bottom for sticky nav */
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--pink-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,243,235,0.4);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--pink-light); }

.footer-divider {
  width: 50px;
  height: 1px;
  background: rgba(250,243,235,0.1);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(250,243,235,0.25);
  letter-spacing: 1px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 70px;
  right: 20px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulseWA 2s infinite;
}

.float-whatsapp:hover { transform: scale(1.12); }

.float-whatsapp svg { width: 26px; height: 26px; fill: currentColor; }

@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS (Chunky Chunks fade + scale up)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-image {
  opacity: 0;
  transform: translateY(50px) scale(0.92);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for product items */
.product-item .product-header { transition-delay: 0s; }
.product-item .product-image-box { transition-delay: 0.15s; }
.product-item .product-details { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .bottom-nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 2rem 1.5rem 5rem; }
  .hero-logo-img { width: 160px; height: 160px; }

  .products-section { padding: 3rem 1rem 2rem; }

  .product-name { font-size: clamp(1.5rem, 6vw, 2rem); }

  .product-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-price { margin-top: 0.5rem; }

  .experience-inner { grid-template-columns: 1fr; }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .float-whatsapp { bottom: 65px; right: 14px; width: 48px; height: 48px; }
  .float-whatsapp svg { width: 22px; height: 22px; }

  .product-bottom { flex-direction: column; align-items: flex-start; }
  .btn-add-cart { width: 100%; justify-content: center; }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
}

/* ============================================================
   ADD TO CART BUTTON
   ============================================================ */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-add-cart svg {
  width: 16px;
  height: 16px;
}

.btn-add-cart:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.05);
}

.btn-add-cart:active {
  transform: scale(0.95);
}

.btn-add-cart.added {
  background: #25D366;
  color: #fff;
}

/* ============================================================
   NAV ACTIONS (cart + hamburger grouped)
   ============================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   CART TOGGLE BUTTON (in bottom nav)
   ============================================================ */
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
  stroke: var(--cream);
  transition: var(--transition);
}

.cart-toggle:hover svg {
  stroke: var(--pink-light);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: none;
}

.cart-badge.hidden {
  transform: scale(0);
  opacity: 0;
}

.cart-badge.bounce {
  animation: badgeBounce 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes badgeBounce {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ============================================================
   CART OVERLAY
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--cream);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: var(--border);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--burgundy);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-close svg {
  width: 22px;
  height: 22px;
  color: var(--burgundy);
  stroke: var(--burgundy);
}

.cart-close:hover {
  background: var(--pink-bg);
}

/* Cart items list */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-text);
}

.cart-empty p {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.cart-empty span {
  font-size: 0.85rem;
}

/* Single cart item */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-color);
  gap: 12px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--burgundy);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-item-controls button:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.cart-item-qty {
  font-weight: 800;
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
  color: var(--burgundy);
}

/* Cart footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--burgundy);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-text);
  font-weight: 600;
}

.cart-total strong {
  font-size: 1.5rem;
  color: var(--burgundy);
}

.btn-send-order {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-send-order svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn-send-order:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

/* Toast notification */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--burgundy);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
