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

:root {
  --bg: #fff3fb;
  --surface: #fffafd;
  --surface-strong: #ffffff;
  --surface-soft: #ffe7f6;
  --ink: #241c24;
  --muted: #6d5f6c;
  --line: rgba(36, 28, 36, 0.1);
  --line-strong: rgba(36, 28, 36, 0.18);
  --accent: #ff66c4;
  --accent-soft: #ffd9ef;
  --accent-deep: #ff66c4;
  --coral: #ff85cf;
  --coral-soft: #ffe6f5;
  --gold: #ff9fdd;
  --shadow: 0 18px 42px rgba(62, 33, 58, 0.09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

html.storefront-hydrating:not(.storefront-hydrated):not(.storefront-hydration-timeout) body[data-page] .site-shell {
  opacity: 0;
  visibility: hidden;
}

html.storefront-hydrated body[data-page] .site-shell {
  animation: storefront-reveal 180ms ease-out both;
}

@keyframes storefront-reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.announcement-bar {
  background: linear-gradient(90deg, #ef6f4d 0%, #f49d70 45%, #58b2ac 100%);
  color: #fff;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 42px;
  text-align: center;
}

.announcement-inner span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.announcement-inner p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 244, 0.92);
  border-bottom: 1px solid rgba(31, 34, 48, 0.08);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  display: block;
  width: clamp(12rem, 18vw, 17rem);
  height: auto;
}

.brand-kicker {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: #ff2d8d;
  font-weight: 500;
  line-height: 0.95;
}

.brand-name {
  font-family: "Poppins", "Manrope", sans-serif;
  display: block;
  font-size: clamp(0.58rem, 0.8vw, 0.74rem);
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  padding-left: 0.12rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-item-shop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.85rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--muted);
}

.site-nav-submenu {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 50%;
  display: grid;
  gap: 0.45rem;
  min-width: 11rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 34, 48, 0.08);
  background: rgba(255, 249, 244, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 30;
}

