/* ============================================
   Sweet Relief Pastries — Mockup
   Warm patisserie aesthetic
   ============================================ */

/* --- Custom Properties --- */
:root {
  --cream: #FDF6EE;
  --cream-warm: #F9EFDF;
  --ivory: #FFFDF8;
  --chocolate: #3B2314;
  --chocolate-light: #5C3D28;
  --rose: #C4727F;
  --rose-soft: #E8B4BC;
  --rose-dim: rgba(196, 114, 127, 0.12);
  --gold: #C9A96E;
  --gold-soft: rgba(201, 169, 110, 0.15);
  --text: #3B2314;
  --text-muted: #7A6455;
  --text-light: #A89585;
  --white: #FFFFFF;
  --border: rgba(59, 35, 20, 0.1);
  --border-warm: rgba(59, 35, 20, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Mockup Banner --- */
.mockup-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #e94560;
}
.mockup-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.mockup-badge {
  display: inline-block;
  background: #e94560;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.mockup-banner p { margin: 0; }
.mockup-banner a {
  color: #e94560;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mockup-banner a:hover { color: #fff; }

/* --- Announcement --- */
.announcement {
  background: var(--chocolate);
  color: var(--cream);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.announcement a {
  color: var(--rose-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement a:hover { color: var(--white); }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-warm);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253, 246, 238, 0.95);
  box-shadow: 0 2px 20px rgba(59, 35, 20, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--chocolate); }
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--chocolate);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--chocolate);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 35, 20, 0.15);
}
.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid var(--chocolate);
}
.btn-outline:hover {
  background: var(--chocolate);
  color: var(--cream);
}
.btn-block { width: 100%; text-align: center; }

/* --- Hero --- */
.hero {
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--chocolate);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-text > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-img-wrapper {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(59, 35, 20, 0.12);
}
.hero-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--ivory);
  box-shadow: 0 10px 30px rgba(59, 35, 20, 0.1);
  animation: float 4s ease-in-out infinite;
}
.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Ticker --- */
.ticker {
  background: var(--chocolate);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections --- */
.section { padding: 6rem 0; }
.section-warm { background: var(--cream); }
.section-dark {
  background: var(--chocolate);
  color: var(--cream);
}
.section-dark .section-tag { color: var(--rose-soft); }
.section-dark h2 { color: var(--cream); }
.section-dark h2 em { color: var(--rose-soft); }
.section-dark p { color: rgba(253, 246, 238, 0.7); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.section-header h2,
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--chocolate);
  margin-bottom: 1rem;
}
h2 em {
  font-style: italic;
  color: var(--rose);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-warm);
  cursor: pointer;
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59, 35, 20, 0.1);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card-tall { grid-row: span 2; }
.product-card-wide { grid-column: span 2; }
.product-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-tall .product-img { aspect-ratio: auto; height: 100%; min-height: 300px; }
.product-card-wide .product-img { aspect-ratio: 16/9; }
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-info {
  padding: 1.25rem 1.5rem;
}
.product-card-tall .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(59, 35, 20, 0.85), transparent);
  color: var(--cream);
  padding: 2rem 1.5rem 1.5rem;
}
.product-card-tall .product-info h3 { color: var(--cream); }
.product-card-tall .product-info p { color: rgba(253, 246, 238, 0.8); }
.product-card-tall .product-price { color: var(--rose-soft); }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.product-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
}
.products-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Split Content --- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse .split-image { order: 2; }
.split-reverse .split-text { order: 1; }
.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(59, 35, 20, 0.08);
}
.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.split-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Treat list */
.treat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.treat-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.treat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

/* Hours card */
.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.hours-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.hours-address {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-warm);
}

