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

:root {
  --cream: #FFF8F0;
  --cream-dark: #F5E6D3;
  --pink: #E8758A;
  --pink-light: #F4A5B3;
  --pink-dark: #D4566A;
  --brown: #6B3A2A;
  --brown-light: #8B5E3C;
  --brown-dark: #4A2518;
  --gold: #D4A843;
  --gold-light: #F0D078;
  --peach: #FDCB82;
  --white: #FFFFFF;
  --text: #3D2314;
  --text-light: #7A5C4F;
  --text-lighter: #A08070;
  --shadow: 0 10px 40px rgba(107, 58, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(107, 58, 42, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.highlight {
  color: var(--pink);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-light), var(--peach));
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============ FLOATING DECORATIONS ============ */
.float-decor .float-item {
  position: fixed;
  font-size: 2rem;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: floatAround 20s ease-in-out infinite;
}

.f1 { top: 15%; left: 5%; animation-delay: 0s; }
.f2 { top: 40%; right: 3%; animation-delay: 3s; }
.f3 { bottom: 20%; left: 8%; animation-delay: 6s; }
.f4 { top: 60%; left: 3%; animation-delay: 9s; }
.f5 { bottom: 10%; right: 8%; animation-delay: 12s; }
.f6 { top: 25%; right: 10%; animation-delay: 15s; }

@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(10deg); }
  50% { transform: translateY(10px) rotate(-5deg); }
  75% { transform: translateY(-15px) rotate(8deg); }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 58, 42, 0.08);
  padding: 0 24px;
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--pink);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after { width: 100%; }

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

.cart-btn {
  position: relative;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  color: var(--brown);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  transition: transform 0.3s;
}

.cart-count.bounce { animation: bounce 0.4s ease; }

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.order-btn-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.order-btn-nav:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 117, 138, 0.4);
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--brown);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF0E5 100%);
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown-light);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brown-dark);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--pink);
  color: var(--white);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(232, 117, 138, 0.35);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 117, 138, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--cream-dark);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brown-light);
  border: 1px solid var(--cream-dark);
}

.mini-badge i { color: var(--pink); }

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cake-showcase {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cake-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed;
  animation: spinSlow 25s linear infinite;
}

.ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(232, 117, 138, 0.2);
}

.ring-2 {
  width: 250px;
  height: 250px;
  border-color: rgba(253, 203, 130, 0.3);
  animation-direction: reverse;
  animation-duration: 20s;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cake-main {
  font-size: 8rem;
  animation: floatCake 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(107, 58, 42, 0.15));
}

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

.cake-sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

.s1 { top: 10%; right: 15%; animation-delay: 0s; }
.s2 { bottom: 20%; left: 10%; animation-delay: 0.7s; }
.s3 { top: 30%; left: 5%; animation-delay: 1.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

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

.marquee {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

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

/* ============ CATEGORIES ============ */
.categories {
  padding: 70px 0 20px;
}

.category-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.cat-btn:hover {
  border-color: var(--pink-light);
  color: var(--pink);
  background: #FFF0F3;
}

.cat-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 117, 138, 0.3);
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: 40px 0 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(107, 58, 42, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  box-shadow: 0 4px 15px rgba(107, 58, 42, 0.06);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}

.badge-bestseller {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.badge-new {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
}

.badge-veg {
  background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
  color: #166534;
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF5EE, #FFFAF5);
  transition: all 0.4s;
}

.product-card:hover .product-image {
  transform: scale(1.02);
}

.product-image .product-emoji {
  transition: transform 0.4s;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.product-card:hover .product-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.product-info {
  padding: 18px 20px 20px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brown-dark);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-lighter);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.product-rating .stars {
  color: var(--gold);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brown);
}

.price-original {
  font-size: 0.82rem;
  color: var(--text-lighter);
  text-decoration: line-through;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-add-cart:hover {
  background: var(--pink-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(232, 117, 138, 0.35);
}

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

/* ============ SPECIALS ============ */
.specials {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF0E5, var(--cream));
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.special-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.special-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--pink-light);
}

.special-card.featured {
  border-color: var(--pink);
  background: linear-gradient(180deg, #FFF5F7, var(--white));
  transform: scale(1.03);
}

.special-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.special-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.special-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.special-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown-dark);
}

