:root {
  --ivory: #fbf6ec;
  --ivory-deep: #f3ead9;
  --ink: #17140f;
  --muted: #6f6658;
  --gold: #d59b27;
  --gold-deep: #9c6510;
  --green: #435632;
  --green-deep: #293a20;
  --chocolate: #4a2a20;
  --pink: #df82a2;
  --white: #fffdf8;
  --line: rgba(156, 101, 16, 0.28);
  --shadow: 0 20px 60px rgba(55, 34, 9, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --content: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --script: "Segoe Script", "Brush Script MT", cursive;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(213, 155, 39, 0.10), transparent 24rem),
    radial-gradient(circle at 92% 42%, rgba(67, 86, 50, 0.08), transparent 28rem),
    var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

main {
  width: 100%;
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-strip {
  padding: 0.52rem 1rem;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(156, 101, 16, 0.18);
  background: rgba(251, 246, 236, 0.91);
  backdrop-filter: blur(18px);
  overflow: visible; /* chocolate drips hang below the icon */
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--content));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.1rem;
  overflow: visible; /* chocolate drips hang below the icon */
}

/* Social icons sit left of the brand; never shrink the logo/nav sizing */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.social-btn {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn svg {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
  z-index: 2;
}

/* Clean Facebook icon — blue + pink, no chocolate */
.social-facebook {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.5) 0 14%, transparent 16%),
    linear-gradient(
      155deg,
      #9ec5ff 0%,
      #4b9bff 24%,
      #1877f2 50%,
      #f7a8c8 80%,
      #ff8fb8 100%
    );
  box-shadow:
    0 6px 16px rgba(24, 119, 242, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.social-facebook:hover {
  box-shadow:
    0 10px 22px rgba(247, 120, 170, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.social-facebook-glyph {
  position: relative;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.social-facebook svg {
  fill: #fffdf8;
  filter: drop-shadow(0 1px 0 rgba(40, 70, 140, 0.25));
}

/* Hide any leftover chocolate markup if present in HTML */
.social-chocolate {
  display: none !important;
}

.social-instagram {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(circle at 30% 28%, #fff3c4 0 11%, transparent 12%),
    linear-gradient(135deg, #f9c74f, #f9844a 35%, #f72585 70%, #7209b7);
  box-shadow: 0 6px 16px rgba(247, 37, 133, 0.22);
}

.social-instagram:hover {
  box-shadow: 0 10px 22px rgba(247, 37, 133, 0.32);
}

.social-instagram svg {
  fill: none;
  stroke: #fffdf8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-link img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(55, 34, 9, 0.16);
}

.brand-wordmark {
  display: grid;
  line-height: 1.02;
}

.brand-wordmark strong {
  font-family: var(--script);
  font-size: 1.34rem;
  font-weight: 700;
}

.brand-wordmark span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-left: auto; /* keep primary nav on the right like original layout */
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

/* A little cake-pop treat for every primary destination. */
.site-nav a:not(.button) {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.92rem;
  border: 1px solid #d685a0;
  border-radius: 999px;
  color: #3b201d;
  background: linear-gradient(145deg, #ffd8e5, #f2a4bd 62%, #e77f9f);
  box-shadow: 0 6px 14px rgba(181, 78, 112, 0.14), inset 0 2px 0 rgba(255,255,255,.55);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.site-nav a:not(.button)::after { content: none; }

.site-nav a:not(.button):nth-child(2) {
  background: linear-gradient(145deg, #ffe0b8, #f4b55c 62%, #df9033);
  border-color: #d4953d;
}

.site-nav a:not(.button):nth-child(4) {
  background: linear-gradient(145deg, #eadcff, #c9a9ed 62%, #a879d2);
  border-color: #a17bc3;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button)[aria-current="page"] {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 10px 20px rgba(181, 78, 112, 0.24), inset 0 2px 0 rgba(255,255,255,.6);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a.gallery-nav-button {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  padding: 0.72rem 1.1rem;
  overflow: hidden;
  border: 1px solid #b34e70;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #f7b0c4, #e783a2 58%, #d9688d);
  box-shadow: 0 8px 20px rgba(181, 78, 112, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a.gallery-nav-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 13%;
  right: 8%;
  top: -11px;
  height: 22px;
  border-radius: 50%;
  background: #4a2a20;
  box-shadow: 34px 7px 0 -4px #4a2a20, 76px 3px 0 -6px #4a2a20, 108px 9px 0 -5px #4a2a20;
  transform: rotate(-3deg);
}

.site-nav a.gallery-nav-button::after {
  content: none;
}

.site-nav a.gallery-nav-button:hover,
.site-nav a.gallery-nav-button[aria-current="page"] {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(181, 78, 112, 0.3);
}

.gallery-cta {
  border-color: #b34e70;
  background: linear-gradient(135deg, #f7b0c4, #e783a2 58%, #d9688d);
}

.gallery-page .brand-archive {
  display: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display {
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.display .script,
.script {
  color: var(--gold-deep);
  font-family: var(--script);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0 5rem;
}

/* Original empty gold ring — half soft-cut on the right, always visible */
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  top: 20px;
  border: 1px solid rgba(213, 155, 39, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(213, 155, 39, 0.05),
    0 0 0 84px rgba(213, 155, 39, 0.035);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

/* Full-width copy column again — no flex squeeze */
.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lede {
  margin: 1.5rem 0 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 20, 15, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-gold {
  border-color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold), #e8bb58);
  color: var(--ink);
}

.hero-art {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin-left: auto;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero-art::before {
  inset: 9% 8% 5%;
  border: 1px solid var(--line);
}

.hero-art::after {
  width: 140px;
  height: 140px;
  left: -38px;
  bottom: 4%;
  background: radial-gradient(circle, rgba(213, 155, 39, 0.32), transparent 68%);
}

.hero-logo-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-logo-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

/*
 * "Made with love" — left open space beside "Small treat".
 * Outside the text column so original headline size is fully restored.
 */
.hero-badge {
  position: absolute;
  /* Sit in the left page margin, just left of the content / "Small treat" */
  left: max(0.65rem, calc((100% - min(100% - 2rem, var(--content))) / 2 - 12.75rem));
  top: clamp(7.5rem, 14vw, 12rem);
  width: 190px;
  max-width: 190px;
  padding: 1rem 1.1rem;
  border: 1px solid #9d5b38;
  border-radius: var(--radius-md);
  color: #fff3e6;
  background: linear-gradient(145deg, #2a120d, #5a281b 68%, #35150f);
  box-shadow: 0 16px 30px rgba(55, 22, 12, .3), inset 0 1px 0 rgba(255,220,180,.2);
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  z-index: 4;
}

/* When side margin is tight, place badge above the hero grid (still not shrinking type) */
@media (max-width: 1320px) and (min-width: 981px) {
  .hero-badge {
    position: relative;
    left: auto;
    top: auto;
    width: 190px;
    margin: 0 auto 1.25rem;
  }
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #f39abb;
  clip-path: polygon(50% 100%, 0 42%, 8% 18%, 28% 8%, 50% 25%, 72% 8%, 92% 18%, 100% 42%);
  filter: drop-shadow(0 4px 5px rgba(166, 62, 104, .28));
  animation: badge-heart-float 1.8s ease-in-out infinite;
}

.hero-badge::before { left: -28px; top: 28%; }
.hero-badge::after { right: -28px; top: 52%; animation-delay: .45s; }

@keyframes badge-heart-float {
  0%, 100% { transform: translateY(3px) scale(.82) rotate(-8deg); opacity: .65; }
  50% { transform: translateY(-8px) scale(1.12) rotate(8deg); opacity: 1; }
}

.hero-badge strong {
  display: block;
  color: #f5bb68;
  font-family: var(--script);
  font-size: 1.35rem;
}

/*
 * Flavor photo fills the gold ring only.
 * Title, blurb, and Order now sit BELOW in a Made-with-love style card + hearts.
 */
.hero.has-flavor-week {
  /* Room for the Made-with-love style card sitting under the ring */
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.hero-flavor {
  position: absolute;
  z-index: 1;
  width: 480px;
  right: -180px;
  top: 20px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-flavor[hidden] {
  display: none !important;
}

.hero-flavor-orb {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-flavor-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

/* Same chocolate card language as .hero-badge — fully BELOW the ring photo */
.hero-flavor-card {
  position: relative;
  z-index: 3;
  width: min(220px, 86%);
  margin-top: 0.85rem;
  margin-right: 6.5rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid #9d5b38;
  border-radius: var(--radius-md);
  color: #fff3e6;
  background: linear-gradient(145deg, #2a120d, #5a281b 68%, #35150f);
  box-shadow: 0 16px 30px rgba(55, 22, 12, .3), inset 0 1px 0 rgba(255,220,180,.2);
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  pointer-events: auto;
}

.hero-flavor-card::before,
.hero-flavor-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #f39abb;
  clip-path: polygon(50% 100%, 0 42%, 8% 18%, 28% 8%, 50% 25%, 72% 8%, 92% 18%, 100% 42%);
  filter: drop-shadow(0 4px 5px rgba(166, 62, 104, .28));
  animation: badge-heart-float 1.8s ease-in-out infinite;
}

.hero-flavor-card::before { left: -28px; top: 28%; }
.hero-flavor-card::after { right: -28px; top: 52%; animation-delay: .45s; }

.hero-flavor-eyebrow {
  margin: 0;
  color: #f5bb68;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.hero-flavor-title {
  margin: 0.2rem 0 0.3rem;
  font-family: var(--script);
  font-size: 1.35rem;
  line-height: 1.15;
  color: #f5bb68;
  font-weight: 600;
}

.hero-flavor-blurb {
  margin: 0 auto 0.85rem;
  max-width: 12.5rem;
  color: #fff3e6;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 600;
  font-family: var(--serif);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-flavor-blurb[hidden] {
  display: none !important;
  margin: 0;
}

/* Sleek pink gallery-style pill — no cake-pop icon */
.flavor-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid #b34e70;
  background: linear-gradient(135deg, #f7b0c4, #e783a2 58%, #d9688d);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(181, 78, 112, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flavor-order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(181, 78, 112, 0.3);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.trust-item {
  padding: 1.25rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-head .lede {
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card,
.info-card,
.menu-category,
.form-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 36px rgba(55, 34, 9, 0.07);
}

.product-card {
  position: relative;
  min-height: 270px;
  padding: 1.6rem;
  overflow: hidden;
  border-color: rgba(169, 105, 49, .35);
  background: linear-gradient(145deg, #fffdf8 0%, #f9e8d6 100%);
  box-shadow: 0 16px 34px rgba(74, 42, 32, .12), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -2%;
  right: -2%;
  top: -3px;
  height: 104px;
  background-color: #4a2a20;
  background:
    linear-gradient(#4a2a20 0 10px, transparent 10px),
    radial-gradient(ellipse 13px 58px at 10% 0, #4a2a20 0 72%, transparent 74%),
    radial-gradient(ellipse 18px 45px at 29% 0, #6e3525 0 72%, transparent 74%),
    radial-gradient(ellipse 11px 66px at 50% 0, #4a2a20 0 72%, transparent 74%),
    radial-gradient(ellipse 17px 48px at 72% 0, #7a3c27 0 72%, transparent 74%),
    radial-gradient(ellipse 14px 60px at 91% 0, #4a2a20 0 72%, transparent 74%);
  transform-origin: top center;
  animation: chocolate-drip 4.8s ease-in-out infinite;
  pointer-events: none;
}

.product-card > * { position: relative; z-index: 1; }

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 42px rgba(74, 42, 32, .2), inset 0 1px 0 rgba(255,255,255,.9);
}

.product-card:nth-child(2) { background: linear-gradient(145deg, #fffdf8 0%, #f9e5b9 100%); }
.product-card:nth-child(3) { background: linear-gradient(145deg, #fffdf8 0%, #eadcf8 100%); }
.product-card:nth-child(4) { background: linear-gradient(145deg, #fffdf8 0%, #f0d0c6 100%); }

@keyframes chocolate-drip {
  0%, 100% { transform: scaleY(.86) scaleX(1); }
  50% { transform: scaleY(1.08) scaleX(1.015); }
}

.product-card h3,
.info-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.product-card p,
.info-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--gold-deep);
  font-weight: 800;
  text-decoration: none;
}

.art-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,253,248,0.96), rgba(243,234,217,0.76));
  box-shadow: var(--shadow);
}

.art-frame {
  overflow: hidden;
  border: 10px solid var(--white);
  outline: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(55, 34, 9, 0.15);
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-copy {
  padding: clamp(1rem, 3vw, 3rem);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.occasion-pill {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 16px rgba(74, 42, 32, .08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.occasion-pill:nth-child(1), .occasion-pill:nth-child(5) { background: #f9d5e1; border-color: #d88aa8; }
.occasion-pill:nth-child(2), .occasion-pill:nth-child(4) { background: #f7e5b9; border-color: #d8ae5b; }
.occasion-pill:nth-child(3), .occasion-pill:nth-child(6) { background: #e6d8f4; border-color: #b493d0; }
.occasion-pill:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(74, 42, 32, .15); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
  background: rgba(255, 253, 248, 0.58);
}

.step h3 {
  margin: 0.35rem 0;
  font-family: var(--serif);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  border: 1px solid rgba(190, 108, 58, 0.7);
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 89, 45, 0.48), transparent 27%),
    radial-gradient(circle at 18% 115%, rgba(116, 47, 25, 0.7), transparent 42%),
    linear-gradient(135deg, #160a07 0%, #32150e 42%, #542417 72%, #2a100b 100%);
  box-shadow: 0 22px 55px rgba(69, 27, 13, 0.28), inset 0 1px 0 rgba(255, 216, 177, 0.18);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  opacity: 0.9;
  background:
    radial-gradient(ellipse at 8% 0, #8a4327 0 18px, transparent 19px),
    radial-gradient(ellipse at 26% 0, #6f301d 0 27px, transparent 28px),
    radial-gradient(ellipse at 48% 0, #9d4e2d 0 15px, transparent 16px),
    radial-gradient(ellipse at 72% 0, #71331f 0 24px, transparent 25px),
    radial-gradient(ellipse at 92% 0, #a85a34 0 17px, transparent 18px);
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -96px;
  top: -150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 31%, rgba(255, 205, 136, 0.18), transparent 10%),
    radial-gradient(circle at 42% 39%, rgba(184, 91, 42, 0.28), transparent 42%),
    radial-gradient(circle, rgba(116, 47, 25, 0.28), transparent 68%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-band .section-title,
.cta-band .lede,
.cta-band .button-row {
  position: relative;
  z-index: 1;
}

.cta-band .lede {
  color: rgba(255,255,255,0.72);
}

.cta-band .eyebrow {
  color: #f0b15c;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.page-hero .section-title,
.page-hero .lede {
  margin-inline: auto;
}

.menu-stack {
  display: grid;
  gap: 1.5rem;
}

.menu-category {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-color: rgba(173, 107, 47, 0.35);
  background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(246,232,210,.82));
  box-shadow: 0 18px 38px rgba(72, 39, 17, .12);
}

/* Decorative cake-pop graphics removed from weekly menu sections */
.menu-category::before,
.menu-category::after {
  content: none !important;
  display: none !important;
}

.menu-category > * { position: relative; z-index: 1; }
.menu-category:nth-child(2) { background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(250,226,187,.86)); }
.menu-category:nth-child(3) { background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(229,218,249,.84)); }
.menu-category:nth-child(4) { background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(234,207,194,.84)); }

.menu-category-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.menu-category h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.price-list {
  min-width: min(100%, 310px);
  display: grid;
  gap: 0.4rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-weight: 800;
}

.price-line span:last-child {
  color: var(--gold-deep);
}

/* Bot honeypot — must stay off-screen and unfocused for real users */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.policy-page h2 {
  margin-top: 1.6rem;
}

.policy-page p,
.policy-page li {
  color: var(--ink-soft, #4a3a40);
  line-height: 1.55;
}

.policy-callout {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.9);
}

/* Section deals (menu) — only rendered when multi deals exist */
.deals-panel {
  min-width: min(100%, 280px);
  max-width: 320px;
  padding: 0.75rem 0.95rem;
  border-radius: 16px;
  border: 1px solid #e7a9c4;
  background: linear-gradient(145deg, #fff8fb, #fff0f6);
}

.deals-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c3f63;
}

.deals-list {
  display: grid;
  gap: 0.35rem;
}

.deal-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-weight: 800;
  color: #4a2030;
}

.deal-line-price {
  color: var(--gold-deep);
  font-family: var(--serif);
  white-space: nowrap;
}

.deal-line-hint {
  margin: -0.15rem 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2f632e;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 1rem;
}

.menu-item {
  padding: 1.2rem 1.2rem 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.menu-item:nth-child(even) {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.menu-item-copy {
  min-width: 0;
  flex: 1;
}

.menu-item-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.menu-item-price {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 101, 16, 0.28);
  background: rgba(255, 248, 230, 0.9);
  color: var(--gold-deep);
  font-weight: 900;
  font-size: 0.92rem;
}

.menu-item p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.menu-add-btn {
  flex: 0 0 auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  border: 1px solid #e7a9c4 !important;
  border-radius: 999px;
  color: #5a2038 !important;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.7) 0 12%, transparent 14%),
    linear-gradient(135deg, #fff4d6 0%, #ffe0a8 22%, #f7b0c4 55%, #e783a2 100%) !important;
  box-shadow:
    0 10px 22px rgba(181, 78, 112, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.menu-add-btn::before {
  content: "♡";
  position: absolute;
  right: 0.55rem;
  top: 0.15rem;
  z-index: 0;
  color: rgba(223, 130, 162, 0.35);
  font-size: 1.35rem;
  pointer-events: none;
  animation: menu-add-heart 1.8s ease-in-out infinite;
}

.menu-add-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.08);
  box-shadow:
    0 14px 28px rgba(181, 78, 112, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.menu-add-btn:active {
  transform: translateY(0) scale(0.98);
}

.menu-add-btn.menu-add-pulse {
  animation: menu-add-pop 450ms cubic-bezier(0.2, 0.9, 0.3, 1.25);
}

@keyframes menu-add-heart {
  0%, 100% { transform: scale(0.9) translateY(0); opacity: 0.45; }
  50% { transform: scale(1.15) translateY(-2px); opacity: 0.85; }
}

@keyframes menu-add-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08) rotate(-2deg); }
  100% { transform: scale(1); }
}

.print-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.artwork-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.artwork-card a {
  display: block;
}

.artwork-card img {
  width: 100%;
  transition: transform 250ms ease;
}

.artwork-card:hover img {
  transform: scale(1.015);
}

.artwork-caption {
  padding: 1rem 1.15rem;
}

.artwork-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.artwork-caption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 1.5rem;
}

.form-card {
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.form-section + .form-section {
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.form-section h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-weight: 800;
}

.field small,
.form-note {
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.76rem 0.88rem;
  border: 1px solid rgba(111, 102, 88, 0.35);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(213, 155, 39, 0.24);
  border-color: var(--gold-deep);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
}

.form-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.35rem;
}

.info-card ul {
  padding-left: 1.2rem;
}

.status-box {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.status-box[data-state="success"] {
  display: block;
  color: #173d1d;
  background: #e5f4e7;
}

.status-box[data-state="error"] {
  display: block;
  color: #6b1c16;
  background: #f7e4e1;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-toolbar .field {
  min-width: min(100%, 320px);
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-card {
  padding: 1.25rem;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.order-id {
  color: var(--gold-deep);
  font-weight: 900;
}

.status-chip {
  display: inline-flex;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: var(--ivory-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin: 1rem 0;
}

.admin-meta div {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.admin-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.74);
  border-top: 5px solid #d987a5;
  background:
    radial-gradient(circle at 12% 0%, rgba(177, 86, 53, .26), transparent 26%),
    radial-gradient(circle at 88% 100%, rgba(218, 155, 55, .16), transparent 30%),
    linear-gradient(145deg, #160b08, #2d1510 58%, #1b0d0b);
  box-shadow: inset 0 1px 0 rgba(255,215,180,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem;
  border: 1px solid rgba(245, 187, 104, .28);
  border-radius: 22px;
  background: rgba(255, 243, 230, .06);
}

.footer-logo img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #f5bb68;
  box-shadow: 0 0 0 4px rgba(243,154,187,.18), 0 10px 24px rgba(0,0,0,.25);
}

.footer-logo strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: .8rem 1rem;
  border-left: 2px solid rgba(243, 154, 187, .42);
}

.footer-links strong {
  margin-bottom: 0.35rem;
  color: #f5bb68;
  font-family: var(--serif);
}

.footer-links a {
  text-decoration: none;
  width: fit-content;
  color: rgba(255,247,240,.76);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover { color: #f9b6cf; transform: translateX(4px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.84rem;
  color: rgba(255,247,240,.62);
}

dialog {
  width: min(94vw, 980px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
}

dialog::backdrop {
  background: rgba(16, 13, 9, 0.78);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: sticky;
  top: 0.75rem;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0.75rem;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.2rem;
}

.dialog-image {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .art-panel,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .display,
  .hero-copy .lede {
    margin-inline: auto;
  }

  .button-row {
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 600px);
    margin: auto;
  }

  /* On tablet/phone, badge sits above the copy without shrinking type */
  .hero-badge {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(200px, 70vw);
    max-width: 200px;
    margin: 0 auto 1.25rem;
  }

  .hero-flavor {
    position: relative;
    right: auto;
    top: auto;
    width: min(300px, 78vw);
    margin: 1.5rem auto 0;
    z-index: 1;
    align-items: center;
  }

  .hero-flavor-orb {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
  }

  .hero-flavor-card {
    margin-top: 0.85rem;
    margin-right: 0;
    width: min(240px, 92%);
  }

  .hero.has-flavor-week {
    padding-bottom: 4rem;
  }

  .hero::before {
    right: -140px;
    top: auto;
    bottom: 6%;
  }

  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-strip {
    font-size: 0.68rem;
  }

  .brand-wordmark {
    display: none;
  }

  .header-social {
    gap: 0.4rem;
  }

  .social-btn {
    width: 46px;
    height: 46px;
  }

  .social-btn svg,
  .social-facebook-glyph {
    width: 24px;
    height: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 122px 1rem auto;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-badge {
    max-width: 165px;
    font-size: 0.86rem;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 4rem 0;
  }

  .section-head,
  .menu-category-head,
  .admin-card-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid,
  .process-grid,
  .print-grid,
  .gallery-grid,
  .form-grid,
  .checkbox-grid,
  .footer-grid,
  .form-aside {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .menu-item:nth-child(even) {
    padding: 1rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-wide {
    grid-column: auto;
  }

  .admin-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.availability-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.availability-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.availability-row strong,
.availability-row span {
  display: block;
}

.availability-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media print {
  .site-header,
  .site-strip,
  .admin-toolbar,
  #availability-admin,
  .site-footer,
  .button,
  select,
  [data-status-select] {
    display: none !important;
  }

  body {
    background: white;
  }

  .admin-card {
    break-inside: avoid;
    box-shadow: none;
  }

  .cart-fab,
  .cart-drawer,
  .cart-modal {
    display: none !important;
  }
}

/* Weekly Order Menu cart — soft, fluid, loving */
.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.72rem 1.05rem 0.72rem 0.9rem;
  border: 1px solid #e7a9c4;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0f6, #ffe3ef 40%, #f7b0c4);
  color: #6a2946;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(181, 78, 112, 0.22);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cart-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(181, 78, 112, 0.28);
}

.cart-fab-heart {
  color: #df82a2;
  font-size: 1.15rem;
  animation: cart-heart-soft 1.8s ease-in-out infinite;
}

.cart-fab-count {
  min-width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #5a2a36;
  color: #fffdf8;
  font-size: 0.8rem;
}

.cart-fab-bounce {
  animation: cart-fab-pop 520ms cubic-bezier(0.2, 0.9, 0.3, 1.3);
}

@keyframes cart-fab-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.12) rotate(-3deg); }
  70% { transform: scale(0.96) rotate(2deg); }
  100% { transform: scale(1); }
}

@keyframes cart-heart-soft {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}

.cart-love-toasts {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: 85;
  display: grid;
  gap: 0.65rem;
  width: min(320px, calc(100vw - 2rem));
  pointer-events: none;
}

.cart-love-toast {
  pointer-events: auto;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid #e7a9c4;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff8fb, #ffe9f2);
  color: #57243b;
  box-shadow: 0 16px 40px rgba(90, 40, 60, 0.2);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 280ms ease, transform 320ms cubic-bezier(0.2, 0.85, 0.3, 1.15);
}

.cart-love-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-love-toast.is-leaving {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
}

.cart-love-hearts {
  display: flex;
  gap: 0.35rem;
  color: #e56d95;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.cart-love-hearts span {
  display: inline-block;
  animation: cart-bubble-heart 1.1s ease-in-out infinite;
}

.cart-love-hearts span:nth-child(2) { animation-delay: 0.12s; }
.cart-love-hearts span:nth-child(3) { animation-delay: 0.24s; }
.cart-love-hearts span:nth-child(4) { animation-delay: 0.36s; }

@keyframes cart-bubble-heart {
  0%, 100% { transform: translateY(4px) scale(0.8); opacity: 0.45; }
  50% { transform: translateY(-6px) scale(1.2); opacity: 1; }
}

.cart-love-title {
  margin: 0;
  font-family: var(--script);
  font-size: 1.25rem;
  color: #9c3d64;
}

.cart-love-copy {
  margin: 0.2rem 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.cart-love-open {
  width: 100%;
  min-height: 42px;
}

.cart-qty-modal {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(40, 18, 28, 0.48);
}

.cart-qty-modal[hidden] {
  display: none !important;
}

.cart-qty-card {
  position: relative;
  width: min(380px, 100%);
  padding: 1.35rem 1.25rem 1.3rem;
  border: 1px solid #e7a9c4;
  border-radius: 26px;
  background: linear-gradient(160deg, #fffdfb, #fff0f6 55%, #ffe6ef);
  box-shadow: 0 24px 60px rgba(70, 25, 45, 0.28);
  text-align: center;
  animation: cart-card-in 320ms cubic-bezier(0.2, 0.85, 0.25, 1.15);
}

@keyframes cart-card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cart-qty-hearts {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  color: #e56d95;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.cart-qty-hearts span {
  animation: cart-bubble-heart 1.15s ease-in-out infinite;
}

.cart-qty-hearts span:nth-child(2) { animation-delay: 0.15s; }
.cart-qty-hearts span:nth-child(3) { animation-delay: 0.3s; }

.cart-qty-card h2 {
  margin: 0.15rem 0 0.25rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: #4a2030;
}

.cart-qty-meta {
  margin: 0 0 0.9rem;
  color: #8c5a6e;
  font-size: 0.9rem;
}

.cart-qty-label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 800;
  color: #6a2946;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f1c3d8;
  margin-bottom: 1rem;
}

.cart-qty-step {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe3ef, #f7b0c4);
  color: #6a2946;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-stepper input {
  width: 3.2rem;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #4a2030;
}

.cart-qty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  background: rgba(40, 18, 28, 0.38);
  animation: cart-dim-in 220ms ease;
}

@keyframes cart-dim-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-drawer[hidden] {
  display: none !important;
}

.cart-drawer-panel {
  width: min(460px, 100%);
  height: 100%;
  overflow: auto;
  padding: 1.15rem 1.15rem 2rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 180, 210, 0.28), transparent 34%),
    linear-gradient(180deg, #fff8fb, #fbf6ec 40%);
  border-left: 1px solid rgba(231, 169, 196, 0.45);
  box-shadow: -18px 0 44px rgba(70, 25, 45, 0.16);
  animation: cart-slide-in 380ms cubic-bezier(0.16, 0.9, 0.22, 1);
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

@keyframes cart-slide-in {
  from { transform: translateX(28px); opacity: 0.45; }
  to { transform: translateX(0); opacity: 1; }
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-drawer-head h2 {
  margin: 0.15rem 0 0;
  font-family: var(--script);
  font-size: 1.7rem;
  color: #8c3f63;
}

.cart-close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #8c3f63;
}

.cart-lines {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.cart-line {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid #f1c3d8;
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 8px 20px rgba(181, 78, 112, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-line:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(181, 78, 112, 0.1);
}

.cart-line-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 0.55rem;
}

.cart-line-heart {
  color: #e56d95;
  font-size: 1.05rem;
  line-height: 1.3;
}

.cart-line strong {
  display: block;
  font-family: var(--serif);
  color: #4a2030;
}

.cart-line small {
  display: block;
  color: #8c5a6e;
}

.cart-line-deal {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #e5f4e7;
  color: #173d1d;
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-line-price {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--gold-deep);
  white-space: nowrap;
  text-align: right;
  display: grid;
  gap: 0.1rem;
  justify-items: end;
}

.cart-line-was {
  font-size: 0.78rem;
  font-weight: 700;
  color: #a07a8a;
  text-decoration: line-through;
}

.cart-line-now {
  font-size: 1.05rem;
}

.cart-totals {
  margin: 0 0 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  border: 1px solid #f1c3d8;
  background: linear-gradient(145deg, #fff8fb, #fff0f6);
  box-shadow: 0 10px 24px rgba(181, 78, 112, 0.07);
  transition: box-shadow 220ms ease;
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 0.3rem 0;
  font-weight: 800;
  color: #4a2030;
  font-size: 0.95rem;
}

.cart-totals-deal {
  color: #2f632e;
}

.cart-totals-hint {
  color: #8c5a6e;
  font-weight: 700;
  font-size: 0.88rem;
}

.cart-totals-grand {
  margin-top: 0.5rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #e7a9c4;
  font-size: 1.12rem;
}

.cart-totals-grand strong {
  font-family: var(--serif);
  color: var(--gold-deep);
  font-size: 1.35rem;
}

.cart-totals-note {
  margin: 0.6rem 0 0;
  color: #8c5a6e;
  font-size: 0.82rem;
  line-height: 1.4;
}

.cart-qty-deal-hint {
  margin: 0 0 0.75rem;
  color: #2f632e;
  font-size: 0.88rem;
  font-weight: 800;
}

.cart-qty-preview {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #f1c3d8;
  color: #4a2030;
  font-size: 0.88rem;
  line-height: 1.35;
  transition: background 180ms ease, border-color 180ms ease;
}

.cart-qty-preview-line strong,
.cart-qty-preview-deal strong {
  font-family: var(--serif);
  color: var(--gold-deep);
}

.cart-qty-preview-deal {
  color: #2f632e;
  font-weight: 700;
}

.cart-deal-note {
  display: block;
  margin: -0.2rem 0 0.65rem;
  color: #2f632e;
  font-weight: 800;
}

.cart-qty-step {
  transition: transform 140ms ease, background 180ms ease;
}

.cart-qty-step:active {
  transform: scale(0.92);
}

.cart-line-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.cart-qty-chip {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe3ef, #f7b0c4);
  color: #6a2946;
  font-weight: 900;
  cursor: pointer;
  transition: transform 140ms ease, background 180ms ease;
}

.cart-qty-chip:active {
  transform: scale(0.9);
}

.cart-qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 900;
  color: #4a2030;
}

.cart-remove {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: #fff0f4;
  color: #8b1f16;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

.cart-empty {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff0f6, #ffe8f0);
  border: 1px solid #f1c3d8;
  font-weight: 700;
  color: #6a2946;
}

.cart-help {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-checkout .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.cart-checkout .field-wide {
  grid-column: 1 / -1;
}

.cart-terms {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.9rem 0;
  font-size: 0.9rem;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cart-status {
  min-height: 1.4rem;
  margin-top: 0.7rem;
  font-weight: 800;
  color: #6b1c16;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 20, 15, 0.62);
}

.cart-modal[hidden] {
  display: none !important;
}

.cart-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid rgba(156, 101, 16, 0.3);
  border-radius: 24px;
  background: #fbf6ec;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.cart-modal-card .cart-close {
  position: absolute;
  right: 0.8rem;
  top: 0.6rem;
}

.cart-confirm-copy {
  color: var(--muted);
  line-height: 1.55;
}

.cart-confirm-id {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.2rem;
}

.cart-pay-card {
  padding: 0.9rem;
  border: 1px solid rgba(156, 101, 16, 0.25);
  border-radius: 16px;
  background: #fffdf8;
  text-align: center;
}

.cart-pay-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.cart-pay-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-pay-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto 0.7rem;
  border-radius: 12px;
  background: white;
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .menu-item {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-add-btn {
    width: 100%;
  }

  .cart-checkout .form-grid {
    grid-template-columns: 1fr;
  }
}