/* --- Wedding --- */
.wedding-prices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.wedding-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.wedding-tier {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.wedding-from {
  font-size: 0.88rem;
  color: var(--rose);
  font-weight: 500;
}
.wedding-favours {
  font-size: 0.9rem;
  margin-bottom: 1.5rem !important;
}

/* --- About --- */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(59, 35, 20, 0.2);
}
.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.about-text h2 {
  color: var(--cream);
}
.about-text h2 em { color: var(--rose-soft); }
.about-text p {
  color: rgba(253, 246, 238, 0.75);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.about-text strong { color: var(--cream); font-weight: 500; }
.about-credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--rose-soft);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}
.credential-icon { font-size: 1rem; }

/* --- Corporate --- */
.corporate-layout {
  text-align: center;
}
.corporate-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  text-align: left;
}
.corporate-item {
  background: var(--cream);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.corporate-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 35, 20, 0.06);
}
.corporate-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.corporate-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.corporate-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
}

/* --- Gallery --- */
.gallery-section {
  overflow: hidden;
  padding: 0.5rem 0;
  background: var(--cream-warm);
}
.gallery-track {
  display: flex;
  gap: 0.5rem;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}
.gallery-item {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Reviews --- */
.reviews-summary {
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.reviews-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  gap: 2px;
  font-size: 1.35rem;
}
.star.filled {
  color: #E8A838;
}
.star.partial {
  background: linear-gradient(90deg, #E8A838 60%, var(--border) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.reviews-google-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--rose);
  transition: color var(--transition);
}
.reviews-google-link:hover {
  color: var(--chocolate);
}
.reviews-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  animation: reviewsScroll 90s linear infinite;
  width: max-content;
}
@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 320px;
  min-width: 320px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 35, 20, 0.08);
}
.review-stars {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
  color: #E8A838;
}
.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-warm);
}
.review-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--chocolate);
}
.review-via {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- Contact --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  color: var(--chocolate);
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-detail a, .contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--rose); }
.contact-social {
  display: flex;
  gap: 1rem;
}
.contact-social a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}
.contact-social a:hover {
  color: var(--rose);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

/* --- Footer --- */
.footer {
  background: var(--chocolate);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(0.9);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.6);
  max-width: 260px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-links-grid h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.footer-links-grid a,
.footer-links-grid p {
  display: block;
  font-size: 0.85rem;
  color: rgba(253, 246, 238, 0.55);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.footer-links-grid a:hover { color: var(--rose-soft); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(253, 246, 238, 0.35);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.product-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.product-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.product-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.product-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.corporate-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.corporate-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.corporate-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.review-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.review-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.review-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- Hero entrance --- */
.hero-text { animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.hero-image { animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card-tall { grid-row: span 1; }
  .corporate-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -10px 0 40px rgba(59, 35, 20, 0.1);
    font-size: 1rem;
  }
  .nav-links.open { right: 0; }
  .nav-cta { text-align: center; }

  .hero { min-height: auto; padding: 3rem 1.5rem 2rem; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image { order: -1; }
  .hero-img-wrapper img { height: 350px; }
  .hero-img-accent { width: 120px; height: 120px; left: -10px; bottom: -10px; }
  .hero-scroll-hint { display: none; }

  .split-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse .split-image { order: 0; }
  .split-reverse .split-text { order: 0; }
  .split-image img { height: 350px; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image img { height: 350px; }
  .about-credentials { flex-direction: column; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: span 1; }
  .product-card-tall .product-img { min-height: 250px; }

  .corporate-items { grid-template-columns: 1fr; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .section { padding: 4rem 0; }
  .treat-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .gallery-item { width: 200px; height: 200px; }
}

/* ============================================
   Product Detail Page (PDP)
   ============================================ */

/* --- Breadcrumb --- */
.pdp-breadcrumb {
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-warm);
}
.pdp-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.pdp-breadcrumb a:hover { color: var(--rose); }
.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--border);
}
.breadcrumb-current {
  color: var(--chocolate);
  font-weight: 500;
}

/* --- PDP Layout --- */
.pdp {
  padding: 3rem 0 4rem;
}
.pdp-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

/* --- Gallery --- */
.pdp-gallery {
  position: sticky;
  top: 100px;
}
.pdp-main-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
}
.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.pdp-image-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.pdp-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.pdp-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  padding: 0;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumb:hover { border-color: var(--rose-soft); }
.pdp-thumb.active {
  border-color: var(--rose);
  box-shadow: 0 2px 10px rgba(196, 114, 127, 0.25);
}

/* --- Product Info --- */
.pdp-info {
  animation: pdpFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes pdpFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.pdp-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--chocolate);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-warm);
}
.pdp-price-from {
  font-size: 0.85rem;
  color: var(--text-light);
}
.pdp-price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--chocolate);
}
.pdp-price-currency {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Description */
.pdp-description {
  margin-bottom: 2rem;
}
.pdp-description p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.pdp-description strong {
  color: var(--chocolate);
  font-weight: 500;
}

/* Options */
.pdp-option {
  margin-bottom: 1.5rem;
}
.pdp-option-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

/* Size selector */
.pdp-size-options {
  display: flex;
  gap: 0.75rem;
}
.pdp-size {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}
.pdp-size:hover {
  border-color: var(--rose-soft);
  background: var(--rose-dim);
}
.pdp-size.active {
  border-color: var(--rose);
  background: var(--rose-dim);
  box-shadow: 0 0 0 1px var(--rose);
}
.pdp-size-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.15rem;
}
.pdp-size-serves {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Quantity */
.pdp-quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pdp-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--white);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-btn:hover {
  background: var(--cream);
  color: var(--chocolate);
}
.pdp-qty-value {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--chocolate);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  line-height: 44px;
}