.special-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.special-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.about-emoji {
  font-size: 8rem;
  animation: floatCake 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.about-card {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.card-1 { top: 20%; left: 5%; animation: floatCake 5s ease-in-out infinite; }
.card-2 { bottom: 25%; right: 0%; animation: floatCake 5s ease-in-out infinite 1s; }
.card-3 { bottom: 10%; left: 10%; animation: floatCake 5s ease-in-out infinite 2s; }

.about-content .section-tag { margin-bottom: 14px; }

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--brown-dark);
}

.about-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.about-feature i {
  color: var(--pink);
  font-size: 1.1rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF0E5, var(--cream));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

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

.stars {
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--peach));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--brown);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 0.3s;
}

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

.footer-col p {
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.88rem;
  padding: 5px 0;
}

.footer-col p i {
  color: var(--pink-light);
  margin-right: 6px;
  width: 16px;
}

.whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: #25d366 !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 10px;
  font-weight: 600 !important;
  margin-top: 10px;
  transition: all 0.3s !important;
}

.whatsapp-link:hover {
  background: #1da851 !important;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 248, 240, 0.4);
  font-size: 0.85rem;
}

/* ============ CART SIDEBAR ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 35, 20, 0.4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 92vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

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

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

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-cart {
  background: var(--cream);
  border: none;
  color: var(--brown-light);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.close-cart:hover {
  background: #FEE2E2;
  color: #DC2626;
}

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

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-lighter);
}

.empty-icon { font-size: 4rem; margin-bottom: 12px; }
.empty-cart p { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.empty-cart span { font-size: 0.85rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-emoji {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--pink);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s;
}

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

.qty-value {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-lighter);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
  transition: color 0.3s;
  align-self: flex-start;
}

.cart-item-remove:hover { color: #DC2626; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}

.cart-summary { margin-bottom: 16px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.summary-row.total {
  border-top: 2px solid var(--cream-dark);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
}

.free-delivery {
  color: #22c55e;
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-checkout:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 117, 138, 0.4);
}

/* ============ CHECKOUT MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 35, 20, 0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 680px;
  max-width: 95vw;
  max-height: 92vh;
  z-index: 3001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-inner {
  background: var(--white);
  border-radius: var(--radius);
  overflow-y: auto;
  max-height: 92vh;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream);
  border: none;
  color: var(--brown-light);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #FEE2E2;
  color: #DC2626;
}

.modal-header {
  text-align: center;
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.modal-icon { font-size: 2.5rem; }

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin: 8px 0 6px;
}

.modal-header p {
  color: var(--text-lighter);
  font-size: 0.88rem;
}

.modal-body {
  padding: 24px 32px 32px;
}

.order-summary-panel {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.order-summary-panel h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-summary-panel h4 i { color: var(--pink); }

.order-items {
  margin-bottom: 12px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(107, 58, 42, 0.06);
  font-size: 0.88rem;
}

.order-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-item-emoji { font-size: 1.3rem; }

.order-item-name { font-weight: 500; color: var(--text); }

.order-item-qty {
  color: var(--text-lighter);
  font-size: 0.78rem;
}

.order-item-price {
  font-weight: 700;
  color: var(--pink);
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 2px solid rgba(107, 58, 42, 0.1);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
}

.order-total-val { color: var(--pink); font-size: 1.2rem; }

.checkout-form h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-form h4 i { color: var(--pink); }

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-xs);
  padding: 0 14px;
  transition: border-color 0.3s;
}

.input-wrap:focus-within {
  border-color: var(--pink);
  background: var(--white);
}

.input-wrap i {
  color: var(--pink);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.textarea-wrap {
  align-items: flex-start;
  padding-top: 12px;
}

.textarea-wrap i { margin-top: 2px; }

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: var(--text-lighter);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-whatsapp {
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active { transform: scale(0.98); }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown-dark);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(232, 117, 138, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .specials-grid { grid-template-columns: 1fr; }
  .special-card.featured { transform: none; }
  .special-card.featured:hover { transform: translateY(-6px); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { min-height: 260px; }
  .about-features { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .order-btn-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .cake-showcase { width: 250px; height: 250px; }
  .cake-main { font-size: 6rem; }
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 180px; height: 180px; }
  .section-header h2 { font-size: 2rem; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-badges { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