.site-nav-item-shop:hover .site-nav-submenu,
.site-nav-item-shop:focus-within .site-nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav-submenu a {
  padding: 0;
  letter-spacing: 0.16em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cart span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.hero,
.page-hero,
.section {
  position: relative;
}

.hero {
  padding: 3.2rem 0 3rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 2rem auto auto 50%;
  width: min(540px, 74vw);
  height: min(540px, 74vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 227, 214, 0.82) 0%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-home::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: 4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 45% 55% 56% 44%;
  background: rgba(88, 178, 172, 0.1);
  z-index: 0;
  pointer-events: none;
}

.hero-home-minimal::before,
.hero-home-minimal::after {
  display: none;
}

.hero-grid,
.page-hero-grid,
.split-feature,
.editorial-band,
.event-layout,
.about-layout,
.cart-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy,
.hero-mosaic,
.page-hero-grid,
.category-card,
.product-card,
.service-panel,
.process-card,
.value-card,
.review-card,
.shop-callout,
.product-gallery,
.product-form-panel,
.event-form-panel,
.cart-item,
.cart-summary {
  animation: rise-in 560ms ease both;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.3rem;
}

.hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-visual-stack {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.home-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.home-gallery-side {
  display: grid;
  gap: 1rem;
}

.home-gallery.home-gallery-banner {
  grid-template-columns: minmax(0, 1fr);
}

.home-gallery.home-gallery-banner .home-gallery-primary {
  min-height: 21.5rem;
}

.home-gallery.home-gallery-banner .home-gallery-side {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 34, 48, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery-primary {
  min-height: 36.5rem;
}

.home-gallery-side .home-gallery-card {
  min-height: 11.4rem;
}

.home-intro {
  max-width: 48rem;
  text-align: center;
}

.home-intro p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-mosaic {
  animation-delay: 120ms;
}

.category-card:nth-child(2),
.product-card:nth-child(2),
.service-panel:nth-child(2),
.process-card:nth-child(2),
.value-card:nth-child(2),
.review-card:nth-child(2) {
  animation-delay: 90ms;
}

.category-card:nth-child(3),
.product-card:nth-child(3),
.service-panel:nth-child(3),
.process-card:nth-child(3),
.value-card:nth-child(3),
.review-card:nth-child(3) {
  animation-delay: 150ms;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: end;
}

.page-hero h1,
.hero h1,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3.7rem, 7vw, 6.4rem);
  line-height: 0.88;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.02;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}

.hero-text,
.page-hero-copy,
.split-copy p,
.editorial-copy p,
.service-copy p,
.event-copy p,
.about-copy p,
.review-card p,
.value-card p,
.process-card p,
.service-panel p,
.panel p,
.footer-grid p,
.category-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text,
.page-hero-copy {
  max-width: 38rem;
  font-size: 1.02rem;
}

.eyebrow,
.window-kicker,
.filter-label,
.footer-title,
.footer-brand {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow,
.window-kicker,
.filter-label {
  color: var(--accent);
}

.footer-brand {
  color: var(--ink);
  letter-spacing: 0.12em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary.light {
  background: #fff;
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button.tertiary {
  background: #dff3f1;
  color: var(--accent-deep);
}

.button.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button.button-ghost[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-notes,
.sidebar-notes,
.config-list,
.product-meta-list,
.cart-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-notes {
  display: grid;
  gap: 0.8rem;
}

.hero-notes li,
.sidebar-notes li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-notes li::before,
.sidebar-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.mosaic-card,
.mosaic-quote,
.personalization-window,
.category-card,
.panel,
.product-card,
.review-card,
.value-card,
.process-card,
.service-panel,
.shop-callout,
.service-copy,
.product-gallery,
.product-form-panel,
.event-form-panel,
.cart-summary,
.cart-item,
.empty-state {
  border: 1px solid rgba(31, 34, 48, 0.1);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mosaic-card,
.mosaic-quote,
.personalization-window,
.panel,
.product-card,
.review-card,
.value-card,
.process-card,
.service-panel,
.shop-callout,
.service-copy,
.product-gallery,
.product-form-panel,
.event-form-panel,
.cart-summary,
.cart-item,
.empty-state {
  border-radius: var(--radius-xl);
}

.mosaic-card {
  overflow: hidden;
  background: #fff;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-card:first-child {
  border-radius: 48px 18px 18px 18px;
}

.mosaic-card:nth-child(2) {
  border-radius: 18px 48px 18px 18px;
}

.mosaic-card:nth-child(3) {
  border-radius: 18px 18px 18px 42px;
}

.mosaic-tall {
  grid-row: span 2;
  min-height: 38rem;
}

.mosaic-quote {
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  background:
    linear-gradient(150deg, rgba(239, 111, 77, 0.94), rgba(244, 157, 112, 0.74) 55%, rgba(255, 235, 221, 0.9)),
    var(--surface);
}

.mosaic-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  max-width: 13rem;
  font-size: 2.35rem;
  line-height: 1;
}

.section {
  padding: 4.5rem 0;
}

.section-cream {
  background: transparent;
}

.section-tint {
  background: transparent;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(239, 111, 77, 0.34), transparent 26%),
    linear-gradient(180deg, rgba(13, 66, 72, 0.98), rgba(18, 38, 50, 0.98));
  color: #fff;
}

.section-marquee {
  padding: 0 0 2rem;
}

.home-shop-stack {
  display: grid;
  gap: 2.5rem;
}

.home-shop-section {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.home-shop-section:first-child {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.home-shop-copy,
.home-section-copy,
.home-about-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.45rem 0.35rem 0.35rem 0;
}

.home-shop-copy .home-shop-label {
  margin: 0;
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ff66c4;
  line-height: 1.1;
}

.home-shop-copy h2,
.home-section-copy h2,
.home-about-copy h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 0.98;
}

.home-shop-copy p,
.home-section-copy p,
.home-about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.home-shop-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 34, 48, 0.09);
  box-shadow: var(--shadow);
}

.home-shop-card-media {
  aspect-ratio: 1 / 1.03;
  padding: 0.9rem;
  background: linear-gradient(180deg, #fff2e8 0%, #fffdfa 100%);
}

.home-shop-card:nth-child(2n) .home-shop-card-media {
  background: linear-gradient(180deg, #eaf7f6 0%, #fffdfa 100%);
}

.home-shop-card:nth-child(3n) .home-shop-card-media {
  background: linear-gradient(180deg, #fff6e0 0%, #fffdfa 100%);
}

.home-shop-card-media img {
  border-radius: calc(var(--radius-lg) - 2px);
}

.home-shop-card-body {
  gap: 0.55rem;
  padding: 1.1rem 1.1rem 1.2rem;
}

.home-shop-card-copy {
  display: grid;
  gap: 0.35rem;
  padding-inline: 0.2rem 0.1rem;
}

.home-shop-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-inline: 0.15rem;
}

.home-shop-card .product-card-title {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 0.98;
}

.home-shop-card .product-card-meta {
  justify-content: flex-start;
  margin-top: 0.18rem;
}

.home-shop-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  min-height: 1.55rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.home-shop-swatch:hover,
.home-shop-swatch.is-active {
  transform: scale(1.05);
  border-color: rgba(31, 34, 48, 0.14);
}

.home-shop-swatch .swatch-dot {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 34, 48, 0.08);
}

.home-events-block {
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

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

.event-summary-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 34, 48, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

.event-summary-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.event-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-about-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.home-about-image {
  overflow: hidden;
  min-height: 27.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 34, 48, 0.1);
  box-shadow: var(--shadow);
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-dark .eyebrow,
.section-dark p,
.section-dark h2,
.section-dark h3 {
  color: inherit;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head-tight {
  margin-bottom: 1.5rem;
}

.category-grid,
.product-grid,
.service-panels,
.process-grid,
.value-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

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

.benefit-card {
  padding: 1.15rem 1.2rem;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--line);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 95, 102, 0.22);
}

.category-card:nth-child(1) {
  background: #fff7ef;
}

.category-card:nth-child(2) {
  background: #eef8f7;
}

.category-card:nth-child(3) {
  background: #fff1f5;
}

.category-card:nth-child(4) {
  background: #fff9e7;
}

.category-index {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.category-card h3,
.feature-points h3,
.service-panel h3,
.process-card h3,
.value-card h3,
.cart-summary h3,
.product-info h2,
.shop-callout h3,
.event-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.split-feature,
.editorial-band,
.event-layout,
.about-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-copy,
.editorial-copy,
.event-copy,
.about-copy {
  display: grid;
  gap: 1rem;
}

.feature-points {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.feature-points article,
.event-feature-list article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.personalization-card {
  display: flex;
  justify-content: center;
}

.personalization-window {
  width: min(100%, 420px);
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff4eb 100%);
}

.personalization-window h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
}

.config-list {
  display: grid;
  gap: 0.95rem;
}

.config-list li,
.product-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.config-list strong,
.product-meta-list strong {
  color: var(--ink);
}

.monogram-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  min-height: 7rem;
  margin-top: 1.5rem;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(239, 111, 77, 0.18), rgba(13, 95, 102, 0.14));
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.9rem;
  letter-spacing: 0.14em;
}

.fine-print,
.helper-text,
.feedback,
.product-kicker,
.product-eyebrow,
.product-price,
.product-note,
.variant-note {
  color: var(--muted);
}

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

.featured-grid .product-card:first-child {
  grid-column: span 2;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1.14;
  overflow: hidden;
  padding: 0;
  border-radius: calc(var(--radius-xl) - 6px);
  background: transparent;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 6px);
  transition: transform 240ms ease;
}

