@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --bg: #faf3f3;
  --bg-2: #f3e3e6;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(136, 17, 106, 0.12);
  --text: #3a2238;
  --text-soft: #725f70;
  --accent: #88116a;
  --accent-strong: #a03680;
  --accent-pale: #f1dde5;
  --cream: #f8ecee;
  --shadow: 0 20px 60px rgba(95, 46, 83, 0.12);
  --shadow-soft: 0 12px 30px rgba(95, 46, 83, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.35rem;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(241, 215, 224, 0.92), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(247, 232, 236, 0.96), transparent 22%),
    linear-gradient(180deg, #faf3f3 0%, #f8f1f3 36%, #fcf8f9 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 100%),
    linear-gradient(rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 100%);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
  opacity: 0.35;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
input,
textarea,
select {
  border: 0;
}

button {
  cursor: pointer;
}

.hidden,
[hidden] {
  display: none !important;
}

.storefront {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0 0;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 -1rem auto;
  height: calc(100% + 0.6rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 251, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  z-index: -1;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  color: var(--accent);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-lockup small {
  margin-top: 0.15rem;
  color: var(--text-soft);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.3rem 0;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 16px 36px rgba(136, 17, 106, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-block {
  width: 100%;
}

.order-status-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.order-status-shell {
  width: min(100%, 760px);
}

.order-status-brand {
  width: max-content;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 250, 251, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.order-status-card {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
  backdrop-filter: blur(24px);
}

.order-status-card h1 {
  margin: 0.4rem 0 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.order-status-message {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.order-status-payment-notice {
  max-width: 36rem;
  margin: 1rem 0 0;
  border: 1px solid rgba(136, 17, 106, 0.18);
  border-radius: 1.2rem;
  background: rgba(255, 246, 249, 0.82);
  color: var(--accent-strong);
  padding: 0.95rem 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.order-status-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 2rem 0;
}

.order-status-step {
  display: grid;
  gap: 0.55rem;
  min-height: 6rem;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.85rem;
  color: var(--text-soft);
}

.order-status-step span {
  display: inline-grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.order-status-step strong {
  font-size: 0.8rem;
}

.order-status-step.is-done {
  border-color: rgba(136, 17, 106, 0.22);
  background: rgba(255, 246, 249, 0.9);
  color: var(--text);
}

.order-status-step.is-current {
  box-shadow: 0 14px 30px rgba(136, 17, 106, 0.12);
}

.order-status-step.is-cancelled {
  grid-column: 1 / -1;
  background: rgba(255, 240, 244, 0.9);
}

.order-status-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.order-status-details div {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.58);
  padding: 1rem;
}

.order-status-details dt {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-status-details dd {
  margin: 0.45rem 0 0;
  font-weight: 900;
}

.order-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  padding: 0 0.35rem;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
}

main {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero,
.catalog-section,
.story-section,
.reviews-section,
.instagram-section,
.awards-section,
.resellers-strip,
.support-strip {
  position: relative;
}

.store-notice {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 -1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(211, 157, 72, 0.3);
  border-radius: 1.2rem;
  background: rgba(255, 251, 241, 0.88);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.store-notice-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.store-notice-icon {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(211, 157, 72, 0.18);
  color: #9b641f;
  font-weight: 900;
}

.store-notice-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.store-notice-copy strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.store-notice-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.store-notice:not(.hidden) + .hero {
  padding-top: 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 4rem;
  min-height: calc(100svh - 4.5rem);
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 2rem -8vw auto auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 231, 0.72), rgba(255, 221, 231, 0.06) 62%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(136, 17, 106, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.hero-title,
.section-heading h2,
.section-heading h1,
.story-quote h2,
.instagram-copy h2,
.awards-copy h2 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-title {
  max-width: 11.5ch;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-body,
.section-copy,
.story-quote p,
.support-strip p,
.story-grid p,
.awards-copy p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-body {
  max-width: 37rem;
  margin: 1.8rem 0 0;
  font-size: 1.06rem;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-visual {
  display: grid;
  justify-self: end;
  width: 100%;
  max-width: 39rem;
  gap: 0.85rem;
}

.hero-note,
.support-strip article,
.story-grid article,
.business-grid article,
.review-card,
.product-card,
.cart-shell,
.status-banner,
.cart-item,
.story-quote,
.business-copy,
.candy-info-card,
.award-card,
.legal-card,
.site-footer,
.checkout-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-note {
  max-width: 23rem;
  margin-left: auto;
  padding: 1.35rem 1.45rem;
  border-radius: 1.4rem;
  color: var(--text-soft);
  transform: translateY(0);
  animation: floatCard 7s ease-in-out infinite;
}

.hero-note p:last-child {
  margin: 0;
  line-height: 1.65;
}

.hero-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 0;
  padding: 0;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(95, 46, 83, 0.09);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136, 17, 106, 0.16);
  box-shadow: 0 18px 42px rgba(95, 46, 83, 0.14);
}

.hero-product-card.large {
  grid-column: span 2;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 1.1fr);
  min-height: 9.6rem;
}

.hero-product-media {
  display: block;
  overflow: hidden;
  min-height: 7.1rem;
  aspect-ratio: 1.22 / 1;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.46) 0 0.65rem, rgba(255, 246, 249, 0.72) 0.65rem 1.3rem),
    linear-gradient(145deg, #fff8fb, #f7edf2);
}

.hero-product-card.large .hero-product-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.hero-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.hero-product-card:hover .hero-product-media img {
  transform: scale(1.035);
}

.hero-product-placeholder {
  display: grid;
  height: 100%;
  min-height: inherit;
  place-items: center;
  color: rgba(114, 95, 112, 0.54);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hero-product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.85rem 0.95rem;
}

.hero-product-kicker {
  color: #be6681;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-award-badge {
  align-self: flex-start;
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

.hero-product-copy strong {
  display: block;
  color: #2c1031;
  font-size: clamp(0.98rem, 1.35vw, 1.28rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-product-card.large .hero-product-copy strong {
  font-size: clamp(1.32rem, 2.05vw, 1.88rem);
}

.hero-product-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-product-card.large .hero-product-description {
  font-size: 0.82rem;
  line-height: 1.27;
}

.hero-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.hero-product-price {
  color: #2c1031;
  font-size: clamp(0.98rem, 1.45vw, 1.22rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-product-card.large .hero-product-price {
  font-size: clamp(1.28rem, 2.05vw, 1.76rem);
}

.hero-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.4rem 0.68rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b006f, #af2b87);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(136, 17, 106, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-product-cta:hover,
.hero-product-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(136, 17, 106, 0.22);
}

.hero-product-cta:focus-visible {
  outline: 3px solid rgba(136, 17, 106, 0.2);
  outline-offset: 3px;
}

.hero-product-card.large .hero-product-cta {
  min-height: 2.1rem;
  padding: 0.45rem 0.82rem;
  font-size: 0.72rem;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin: 1.5rem 0 6.5rem;
}

.support-strip article {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.85rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.support-strip article:first-child {
  background:
    radial-gradient(circle at 14% 20%, rgba(238, 165, 193, 0.36), transparent 34%),
    linear-gradient(145deg, rgba(255, 232, 241, 0.96), rgba(255, 245, 249, 0.9));
  border-color: rgba(234, 175, 197, 0.6);
}

.support-strip article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(95, 46, 83, 0.13);
}

.support-label {
  display: inline-block;
  margin-bottom: 1.9rem;
  color: rgba(221, 160, 181, 0.38);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.support-strip article:first-child .support-label {
  color: rgba(196, 80, 132, 0.34);
}

.support-strip h2,
.story-grid h3,
.checkout-panel h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.catalog-section,
.reviews-section,
.instagram-section,
.awards-section,
.legal-section {
  padding: 0 0 6rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.section-heading h1,
.story-quote h2,
.instagram-copy h2,
.awards-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  max-width: 9.6ch;
}

.section-copy {
  max-width: 28rem;
  margin: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.76rem 1.08rem;
  border-radius: 999px;
  background: rgba(255, 241, 246, 0.86);
  border: 1px solid rgba(220, 159, 184, 0.44);
  color: #6f315f;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(95, 46, 83, 0.12);
}

.chip:focus-visible {
  outline: 3px solid rgba(136, 17, 106, 0.18);
  outline-offset: 3px;
}

.chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  min-height: 1.55rem;
  padding: 0 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(111, 49, 95, 0.72);
  font-size: 0.78rem;
}

.chip.is-active {
  background: linear-gradient(135deg, #7b0068, #af2b87);
  border-color: rgba(123, 0, 104, 0.28);
  color: white;
  box-shadow: 0 18px 36px rgba(136, 17, 106, 0.2);
}

.chip.is-active span {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.product-grid,
.reviews-grid {
  display: grid;
  gap: 1.35rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(95, 46, 83, 0.15);
  border-color: rgba(136, 17, 106, 0.16);
}

.product-card.is-highlighted {
  animation: productSpotlight 1.45s ease;
}

.product-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.42) 0 0.65rem, rgba(255, 246, 249, 0.64) 0.65rem 1.3rem),
    linear-gradient(145deg, #fff8fa, #f8edf1);
}

.product-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-photo-toggle {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

.product-photo-toggle.is-disabled {
  cursor: default;
}

.product-photo-toggle span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0.7rem 1.8rem rgba(67, 36, 61, 0.16);
  color: #6b5268;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-photo-toggle:hover span {
  transform: translateY(-1px);
}

.product-card:hover .product-figure img {
  transform: scale(1.035);
}

.product-photo-placeholder {
  display: grid;
  height: 100%;
  place-content: center;
  gap: 0.2rem;
  color: rgba(114, 95, 112, 0.62);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
}

.product-photo-placeholder span,
.product-photo-placeholder strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
}

.product-photo-placeholder strong {
  max-width: 15rem;
  color: rgba(114, 95, 112, 0.58);
  font-size: 0.9rem;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.05rem 1.15rem 0;
}

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

.product-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.product-type {
  color: #d08ca0;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.product-card h3 {
  margin: 0.3rem 0 0;
  color: #161217;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.7rem;
  margin: 0.55rem 0 0.35rem;
  color: var(--text-soft);
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-description.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.product-description.is-fallback {
  color: rgba(114, 95, 112, 0.58);
  font-style: italic;
}

.product-description-toggle {
  align-self: flex-start;
  margin: -0.1rem 0 0.8rem;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-description-toggle:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: -0.2rem 0 0.7rem;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.product-choice-panel {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.product-choice-field {
  display: grid;
  gap: 0.3rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-choice-field select,
.product-choice-field textarea {
  width: 100%;
  padding: 0.58rem 0.7rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.68);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-choice-field textarea {
  min-height: 6.1rem;
  line-height: 1.45;
  resize: vertical;
}

.product-personal-note-field small {
  justify-self: end;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.product-choice-swatch-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-choice-swatches {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.product-choice-swatch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.product-choice-swatch.is-unavailable {
  cursor: not-allowed;
  opacity: 0.48;
}

.product-choice-swatch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.product-choice-swatch span {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  overflow: hidden;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 1px rgba(58, 34, 56, 0.08), 0 0 0 2px rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-choice-swatch.is-unavailable span::after {
  content: "";
  position: absolute;
  inset: 0.82rem -0.18rem auto;
  height: 2px;
  border-radius: 999px;
  background: rgba(58, 34, 56, 0.48);
  transform: rotate(-34deg);
}

.product-choice-swatch input:checked + span {
  box-shadow: inset 0 0 0 1px rgba(58, 34, 56, 0.08), 0 0 0 3px rgba(136, 17, 106, 0.22);
  transform: scale(1.05);
}

.product-choice-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.product-choice-toggle input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  box-shadow: none;
}

.product-choice-toggle small {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 241, 245, 0.92);
  color: #cb6f8c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-badge-overlay {
  position: absolute;
  right: 0.85rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.7rem);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(95, 46, 83, 0.1);
  backdrop-filter: blur(12px);
}

.product-award-badge {
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

.product-award-badge span {
  min-width: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: auto -1.15rem 0;
  padding: 0.9rem 1.15rem;
  border-top: 1px solid rgba(226, 198, 208, 0.6);
  background: rgba(255, 255, 255, 0.54);
}

.price-stack strong,
.review-stars strong,
.cart-total strong,
.cart-summary strong {
  display: block;
}

.price-stack strong {
  color: #161217;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  letter-spacing: -0.045em;
}

.price-stack span {
  color: #c8a5b1;
  font-size: 0.78rem;
  text-decoration: line-through;
}

.product-footer .button {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.star {
  color: #f0b24d;
  font-size: 0.95rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.review-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.review-author {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  padding: 0 0 6rem;
}

.story-quote {
  padding: 2.1rem;
  border-radius: calc(var(--radius-xl) + 0.35rem);
  background:
    radial-gradient(circle at top left, rgba(255, 222, 232, 0.6), transparent 40%),
    rgba(255, 255, 255, 0.78);
}

.story-quote p:last-child {
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  gap: 1rem;
}

.story-grid article {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
}

.story-grid span {
  color: #cf7f99;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  padding: 0 0 6rem;
}

.business-copy {
  position: relative;
  overflow: hidden;
  padding: 2.1rem;
  border-radius: calc(var(--radius-xl) + 0.35rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 218, 230, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 244, 248, 0.86));
}

.business-copy h2 {
  margin: 0;
  max-width: 10.2ch;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.business-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.business-grid {
  display: grid;
  gap: 1rem;
}

.business-grid article {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
}

.business-card-image {
  width: 100%;
  height: clamp(9rem, 18vw, 13rem);
  margin-bottom: 1.1rem;
  border-radius: 1.1rem;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(83, 41, 67, 0.12);
}

.business-card-image:not(.hidden) {
  display: block;
}

.business-grid span {
  color: #cf7f99;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.business-grid h3 {
  margin: 0.75rem 0 0;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.business-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.candy-info-section {
  padding: 0 0 6rem;
}

.candy-page-mode .candy-info-section {
  padding: 5rem 0 7rem;
}

.candy-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.candy-info-card {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  overflow: hidden;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
}

.candy-info-media {
  overflow: hidden;
  border-radius: 1.2rem;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #ffe1ea, #fff4f7);
}

.candy-info-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candy-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.candy-info-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.candy-info-copy h3 {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.candy-info-copy p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.candy-allergens {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(226, 198, 208, 0.65);
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
}

.candy-allergens strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #cf7f99;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.45rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(250, 222, 147, 0.95), rgba(255, 244, 199, 0.9)),
    #f8e6ad;
  color: #704923;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(112, 73, 35, 0.1);
}

.award-badge img {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  object-fit: cover;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.instagram-copy {
  padding-bottom: 1rem;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
  padding: 0.35rem 0;
  color: var(--accent);
  font-weight: 800;
}

.instagram-link span:last-child {
  color: var(--text);
  font-size: 0.88rem;
}

.instagram-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(8.6rem, 1fr);
  gap: 0.78rem;
  transform: rotate(-1deg);
}

.instagram-post {
  position: relative;
  display: block;
  height: 100%;
  min-height: 10rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.45rem;
  background: #fff7f9;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.instagram-post:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 0 24px 58px rgba(95, 46, 83, 0.18);
}

.instagram-post-large {
  grid-column: span 2;
  grid-row: span 2;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.instagram-post::after {
  content: '';
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(58, 34, 56, 0.58));
}

.instagram-post span {
  position: absolute;
  right: 0.9rem;
  bottom: 0.85rem;
  left: 0.9rem;
  z-index: 1;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(58, 34, 56, 0.36);
}

.awards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: stretch;
}

.awards-copy {
  align-self: center;
}

.awards-copy p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.25rem 0 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.award-card {
  position: relative;
  overflow: hidden;
  min-height: 11.5rem;
  padding: 1.25rem;
  border-radius: 1.45rem;
}

.award-card-featured {
  grid-row: span 2;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 8%, rgba(248, 205, 116, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 230, 0.94), rgba(255, 238, 246, 0.82));
  border-color: rgba(211, 157, 72, 0.24);
}

.award-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 31%, transparent 32%),
    conic-gradient(from 22deg, #d49a45, #f8df94, #b86f38, #f6d176, #d49a45);
  opacity: 0.2;
}

.award-card-image {
  position: relative;
  z-index: 1;
  width: min(100%, 13rem);
  max-height: 7.8rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(83, 41, 67, 0.1);
}

.award-card-featured .award-card-image {
  width: min(100%, 16rem);
  max-height: 11rem;
}

.award-card span {
  display: inline-flex;
  color: rgba(136, 17, 106, 0.64);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.award-card h3 {
  position: relative;
  max-width: 12rem;
  margin: 2rem 0 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.award-card-image:not(.hidden) ~ h3 {
  margin-top: 0.85rem;
}

.award-card p {
  position: relative;
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.resellers-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: center;
  margin: -2rem 0 2.2rem;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(114, 95, 112, 0.16);
  border-bottom: 1px solid rgba(114, 95, 112, 0.12);
}

.resellers-strip h2 {
  margin: 0;
  color: rgba(114, 95, 112, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.reseller-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  min-width: 0;
}

.reseller-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  min-width: 8.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(114, 95, 112, 0.13);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(58, 34, 56, 0.58);
  line-height: 1.1;
  text-align: center;
  filter: grayscale(1);
}

.reseller-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
}

.reseller-logo-image {
  width: auto;
  max-width: 7.8rem;
  max-height: 1.65rem;
  object-fit: contain;
  opacity: 0.7;
}

.reseller-logo-image:not(.hidden) + span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.legal-section {
  scroll-margin-top: 8rem;
}

.legal-page-section {
  padding-top: 6rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  scroll-margin-top: 8rem;
  min-height: 16rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.legal-card:target {
  border-color: rgba(136, 17, 106, 0.34);
  box-shadow: 0 22px 54px rgba(136, 17, 106, 0.14);
}

.legal-card h2,
.legal-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card dd {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-card dl {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
}

.legal-card dt {
  color: rgba(136, 17, 106, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-card dd {
  margin-top: 0.35rem;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 2rem;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: calc(var(--radius-xl) + 0.3rem);
  background:
    radial-gradient(circle at left top, rgba(255, 223, 232, 0.74), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem 1.6rem;
  align-items: center;
}

.footer-brand img {
  width: 7.5rem;
  grid-row: span 2;
}

.footer-brand .eyebrow {
  margin-bottom: 0;
}

.footer-brand p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.footer-column {
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(136, 17, 106, 0.12);
}

.footer-column h2 {
  margin: 0 0 0.85rem;
  color: rgba(136, 17, 106, 0.72);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-column p,
.footer-column a,
.footer-column address {
  display: block;
  margin: 0.35rem 0 0;
  color: var(--text);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(136, 17, 106, 0.12);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.status-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 1rem 1.15rem;
  border-radius: 1.3rem;
  color: var(--text);
}

.status-banner strong {
  display: block;
  margin-bottom: 0.25rem;
}

.status-banner[data-kind="success"] {
  border-color: rgba(85, 164, 118, 0.24);
  background: rgba(245, 255, 248, 0.92);
}

.status-banner[data-kind="warning"] {
  border-color: rgba(222, 173, 94, 0.24);
  background: rgba(255, 251, 241, 0.94);
}

.status-banner[data-kind="error"] {
  border-color: rgba(214, 108, 132, 0.24);
  background: rgba(255, 244, 247, 0.94);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: end;
  min-height: 100dvh;
  padding: 1rem;
  background: rgba(42, 30, 35, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-shell {
  display: flex;
  flex-direction: column;
  width: min(50rem, 100%);
  min-width: 0;
  height: calc(100dvh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 252, 0.96), rgba(255, 245, 248, 0.96));
  transform: translateX(2rem);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-shell {
  transform: translateX(0);
}

.cart-header {
  flex: 0 0 auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cart-header h2 {
  margin: 0.3rem 0 0;
  font-family: 'Oswald', sans-serif;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.cart-layout > section {
  min-width: 0;
  min-height: 0;
}

.cart-layout > section:first-child {
  display: flex;
  flex-direction: column;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}

.cart-items {
  flex: 0 0 auto;
  min-height: 0;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  overflow: visible;
  padding-right: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 1.5rem;
}

.cart-item-media {
  overflow: hidden;
  border-radius: 1.15rem;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #ffe4ec, #fff6f8);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-copy h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-item-copy p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.cart-choice-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.cart-choice-summary span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
  background: rgba(255, 245, 248, 0.8);
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.cart-pickup-only-notice {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 241, 242, 0.96));
  border: 1px solid rgba(245, 158, 11, 0.42);
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.64);
  color: #7c2d12;
}

.cart-pickup-only-notice.hidden {
  display: none;
}

.cart-pickup-only-notice-icon {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff7ed;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.cart-pickup-only-notice strong {
  display: block;
  color: #7c2d12;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-pickup-only-notice span:last-child {
  display: block;
  margin-top: 0.25rem;
  color: #9a3412;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-controls button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
}

.qty-controls span {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 800;
}

.cart-summary {
  flex: 0 0 auto;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--text-soft);
}

.cart-total {
  margin-top: 0.25rem;
  padding-top: 0.8rem !important;
  border-top: 1px solid rgba(226, 198, 208, 0.65);
  color: var(--text);
}

.checkout-compliance-summary {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.58);
}

.checkout-compliance-summary h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.checkout-compliance-summary p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.checkout-compliance-summary dl {
  display: grid;
  gap: 0.8rem;
  margin: 0.85rem 0 0;
}

.checkout-compliance-summary dt {
  color: rgba(136, 17, 106, 0.72);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.checkout-compliance-summary dd {
  margin: 0.24rem 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.checkout-panel {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: auto;
  padding: 1.25rem;
  border-radius: 1.8rem;
}

.checkout-heading h3 {
  margin: 0.35rem 0 0;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.checkout-hint {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.checkout-form {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.checkout-form label {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.68);
}

.checkout-form textarea {
  resize: vertical;
}

.terms-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 0.75rem !important;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.62);
  line-height: 1.55;
}

.terms-consent input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.22rem;
  accent-color: var(--accent);
  box-shadow: none;
}

.terms-consent a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.courier-fields {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0.95rem;
}

.pickup-window-fields {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(236, 169, 199, 0.72);
}

.pickup-window-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  width: 100%;
  min-width: 0;
  gap: 0.75rem;
}

.pickup-window-heading span {
  min-width: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.pickup-week-toggle {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.pickup-window-list {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 1rem;
}

.pickup-date-strip {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.42rem;
}

.pickup-date-pill {
  display: grid;
  min-width: 0;
  min-height: 4.55rem;
  align-content: center;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.2rem;
  border-radius: 1rem;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.pickup-date-pill span {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.pickup-date-pill strong {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.pickup-date-pill.is-active {
  background: var(--accent);
  color: white;
}

.pickup-date-pill.is-active span {
  color: rgba(255, 255, 255, 0.82);
}

.pickup-date-pill.is-disabled {
  color: rgba(91, 48, 83, 0.2);
  cursor: not-allowed;
}

.pickup-date-pill.is-disabled span {
  color: rgba(91, 48, 83, 0.22);
}

.pickup-date-pill:not(.is-disabled):hover {
  transform: translateY(-1px);
}

.pickup-active-date {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 900;
}

.pickup-window-reason {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.pickup-slot-list {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0.75rem;
}

.pickup-slot-card {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 5rem;
  align-items: center;
  gap: 0.8rem;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: inset 0 0 0 2px rgba(236, 169, 199, 0.72);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.pickup-slot-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pickup-slot-icon {
  width: 2.1rem;
  text-align: center;
  font-size: 1.45rem;
}

.pickup-slot-copy {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.pickup-slot-copy strong {
  overflow-wrap: anywhere;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
}

.pickup-slot-copy small {
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 800;
}

.pickup-slot-check {
  color: transparent;
  font-size: 1.55rem;
  font-weight: 900;
}

.pickup-slot-card.is-selected {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 28px rgba(136, 17, 106, 0.18);
}

.pickup-slot-card.is-selected .pickup-slot-copy small,
.pickup-slot-card.is-selected .pickup-slot-check {
  color: white;
}

.pickup-slot-card input:focus-visible ~ .pickup-slot-copy strong {
  outline: 3px solid rgba(136, 17, 106, 0.24);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

.pickup-slot-card:hover {
  transform: translateY(-1px);
}

.pickup-window-empty {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 245, 248, 0.72);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.48);
}

.pickup-date-pill:focus-visible,
.pickup-week-toggle:focus-visible,
.pickup-slot-card:focus-within {
  outline: 3px solid rgba(136, 17, 106, 0.24);
  outline-offset: 2px;
}

.checkout-choice-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 245, 248, 0.72);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.62);
}

.checkout-choice-panel .eyebrow {
  margin-bottom: 0;
  font-size: 0.68rem;
}

.checkout-choice-list {
  display: grid;
  gap: 0.8rem;
}

.checkout-choice-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(226, 198, 208, 0.58);
}

.checkout-choice-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-choice-card strong {
  color: var(--text);
  font-size: 0.95rem;
}

.checkout-choice-card > div:first-child span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.choice-toggle {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 0.7rem !important;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.choice-toggle input {
  width: auto;
  box-shadow: none;
}

.delivery-meta {
  margin: -0.1rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.empty-state {
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-soft);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes productSpotlight {
  0% {
    box-shadow: 0 0 0 0 rgba(136, 17, 106, 0);
  }
  20% {
    transform: translateY(-5px);
    box-shadow: 0 0 0 8px rgba(136, 17, 106, 0.08), 0 24px 58px rgba(95, 46, 83, 0.18);
  }
  100% {
    box-shadow: var(--shadow);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-title {
    max-width: 11ch;
    font-size: 5rem;
  }

  .hero-note {
    margin-left: 0;
  }

  .support-strip,
  .product-grid,
  .reviews-grid,
  .story-section,
  .business-section,
  .candy-info-list,
  .awards-grid,
  .cart-layout {
    grid-template-columns: 1fr 1fr;
  }

  .story-section,
  .business-section {
    align-items: start;
  }

  .cart-layout {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.8rem;
  }

  .site-header::before {
    border-radius: 2rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 0 0 0.8rem;
    overflow-x: auto;
  }

  .header-actions {
    padding-right: 0;
  }

  .support-strip,
  .product-grid,
  .reviews-grid,
  .story-section,
  .business-section,
  .candy-info-list,
  .awards-section,
  .awards-grid,
  .legal-grid,
  .cart-layout,
  .checkout-grid,
  .instagram-section,
  .resellers-strip,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .section-heading h2,
  .section-heading h1,
  .story-quote h2,
  .business-copy h2,
  .instagram-copy h2,
  .awards-copy h2 {
    max-width: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .instagram-copy {
    padding-bottom: 0;
  }

  .award-card-featured {
    grid-row: span 1;
  }

  .instagram-preview {
    grid-auto-rows: minmax(8rem, 1fr);
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    grid-row: auto;
  }

  .reseller-logo-row {
    justify-content: flex-start;
  }

  .hero-featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-card.large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    padding: 0;
  }

  .cart-shell {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: auto;
    border-radius: 2rem 2rem 0 0;
  }

  .cart-layout {
    display: block;
  }

  .cart-layout > section:first-child,
  .checkout-panel {
    display: block;
    height: auto;
    overflow: visible;
  }

  .cart-items {
    flex: none;
    max-height: none;
    overflow: visible;
  }

  .order-status-steps,
  .order-status-details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  main {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: min(calc(100% - 1.25rem), var(--max));
    padding-top: 0.45rem;
  }

  .site-header::before {
    inset: 0 -0.45rem auto;
    height: calc(100% + 0.35rem);
    border-radius: 1.4rem;
  }

  .brand-lockup {
    justify-self: center;
    gap: 0.55rem;
    padding: 0.45rem 0.7rem 0.1rem;
  }

  .brand-mark {
    width: 3.85rem;
  }

  .brand-lockup strong {
    font-size: 0.86rem;
  }

  .brand-lockup small {
    margin-top: 0.08rem;
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }

  .site-nav {
    gap: 0.85rem;
    justify-content: flex-start;
    padding: 0.1rem 0.45rem 0.55rem;
    overflow-x: hidden;
    flex-wrap: wrap;
    white-space: nowrap;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .hero-actions-row .button {
    width: 100%;
  }

  .hero-actions-row {
    width: 100%;
    flex-direction: column;
  }

  .cart-shell {
    padding: 0.75rem;
  }

  .checkout-panel {
    padding: 0.9rem;
    border-radius: 1.4rem;
  }

  .pickup-window-fields {
    padding: 0.85rem;
  }

  .pickup-window-heading {
    align-items: center;
    gap: 0.45rem;
  }

  .pickup-window-heading span {
    font-size: 0.95rem;
  }

  .pickup-week-toggle {
    font-size: 0.76rem;
  }

  .pickup-date-strip {
    gap: 0.2rem;
  }

  .pickup-date-pill {
    min-height: 3.9rem;
    padding: 0.45rem 0.08rem;
    border-radius: 0.82rem;
  }

  .pickup-date-pill span {
    font-size: 0.64rem;
  }

  .pickup-date-pill strong {
    font-size: 1.18rem;
  }

  .pickup-slot-card {
    min-height: 4.75rem;
    gap: 0.62rem;
    padding-inline: 0.75rem;
  }

  .pickup-slot-icon {
    width: 1.8rem;
  }

  .pickup-slot-copy strong {
    font-size: 1.02rem;
  }

  .chip-row {
    flex-wrap: nowrap;
    gap: 0.45rem;
    margin-inline: -0.625rem;
    margin-bottom: 1.35rem;
    padding-inline: 0.625rem 1.45rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0.625rem;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.4rem), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.4rem), transparent);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .chip-row::-webkit-scrollbar {
    display: none;
  }

  .chip-row .chip {
    flex: 0 0 auto;
    min-height: 2.32rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.86rem;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 22px rgba(95, 46, 83, 0.08);
  }

  .chip-row .chip span {
    min-width: 1.28rem;
    min-height: 1.28rem;
    padding: 0 0.34rem;
    font-size: 0.68rem;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    padding: 0 0.45rem;
  }

  .site-header .button {
    width: 100%;
    min-height: 2.35rem;
    padding: 0.48rem 0.8rem;
    font-size: 0.78rem;
    box-shadow: 0 8px 18px rgba(136, 17, 106, 0.12);
  }

  .site-header .cart-count {
    min-width: 1.35rem;
    height: 1.35rem;
    font-size: 0.68rem;
  }

  .product-footer .button {
    width: auto;
    flex: 0 1 auto;
  }

  .price-stack {
    min-width: 0;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .candy-info-card {
    grid-template-columns: 1fr;
  }

  .instagram-preview {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .instagram-post-large {
    grid-column: span 2;
  }

  .resellers-strip {
    margin-top: -2.8rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .order-status-page {
    padding: 1rem;
  }

  .order-status-steps,
  .order-status-details {
    grid-template-columns: 1fr;
  }

  .order-status-actions .button {
    width: 100%;
  }
}