/* Add to Cart */
.pdp-add-to-cart {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.pdp-add-to-cart:hover {
  background: var(--chocolate);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 35, 20, 0.2);
}
.pdp-add-to-cart:active { transform: translateY(0); }
.pdp-add-to-cart.added {
  background: #2a9d5c;
  transform: none;
  box-shadow: none;
}
.cart-icon {
  display: flex;
  align-items: center;
}

/* Extra details */
.pdp-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-warm);
}
.pdp-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pdp-detail svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--rose);
}
.pdp-detail strong { color: var(--chocolate); font-weight: 500; }
.pdp-detail a { color: var(--rose); text-decoration: underline; text-underline-offset: 2px; }
.pdp-detail a:hover { color: var(--chocolate); }

/* --- Related Products --- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.related-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-warm);
  transition: all var(--transition);
  display: block;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 35, 20, 0.08);
}
.related-card:hover .related-img img {
  transform: scale(1.05);
}
.related-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-info {
  padding: 1rem 1.25rem;
}
.related-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.2rem;
}
.related-info span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
}
.related-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.related-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.related-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- Order Details Modal --- */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 35, 20, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.order-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 480px;
  max-width: 92vw;
  max-height: 88vh;
  background: var(--ivory);
  border-radius: var(--radius);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(59, 35, 20, 0.2), 0 0 0 1px var(--border-warm);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.35s ease;
}
.order-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal header */
.order-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.order-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--chocolate);
}
.order-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.order-modal-close:hover {
  background: var(--cream);
  border-color: var(--rose-soft);
  color: var(--rose);
}
.order-modal-close svg { width: 15px; height: 15px; }

/* Modal body */
.order-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-soft) transparent;
}
.order-modal-body::-webkit-scrollbar { width: 4px; }
.order-modal-body::-webkit-scrollbar-thumb {
  background: var(--rose-soft);
  border-radius: 4px;
}

/* Order summary card inside modal */
.order-modal-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.order-modal-summary img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}
.order-summary-info {
  flex: 1;
}
.order-summary-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.2;
}
.order-summary-detail {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}
.order-summary-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--chocolate);
}