.product-card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
}

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

.product-card-body {
  display: grid;
  gap: 0.5rem;
  padding: 0.15rem 0.2rem 0;
}

.product-card-copy {
  display: grid;
  gap: 0.3rem;
  padding-inline-start: 0.35rem;
}

.product-badges,
.product-swatches,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge,
.swatch-chip,
.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.tag {
  background: #fff4cf;
  color: #7f6425;
}

.product-card .product-card-title {
  font-size: 0.84rem;
  line-height: 1.04;
}

.product-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-kicker {
  margin: 0;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.product-price {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.8rem;
}

.editorial-band {
  gap: 2rem;
}

.editorial-visual,
.about-portrait {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 32rem;
  box-shadow: var(--shadow);
}

.editorial-visual img,
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.service-copy {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
}

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

.service-panel,
.process-card,
.value-card,
.review-card {
  padding: 1.6rem;
}

.service-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

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

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

.review-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.review-card-large {
  grid-column: span 2;
}

.site-footer {
  padding: 1.6rem 0 2.4rem;
  background: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

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

.footer-logo {
  width: 7.6rem;
  max-width: 100%;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(255, 102, 196, 0.12);
}

.footer-brand-copy p:last-child {
  max-width: 18rem;
}

.footer-title-secondary {
  margin-top: 1.15rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 1rem;
}

.shop-filter-block,
.shop-callout {
  padding: 1.3rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-pill,
.swatch-button,
.qty-button,
.remove-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.filter-pill {
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.filter-pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-count {
  color: var(--muted);
}

.product-section {
  padding-top: 3.5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background: linear-gradient(180deg, #fff0e7 0%, #fffdfa 100%);
}

.product-gallery-main {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

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

.product-thumb {
  display: block;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.is-active {
  border-color: var(--accent);
  background: rgba(255, 236, 227, 0.82);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.product-form-panel {
  padding: 2rem;
  background: #fff;
}

.product-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.product-info {
  display: grid;
  gap: 1rem;
}

.product-info h2 {
  font-size: clamp(2.7rem, 6vw, 4.1rem);
}

.product-description {
  color: var(--muted);
  line-height: 1.75;
}

.product-price-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-price-hero strong {
  font-size: 1.45rem;
}

.status-pill {
  background: rgba(239, 111, 77, 0.14);
  color: var(--accent-deep);
}

.product-option-group {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

fieldset.product-option-group {
  margin: 0;
  padding: 1rem 0 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.product-option-group legend,
.product-option-title {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--ink);
}

.product-option-group legend {
  padding: 0;
}

.swatch-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.swatch-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.7rem;
  padding: 0.4rem 0.75rem 0.4rem 0.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.swatch-button.swatch-button-text-only {
  padding: 0.55rem 0.9rem;
}

.swatch-button.is-selected {
  border-color: var(--accent);
  background: rgba(255, 224, 212, 0.74);
}

.swatch-button:disabled,
.qty-button:disabled,
.cart-qty-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.swatch-dot {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field span {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 34, 48, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.feedback {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.feedback.is-success {
  color: var(--accent-deep);
}

.feedback.is-error {
  color: #9d4a37;
}

.product-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-note {
  font-size: 0.9rem;
}

.qty-field {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.qty-button {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
}

.qty-value {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 800;
}

.event-layout,
.faq-layout {
  align-items: start;
}

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

.process-card span,
.value-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.event-feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.panel {
  padding: 1.6rem;
}

.about-layout {
  gap: 2.5rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 34, 48, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.review-stats article {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 34, 48, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.review-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.review-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-layout {
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: start;
  gap: 1.4rem;
}

.checkout-stage-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(320px, 0.68fr);
  align-items: start;
  gap: 1.4rem;
}

.checkout-stage-layout > * {
  min-width: 0;
}

.cart-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 1rem;
  align-self: start;
}

.cart-list {
  display: grid;
  gap: 1rem;
  max-height: calc(100vh - 180px);
  overflow: auto;
}

.cart-page-list {
  max-height: none;
  overflow: visible;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1rem;
}

.cart-item-header > div {
  min-width: 0;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.cart-item-body {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-qty-control {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.55rem;
}

.cart-qty-button {
  min-width: 2.2rem;
  min-height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.cart-qty-value {
  min-width: 1.2rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.cart-sidebar .cart-list {
  align-content: start;
}

.cart-sidebar .cart-item {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: calc(var(--radius-lg) - 8px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 34, 48, 0.06);
}

.cart-sidebar .cart-item-body {
  gap: 0.55rem;
}

.cart-sidebar .product-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.cart-sidebar .cart-item h3 {
  margin: 0.15rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.cart-sidebar .cart-item-header {
  gap: 0.7rem;
}

.cart-sidebar .cart-item-price {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.95rem;
}

.cart-sidebar .product-meta-list {
  display: grid;
  gap: 0.35rem;
}

.cart-sidebar .product-meta-list li {
  font-size: 0.82rem;
}

.cart-sidebar .remove-button {
  justify-self: start;
}

.cart-item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
}

.cart-summary {
  position: static;
  padding: 1.6rem;
}

.cart-review-layout .cart-summary {
  position: sticky;
  top: 105px;
}

.cart-summary-actions {
  margin-top: 1rem;
}

.checkout-panel {
  padding: 1.6rem;
  min-width: 0;
  overflow: hidden;
}

.checkout-stage-layout .checkout-panel {
  min-height: 760px;
}

.checkout-panel-inner {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}

.checkout-panel-head h3 {
  margin: 0.35rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.checkout-panel-head p:last-child {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

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

.payment-review-card {
  padding: 1.1rem 1.2rem;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(31, 34, 48, 0.08);
  background: linear-gradient(180deg, #fffefc 0%, #fff6ef 100%);
}

.payment-review-card h4 {
  margin: 0.35rem 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.payment-review-card p {
  margin: 0.18rem 0 0;
  color: var(--muted);
}

.stripe-checkout-stack {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.stripe-checkout-section {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.stripe-checkout-section[hidden] {
  display: none !important;
}

.checkout-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.checkout-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}

.stripe-element-box {
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(31, 34, 48, 0.08);
  background: rgba(255, 255, 255, 0.92);
  min-width: 0;
  overflow: hidden;
}

.stripe-element-box iframe {
  max-width: 100%;
}

.checkout-top-actions {
  justify-content: flex-start;
}

.checkout-order-rail {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 1rem;
  align-self: start;
  min-width: 0;
}

.checkout-order-list {
  display: grid;
  gap: 1rem;
}

.checkout-order-list .cart-item {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: calc(var(--radius-lg) - 8px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 34, 48, 0.06);
}

.checkout-order-list .cart-item-body {
  gap: 0.55rem;
}

.checkout-order-list .product-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.checkout-order-list .cart-item h3 {
  margin: 0.15rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.checkout-order-list .cart-item-header {
  gap: 0.7rem;
}

.checkout-order-list .cart-item-price {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.95rem;
}

.checkout-order-list .product-meta-list {
  display: grid;
  gap: 0.35rem;
}

.checkout-order-list .product-meta-list li {
  font-size: 0.82rem;
}

.payment-review-card-wide {
  grid-column: 1 / -1;
}

.cart-promo-block {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-promo-block .field {
  gap: 0.45rem;
}

.cart-promo-block .feedback {
  min-height: 1.15rem;
  font-size: 0.88rem;
}

.inline-field-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.inline-field-group .button {
  min-height: 3rem;
}

.cart-summary-row strong,
.cart-item-price {
  color: var(--ink);
}

.cart-summary-row strong {
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
}

.cart-summary-total {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.remove-button {
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.empty-state {
  padding: 2rem;
  background: #fff;
}

.empty-state h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .split-feature,
  .editorial-band,
  .service-grid,
  .event-layout,
  .about-layout,
  .home-about-block,
  .faq-layout,
  .cart-layout,
  .checkout-stage-layout,
  .product-detail-layout,
  .shop-layout,
  .home-shop-section {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .benefit-strip,
  .product-grid,
  .payment-review-grid,
  .service-panels,
  .process-grid,
  .value-grid,
  .review-grid,
  .review-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-sidebar,
  .cart-summary,
  .cart-sidebar,
  .checkout-order-rail {
    position: static;
  }

  .home-gallery {
    grid-template-columns: 1fr;
  }

  .home-gallery-primary {
    min-height: 28rem;
  }

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

  .mosaic-tall {
    min-height: 26rem;
  }
}

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

  .nav-shell {
    min-height: 76px;
  }

  .brand-name {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .brand-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 249, 244, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    z-index: 25;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav a {
    padding: 0.2rem 0;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .site-nav-item {
    display: grid;
    gap: 0.45rem;
  }

  .site-nav-submenu {
    position: static;
    min-width: 0;
    padding: 0.2rem 0 0 0.75rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .page-hero h1,
  .section-title,
  .product-info h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

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

  .home-gallery-side,
  .event-summary-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-side .home-gallery-card {
    min-height: 11.5rem;
  }

  .mosaic-tall {
    grid-row: auto;
  }

  .category-grid,
  .benefit-strip,
  .product-grid,
  .service-panels,
  .process-grid,
  .value-grid,
  .review-grid,
  .review-grid-compact,
  .review-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-lockup {
    grid-template-columns: 6.8rem minmax(0, 1fr);
    max-width: 30rem;
  }

  .footer-logo {
    width: 6.8rem;
  }

  .review-card-large {
    grid-column: auto;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .announcement-inner {
    min-height: auto;
    padding: 0.7rem 0;
    flex-direction: column;
    gap: 0.3rem;
  }

  .announcement-inner span {
    letter-spacing: 0.18em;
  }

  .announcement-inner p {
    font-size: 0.82rem;
  }

  .page-hero {
    padding-top: 2.5rem;
    padding-bottom: 1.4rem;
  }

  .page-hero-grid {
    gap: 0.9rem;
    align-items: start;
  }

  .page-hero-copy,
  .hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .home-gallery-primary {
    min-height: 21rem;
  }

  .home-shop-section {
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .home-about-block {
    gap: 1.25rem;
  }

  .home-about-image {
    min-height: 22rem;
  }

  .event-summary-card {
    padding: 1.15rem;
  }

  .event-summary-card h3 {
    font-size: 1.6rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions .button,
  .product-form-actions .button,
  .button-row .button {
    width: 100%;
  }

  .inline-field-group {
    grid-template-columns: 1fr;
  }

  .inline-field-group .button {
    width: 100%;
  }

  .shop-filter-block,
  .shop-callout,
  .panel,
  .product-form-panel,
  .event-form-panel,
  .cart-summary,
  .checkout-panel,
  .empty-state {
    padding: 1.15rem;
  }

  .product-detail-layout {
    gap: 1.15rem;
  }

  .product-gallery {
    padding: 0.75rem;
  }

  .product-gallery-thumbs {
    gap: 0.55rem;
  }

  .product-form {
    gap: 0.9rem;
  }

  .product-price-hero {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .cart-layout,
  .checkout-stage-layout {
    gap: 1rem;
  }

  .cart-page-list .cart-item,
  .checkout-order-list .cart-item,
  .cart-sidebar .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
  }

  .cart-page-list .cart-item img,
  .checkout-order-list .cart-item img,
  .cart-sidebar .cart-item img {
    width: 92px;
    height: 92px;
    aspect-ratio: 1 / 1;
  }

  .cart-item-header {
    flex-direction: column;
    gap: 0.45rem;
  }

  .cart-item-price,
  .checkout-order-list .cart-item-price,
  .cart-sidebar .cart-item-price {
    white-space: normal;
    text-align: left;
  }

  .cart-item-actions {
    justify-content: flex-start;
  }

  .checkout-stage-layout .checkout-panel {
    min-height: auto;
  }

  .checkout-panel-inner {
    gap: 1rem;
  }

  .checkout-order-rail {
    gap: 0.85rem;
  }

  .stripe-element-box {
    padding: 0.8rem;
  }

  .product-card-title,
  .category-card h3 {
    font-size: 0.82rem;
  }

  .site-nav {
    white-space: normal;
  }
}

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

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero,
  .section {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  .page-hero {
    padding-top: 0.85rem;
    padding-bottom: 0.2rem;
  }

  .home-gallery-primary {
    min-height: 18rem;
  }

  .home-gallery-side .home-gallery-card {
    min-height: 10rem;
  }

  .home-shop-copy h2,
  .home-section-copy h2,
  .home-about-copy h2,
  .checkout-panel-head h3,
  .event-copy h3,
  .shop-callout h3,
  .cart-summary h3 {
    line-height: 1.06;
  }

  .home-shop-copy h2,
  .home-section-copy h2,
  .home-about-copy h2 {
    font-size: 1.3rem;
  }

  .cart-page-list .cart-item,
  .checkout-order-list .cart-item,
  .cart-sidebar .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-page-list .cart-item img,
  .checkout-order-list .cart-item img,
  .cart-sidebar .cart-item img {
    width: 76px;
    height: 76px;
  }

  .cart-qty-control {
    gap: 0.4rem;
  }

  .cart-qty-button {
    min-width: 2rem;
    min-height: 2rem;
  }
}

body:not(.admin-body) {
  font-family: "Poppins", "Manrope", sans-serif;
  text-transform: uppercase;
  background:
    radial-gradient(circle at top center, rgba(255, 196, 232, 0.3), transparent 32%),
    var(--bg);
}

body:not(.admin-body) button,
body:not(.admin-body) input,
body:not(.admin-body) textarea,
body:not(.admin-body) select {
  font-family: "Poppins", "Manrope", sans-serif;
}

body:not(.admin-body) h1::first-letter,
body:not(.admin-body) h2::first-letter,
body:not(.admin-body) h3::first-letter,
body:not(.admin-body) .section-title::first-letter {
  font-size: 1.46em;
  line-height: 0.78;
  display: inline-block;
  margin-right: 0.01em;
  vertical-align: baseline;
}

.announcement-bar {
  background: linear-gradient(90deg, #ff66c4 0%, #ff86d2 52%, #ffb4e4 100%);
}

.announcement-inner span,
.announcement-inner p {
  font-family: "Poppins", "Manrope", sans-serif;
}

.site-header {
  background: rgba(255, 248, 253, 0.94);
}

.nav-shell {
  min-height: 76px;
}

.brand {
  align-items: center;
  text-align: left;
  transform: translateX(-0.1rem);
}

.brand-logo {
  width: clamp(12rem, 18vw, 16.5rem);
}

body:not(.admin-body) .brand-kicker {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(1.12rem, 1.8vw, 1.65rem);
  line-height: 0.9;
  letter-spacing: 0.42em;
  color: #ff2d8d;
  font-weight: 500;
}

body:not(.admin-body) .brand-name {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(0.58rem, 0.8vw, 0.74rem);
  line-height: 1;
  display: block;
  text-align: left;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  padding-left: 0.14rem;
}

.nav-cart span,
.hero-ribbon span,
.status-pill,
.badge,
.admin-upload-chip,
.admin-nav-count {
  color: #ff66c4;
}

.nav-cart span {
  background: #ffe4f3;
}

.hero::before,
.page-hero::before {
  background: radial-gradient(circle, rgba(255, 210, 237, 0.78) 0%, rgba(255, 255, 255, 0) 68%);
}

.page-hero {
  padding: 1.35rem 0 0.45rem;
}

.page-hero-grid-tight,
.page-hero-grid-tight.page-hero-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.page-hero-copy {
  display: none;
}

.hero {
  padding: 1.15rem 0 1.4rem;
}

.section {
  padding: 2.65rem 0;
}

.section-head,
.section-head-tight {
  align-items: end;
  margin-bottom: 1.1rem;
}

.section-head-tight {
  margin-bottom: 0.85rem;
}

.home-gallery {
  gap: 0.85rem;
}

.home-gallery-primary {
  min-height: 34rem;
}

.home-gallery-side .home-gallery-card {
  min-height: 11.2rem;
}

.home-intro {
  max-width: 34rem;
}

.home-shop-stack {
  gap: 1.35rem;
}

.home-shop-section {
  gap: 0.9rem;
  padding-top: 0.85rem;
}

.home-shop-copy,
.home-section-copy,
.home-about-copy,
.event-copy {
  gap: 0.7rem;
}

.home-shop-copy p,
.home-section-copy p,
.home-about-copy p,
.event-copy p,
.product-kicker,
.product-description,
.footer-grid p,
.page-hero-copy,
.hero-text,
.category-card p {
  font-size: 0.82rem;
  line-height: 1.55;
}

.event-summary-grid {
  gap: 0.8rem;
}

.event-summary-card,
.shop-callout,
.panel,
.product-card,
.product-gallery,
.product-form-panel,
.event-form-panel,
.cart-item,
.cart-summary,
.checkout-panel,
.review-card,
.value-card {
  border-radius: 22px;
}

.product-card-body,
.cart-summary,
.checkout-panel,
.shop-callout,
.event-form-panel,
.product-form-panel {
  padding: 1.15rem;
}

.product-card-body {
  padding: 0.15rem 0.2rem 0;
}

.product-badges {
  gap: 0.35rem;
}

.badge,
.status-pill {
  background: #ffe1f1;
  color: #ff66c4;
}

.product-card-title {
  font-size: 0.84rem;
  line-height: 1.04;
}

.product-card-title-link {
  color: inherit;
  text-decoration: none;
}

.product-eyebrow,
.filter-label,
.footer-title,
.footer-brand,
.eyebrow {
  color: #ff66c4;
}

.footer-brand {
  color: var(--ink);
}

.button.primary,
.button.tertiary {
  background: #ff66c4;
  color: #fff;
}

.button.primary.light {
  background: #ff66c4;
  color: #fff;
}

.button.secondary,
.button.button-ghost {
  border-color: rgba(255, 102, 196, 0.2);
}

.text-link {
  color: #ff66c4;
}

.shop-layout,
.about-layout,
.event-layout,
.checkout-stage-layout,
.cart-layout,
.home-about-block {
  gap: 1rem;
}

.product-price {
  font-size: 0.8rem;
}

.home-shop-button {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 102, 196, 0.28);
  box-shadow: 0 10px 26px rgba(255, 102, 196, 0.12);
  color: #ff66c4;
}

.home-shop-button:hover {
  background: #fff;
  border-color: rgba(255, 102, 196, 0.42);
}

.special-order-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.return-policy-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  align-items: start;
}

.return-policy-layout .panel {
  padding: 1.45rem;
}

.return-policy-layout .section-title {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 0.98;
  max-width: 16ch;
}

.return-policy-layout .about-copy p:last-child {
  max-width: 34rem;
}

.return-policy-benefits,
.return-policy-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.return-policy-benefits {
  grid-template-columns: 1fr;
}

.return-policy-benefits .value-card,
.return-policy-details .value-card {
  padding: 1.35rem 1.2rem;
  min-width: 0;
}

.return-policy-benefits .value-card {
  min-height: 0;
  padding: 1.05rem 1.2rem;
  display: grid;
  grid-template-columns: minmax(9.5rem, 0.4fr) minmax(0, 1fr);
  grid-template-areas:
    "eyebrow body"
    "title body";
  align-items: center;
  column-gap: 1.1rem;
  row-gap: 0.08rem;
}

.return-policy-benefits .value-card .eyebrow {
  grid-area: eyebrow;
  margin: 0;
}

.return-policy-benefits .value-card h3 {
  grid-area: title;
  font-size: 1.28rem;
  line-height: 0.98;
  max-width: none;
}

.return-policy-details .value-card h3 {
  font-size: 1.3rem;
  line-height: 0.98;
}

.return-policy-details .value-card a {
  color: #ff66c4;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.return-policy-details .value-card a:hover {
  text-decoration: underline;
}

.return-policy-benefits .value-card p,
.return-policy-details .value-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.return-policy-benefits .value-card p {
  grid-area: body;
  margin: 0;
}

.special-order-media {
  display: grid;
  gap: 1rem;
  width: min(100%, 31rem);
  justify-self: end;
}

.event-media {
  display: grid;
  gap: 1rem;
  width: min(100%, 31rem);
  justify-self: end;
}

.special-order-photo,
.special-order-gif,
.event-photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0.9rem;
}

.special-order-photo img,
.special-order-gif img,
.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-order-gif img {
  min-height: 0;
}

.event-photo-placeholder {
  min-height: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 102, 196, 0.28);
  border-radius: inherit;
  background: rgba(255, 102, 196, 0.08);
  color: var(--accent-deep);
  text-align: center;
  padding: 1.2rem;
}

.event-photo-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-card {
  gap: 0.85rem;
}

.review-card-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(36, 28, 36, 0.08);
}

.review-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.field span,
.product-option-title,
.product-option-group legend {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.field input,
.field textarea,
.field select {
  background: rgba(255, 255, 255, 0.96);
}

.filter-pills.monogram-color-pills {
  gap: 0.45rem;
}

.filter-pill,
.swatch-button,
.qty-button,
.cart-qty-button {
  font-family: "Poppins", "Manrope", sans-serif;
}

.checkout-panel-head h3 {
  font-size: 1.85rem;
}

.checkout-order-rail {
  gap: 0.9rem;
}

.site-footer {
  padding: 2.2rem 0 2.4rem;
}

body:not(.admin-body) .feedback {
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .special-order-layout {
    grid-template-columns: 1fr;
  }

  .special-order-media,
  .event-media {
    width: min(100%, 32rem);
    justify-self: center;
  }

  .return-policy-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav-shell {
    min-height: 72px;
  }

  .brand {
    transform: translateX(-0.25rem);
  }

  .brand-logo {
    width: 11.8rem;
  }

  .site-nav {
    background: rgba(255, 248, 253, 0.99);
  }

  .hero,
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .page-hero {
    padding-top: 0.95rem;
    padding-bottom: 0.25rem;
  }

  .home-gallery-primary {
    min-height: 22rem;
  }

  .home-shop-section {
    padding-top: 1.1rem;
  }

  .return-policy-benefits,
  .return-policy-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    transform: translateX(-0.12rem);
  }

  .brand-logo {
    width: 10rem;
  }

  .footer-brand-lockup {
    grid-template-columns: 5.9rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .footer-logo {
    width: 5.9rem;
    border-radius: 14px;
  }

  .home-gallery-primary {
    min-height: 17rem;
  }

  .home-gallery.home-gallery-banner .home-gallery-primary {
    aspect-ratio: auto;
    min-height: 0;
    background: #fff3fb;
  }

  .home-gallery.home-gallery-banner .home-gallery-primary img {
    aspect-ratio: 2 / 1;
    height: auto;
    object-fit: contain;
  }

  .return-policy-benefits .value-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "body";
    align-items: start;
  }
}

.home-shop-copy h2,
.home-section-copy h2,
.home-about-copy h2 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.product-card-body {
  gap: 0.35rem;
}

.product-card .product-card-title {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}

.product-price {
  font-size: 0.82rem;
}

.product-card .product-card-title::first-letter {
  font-size: 1em;
}

@media (max-width: 780px) {
  .home-shop-section {
    grid-template-columns: 1fr;
  }

  .home-shop-copy h2,
  .home-section-copy h2,
  .home-about-copy h2 {
    font-size: 2rem;
  }

  .product-card .product-card-title {
    font-size: 0.82rem;
  }
}

/* ---------- Order status page ---------- */

.order-status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 28px;
  align-items: start;
}

.order-status-lookup {
  position: sticky;
  top: 24px;
}

.order-status-form .form-actions {
  margin-top: 8px;
}

.order-status-result[hidden] {
  display: none;
}

.order-status-panel {
  padding: 28px;
  display: grid;
  gap: 28px;
}

.order-status-panel-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  margin: 8px 0 4px;
  line-height: 1.15;
}

.order-status-placed {
  color: #6f6a64;
  font-size: 0.9rem;
  margin: 0;
}

.order-status-banner {
  padding: 12px 16px;
  border-radius: 10px;
  background: #fdecec;
  color: #a82c2c;
  font-weight: 600;
  margin: 0;
}

.order-status-banner.is-canceled {
  background: #fdecec;
  color: #a82c2c;
}

.order-status-timeline-section h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 16px;
}

.order-status-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.order-status-timeline-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 22px;
}

.order-status-timeline-step:last-child {
  padding-bottom: 0;
}

.order-status-timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.order-status-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff66c4;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #ff66c4;
  z-index: 1;
}

.order-status-timeline-step.is-current .order-status-timeline-dot {
  background: #ff66c4;
  box-shadow: 0 0 0 2px #ff66c4, 0 0 0 6px rgba(255, 102, 196, 0.2);
}

.order-status-timeline-line {
  position: absolute;
  top: 18px;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #ece7df;
}

.order-status-timeline-copy {
  display: grid;
  gap: 2px;
}

.order-status-timeline-status {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2230;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-status-timeline-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 102, 196, 0.16);
  color: #7a4f68;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-status-timeline-when {
  margin: 0;
  font-size: 0.85rem;
  color: #6f6a64;
}

.order-status-timeline-note {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: #4a4640;
}

.order-status-tracking {
  padding: 14px 18px;
  border: 1px solid #ece7df;
  border-radius: 14px;
  background: #fffaf5;
}

.order-status-tracking .eyebrow {
  margin: 0 0 4px;
}

.order-status-tracking-number {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.order-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}

.order-status-grid h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.order-status-items {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.order-status-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid #ece7df;
  border-radius: 14px;
  background: #fffaf5;
}

.order-status-item-media {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-lg, 18px) - 8px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece7df;
}

.order-status-item-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.order-status-item-media-empty {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5efe7 0%, #ece7df 100%);
}

.order-status-item-body {
  display: grid;
  gap: 10px;
}

.order-status-item-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.order-status-item-header h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  margin: 4px 0 0;
  line-height: 1.15;
}

.order-status-item-name-link {
  color: inherit;
  text-decoration: none;
}

.order-status-item-name-link:hover {
  text-decoration: underline;
}

.order-status-item-price {
  font-weight: 700;
  white-space: nowrap;
  color: #1f2230;
}

.order-status-item-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 16px;
  font-size: 0.85rem;
  color: #6f6a64;
}

.order-status-item-meta li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px dashed #ece7df;
  padding-bottom: 4px;
}

.order-status-item-meta li strong {
  color: #1f2230;
}

.order-status-summary {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #ece7df;
}

.order-status-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.order-status-summary-row.is-total {
  border-top: 1px solid #ece7df;
  padding-top: 8px;
  margin-top: 4px;
  font-size: 1.05rem;
}

.order-status-shipping {
  margin: 0;
  line-height: 1.6;
}

.order-status-note-heading {
  margin-top: 18px;
}

.order-status-note {
  margin: 0;
  line-height: 1.6;
  color: #4a4640;
}

@media (max-width: 840px) {
  .order-status-layout {
    grid-template-columns: 1fr;
  }
  .order-status-lookup {
    position: static;
  }
  .order-status-grid {
    grid-template-columns: 1fr;
  }
  .order-status-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.85rem;
  }
}