/* Fields */
.order-field {
  margin-bottom: 1.25rem;
}
.order-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 0.3rem;
}
.order-required {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 0.3rem;
}
.order-field-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
/* Calendar */
.order-calendar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.order-calendar.error {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px var(--rose-dim);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.cal-month-year {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chocolate);
}
.cal-nav {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.cal-nav:hover {
  background: var(--cream);
  border-color: var(--rose-soft);
  color: var(--rose);
}
.cal-nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-warm);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  border: none;
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.cal-day:hover:not(.cal-day-disabled):not(.cal-day-empty) {
  background: var(--rose-dim);
  color: var(--rose);
}
.cal-day-empty {
  cursor: default;
}
.cal-day-disabled {
  color: var(--border);
  cursor: default;
  text-decoration: line-through;
  text-decoration-color: var(--border);
}
.cal-day-today {
  font-weight: 700;
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.cal-day-selected {
  background: var(--rose) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(196, 114, 127, 0.35);
}
.cal-day-special::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day-selected.cal-day-special::after {
  background: var(--white);
}
.cal-occasion-banner {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: var(--gold-soft);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--chocolate);
}
.cal-occasion-banner.visible {
  display: flex;
}
.cal-occasion-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.cal-selected-display {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-warm);
}
.cal-selected-display.has-date {
  color: var(--rose);
  font-weight: 600;
}
.order-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--transition);
}
.order-textarea:focus { border-color: var(--rose); }
.order-textarea::placeholder { color: var(--text-light); }

/* Checkboxes */
.order-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.order-checkbox:hover { color: var(--chocolate); }
.order-checkbox input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  flex-shrink: 0;
}
.order-checkbox input[type="radio"]:checked {
  background: var(--white);
  border-color: var(--rose);
  border-width: 2px;
}
.order-checkbox input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Modal footer */
.order-modal-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}
.order-confirm-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.order-confirm-btn:hover {
  background: var(--chocolate);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 35, 20, 0.2);
}
.order-confirm-btn.added {
  background: #2a9d5c;
}

/* --- Cart Icon (Nav) --- */
.nav-cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
}
.nav-cart:hover {
  color: var(--rose);
  transform: translateY(-1px);
}
.nav-cart svg {
  width: 22px;
  height: 22px;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}
.cart-badge.bump {
  animation: cartBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 35, 20, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background: var(--ivory);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(59, 35, 20, 0.12);
}
.cart-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--chocolate);
}
.cart-drawer-count {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.5rem;
}
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.cart-drawer-close:hover {
  background: var(--cream);
  border-color: var(--rose-soft);
  color: var(--rose);
}
.cart-drawer-close svg {
  width: 16px;
  height: 16px;
}

/* Drawer body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-soft) transparent;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-thumb {
  background: var(--rose-soft);
  border-radius: 4px;
}

/* Empty cart */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 1rem;
  color: var(--text-light);
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.cart-empty p {
  font-size: 0.95rem;
}
.cart-empty-cta {
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-warm);
  animation: cartItemIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-warm);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.2;
}
.cart-item-variant {
  font-size: 0.78rem;
  color: var(--text-light);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.25rem;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.cart-item-qty button {
  width: 30px;
  height: 28px;
  border: none;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cart-item-qty button:hover { background: var(--cream); }
.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chocolate);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 28px;
  line-height: 28px;
}
.cart-item-price {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--chocolate);
}
.cart-item-extras {
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-remove {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--rose); }

/* Drawer footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}
.cart-subtotal-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.cart-subtotal-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--chocolate);
}
.cart-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.cart-checkout-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.cart-checkout-btn:hover {
  background: var(--chocolate);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 35, 20, 0.2);
}
.cart-continue {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  transition: color var(--transition);
}
.cart-continue:hover { color: var(--rose); }

/* Lock body scroll when drawer is open */
body.cart-open { overflow: hidden; }

/* --- PDP Responsive --- */
@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pdp-gallery { position: static; }
  .pdp-main-image { aspect-ratio: 4/3; }
  .pdp-size-options { flex-direction: column; }
  .pdp-size { flex: auto; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .mockup-banner-inner {
    flex-direction: column;
    gap: 0.35rem;
  }
}
