@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Premium Palette */
  --bg: #fdfaf5;
  --paper: rgba(255, 255, 255, 0.85);
  --paper-strong: #ffffff;
  --ink: #0a1128;
  --muted: #4a5d7e;
  --accent: #152c5b;
  --accent-dark: #08122c;
  --gold: #c5a059;
  --gold-soft: #f4e8c1;
  --teal: #438a82;
  --night: #050a1a;
  --line: rgba(10, 17, 40, 0.08);
  --shadow-sm: 0 4px 20px rgba(10, 17, 40, 0.05);
  --shadow: 0 30px 100px rgba(10, 17, 40, 0.12);
  --shadow-hover: 0 40px 120px rgba(10, 17, 40, 0.18);
  
  /* Layout */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --site-background-image: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.24), rgba(238, 242, 242, 0.18) 52%, rgba(246, 241, 232, 0.28) 100%),
    var(--site-background-image),
    radial-gradient(circle at 15% 20%, rgba(210, 165, 58, 0.2), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(89, 174, 165, 0.16), transparent 16%),
    linear-gradient(180deg, #fbf8f2 0%, #eef2f2 52%, #f6f1e8 100%);
  background-size: cover, auto 122%, auto, auto, auto;
  background-position: center, 62% 38%, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
  overflow-x: hidden;
  animation: site-entry 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes site-entry {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page section[id],
.collection-page section[id],
.bomboniere-page section[id] {
  scroll-margin-top: 96px;
}

/* ═══════════════════════════════════════════════════════
   FLUID TYPOGRAPHY SYSTEM
   Scales smoothly from mobile (320px) → desktop (1400px+)
   Formula: clamp(MIN, FLUID_CALC, MAX)
   ═══════════════════════════════════════════════════════ */

:root {
  /* Display / Hero — very large decorative text */
  --fs-display:    clamp(2.4rem,  10vw, 6rem);
  /* H1 — page titles */
  --fs-h1:         clamp(2rem,    7vw,  4.8rem);
  /* H2 — section headings */
  --fs-h2:         clamp(1.6rem,  4.5vw, 3rem);
  /* H3 — card / sub-section headings */
  --fs-h3:         clamp(1.25rem, 2.8vw, 2.2rem);
  /* H4 — small headings / labels */
  --fs-h4:         clamp(1.05rem, 2vw,   1.75rem);
  /* Lead / intro paragraph */
  --fs-lead:       clamp(1rem,    1.5vw, 1.25rem);
  /* Body copy (default) */
  --fs-body:       clamp(0.9rem,  1.1vw, 1.05rem);
  /* Small / caption */
  --fs-sm:         clamp(0.78rem, 0.9vw, 0.88rem);
  /* Eyebrow / label (uppercase tracking) */
  --fs-eyebrow:    clamp(0.68rem, 0.8vw, 0.78rem);
  /* Numbers / stats */
  --fs-stat:       clamp(2rem,    5vw,   4rem);
}

/* Apply fluid scale globally to semantic headings */
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

/* Eyebrow labels */
.eyebrow { font-size: var(--fs-eyebrow); }

/* Body and paragraph defaults */
body { font-size: var(--fs-body); }

/* Lead paragraph utility */
.lead, .hero-text { font-size: var(--fs-lead); }

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

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

button {
  cursor: pointer;
}

.ambient {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  opacity: 0.65;
}

.ambient-a {
  top: 120px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(203, 150, 52, 0.18);
}

.ambient-b {
  top: 420px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: rgba(30, 94, 96, 0.14);
}

.ambient-c {
  bottom: 80px;
  left: 20%;
  width: 320px;
  height: 140px;
  background: rgba(177, 75, 55, 0.1);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 32px));
  margin: 16px auto 42px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
}

.topbar,
.navbar,
.ribbon-band,
.signature-section,
.bomboniere-section,
.collection-section,
.collection-story-block,
.collection-bottom-cta,
.atelier-section,
.story-section,
.experience-section,
.cta-section {
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.topbar {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.topbar-ticker-container {
  min-width: 0;
  overflow: hidden;
}

.topbar p {
  margin: 0;
  color: var(--muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.language-toggle .ghost-button {
  min-width: 48px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 1.12rem;
  line-height: 1;
}

.language-toggle .ghost-button.is-active {
  background: rgba(23, 50, 91, 0.12);
  border-color: rgba(23, 50, 91, 0.22);
  color: var(--ink);
  box-shadow: 0 10px 18px rgba(23, 50, 91, 0.08);
}

.navbar {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: sticky;
  top: 16px;
  z-index: 22;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  min-height: calc(100vh - 32px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.brand strong,
.hero h1,
.section-heading h2,
.booking-heading h3,
.story-panel h2,
.cta-section h2,
.cart-header h2,
.signature-card h3,
.atelier-copy h2 {
  font-family: 'Playfair Display', "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.01em;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 29, 35, 0.06);
  box-shadow: 0 12px 30px rgba(30, 94, 96, 0.1);
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 188px;
  height: auto;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(23, 50, 91, 0.06);
  color: var(--ink);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.45;
  transition: var(--transition);
}

.nav-group {
  display: grid;
  gap: 10px;
}

.nav-group-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.06);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.4;
  transition: var(--transition);
}

.nav-group-toggle:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
}

.nav-group-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.nav-group-toggle-icon::before,
.nav-group-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-group-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.nav-group-toggle.is-open .nav-group-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.nav-submenu {
  display: grid;
  gap: 8px;
  padding: 4px 0 0 12px;
  max-height: min(42vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-right: 6px;
}

.nav-submenu[hidden] {
  display: none;
}

.nav-submenu::-webkit-scrollbar {
  width: 8px;
}

.nav-submenu::-webkit-scrollbar-thumb {
  background: rgba(23, 50, 91, 0.22);
  border-radius: 999px;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.nav-submenu-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-submenu a.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.16);
}

.nav-submenu a.is-active .nav-submenu-meta {
  background: rgba(255, 255, 255, 0.18);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"],
.topbar-actions a[aria-current="page"],
.site-footer-grid a[aria-current="page"] {
  color: var(--accent-dark);
  font-weight: 700;
}

.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 50, 91, 0.14);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.navbar-mobile-head {
  display: none;
}

.nav-toggle {
  display: none;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: left center;
}

body.nav-open .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(2px, -1px);
}

body.nav-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 1px);
}

main {
  grid-column: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  padding: 46px 30px 34px;
  align-items: center;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "CORALLO";
  position: absolute;
  left: 24px;
  bottom: -32px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 50, 91, 0.045);
  pointer-events: none;
}

.hero-brand-signature {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: min(100%, 680px);
  margin-bottom: 20px;
  padding: 20px 22px 18px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 251, 0.8));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 24px 52px rgba(23, 50, 91, 0.1);
  overflow: hidden;
}

.hero-brand-signature::before {
  content: "";
  position: absolute;
  inset: auto 12% 14px 12%;
  height: 32px;
  background: linear-gradient(90deg, rgba(89, 174, 165, 0.28), rgba(210, 165, 58, 0.16));
  filter: blur(18px);
}

.hero-logo-kicker,
.hero-logo-large {
  position: relative;
  z-index: 1;
}

.hero-logo-kicker {
  margin: 0 0 10px;
  padding-left: 8px;
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero-logo-large {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(23, 50, 91, 0.08));
}

.hero-brand-note {
  position: relative;
  z-index: 1;
  margin: 10px auto 0;
  max-width: 520px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 6.1rem);
  line-height: 0.94;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.hero-text,
.section-heading p,
.signature-card p,
.atelier-copy p,
.atelier-steps p,
.story-panel p,
.story-points p,
.experience-grid p,
.cta-section p,
.cart-item p,
.form-note,
.booking-output p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.hero-metrics,
.signature-grid,
.atelier-steps,
.story-points,
.experience-grid,
.contact-pills {
  display: flex;
}

.hero-actions {
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics article {
  flex: 1;
  min-width: 180px;
  padding: 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(249, 252, 251, 0.48)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.06));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero-metrics strong,
.signature-card h3,
.booking-heading h3,
.atelier-steps h3,
.story-points h3 {
  display: block;
  margin-bottom: 8px;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-metrics p,
.bomboniere-landing-metrics p,
.bomboniere-collections-grid p {
  margin: 0;
}

.hero-stage {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  min-height: 420px;
}

.hero-stage-paths {
  max-width: 460px;
}

.home-paths-panel {
  display: grid;
  gap: 12px;
}

.home-path-tile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 250, 0.7)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.06), rgba(210, 165, 58, 0.06));
  box-shadow: 0 18px 32px rgba(23, 50, 91, 0.08);
  transition: var(--transition);
}

.home-path-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(23, 50, 91, 0.12);
  border-color: rgba(23, 50, 91, 0.14);
}

.home-path-image {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.home-path-image-collection {
  background-image:
    linear-gradient(180deg, rgba(20, 31, 44, 0.08), rgba(20, 31, 44, 0.36)),
    url("./assets/images/pigna-multicolor-siciliana-1.jpg");
}

.home-path-image-bomboniere {
  background-image:
    linear-gradient(180deg, rgba(20, 31, 44, 0.08), rgba(20, 31, 44, 0.28)),
    url("./assets/images/home-bomboniere-pigne.jpeg");
}

.home-path-image-atelier {
  background-image:
    linear-gradient(180deg, rgba(20, 31, 44, 0.12), rgba(20, 31, 44, 0.34)),
    url("./assets/images/home-atelier.jpeg");
}

.home-path-copy {
  display: grid;
  gap: 6px;
}

.home-path-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 0.94;
  color: var(--accent);
}

.home-path-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stage-main {
  position: relative;
  inset: auto;
  min-height: 360px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(12, 19, 27, 0.12), rgba(12, 19, 27, 0.54)),
    radial-gradient(circle at top, rgba(255, 232, 194, 0.3), transparent 30%),
    linear-gradient(140deg, rgba(16, 38, 69, 0.94) 0%, rgba(74, 147, 141, 0.9) 58%, rgba(210, 165, 58, 0.7) 100%);
}

.stage-main strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 0.96;
  max-width: 360px;
}

.stage-main span,
.stage-label,
.stage-card p {
  color: rgba(255, 255, 255, 0.88);
}

.stage-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.stage-main span {
  margin-top: 8px;
  line-height: 1.55;
  font-size: 0.96rem;
  max-width: 360px;
}

.hero-stage-cta {
  display: flex;
  margin-top: 8px;
}

.stage-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  max-width: 500px;
}

.stage-notes-compact {
  gap: 10px;
}

.stage-note {
  padding: 15px 15px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.24), rgba(255, 251, 246, 0.14)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stage-note-link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.stage-note-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(23, 50, 91, 0.14);
}

.stage-note p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.stage-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.06;
}

.stage-aura {
  position: absolute;
  inset: auto 10px 18px auto;
  width: 118px;
  height: 118px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(242, 225, 166, 0.6), rgba(89, 174, 165, 0.44));
  opacity: 0.7;
  filter: blur(2px);
}

.ribbon-band,
.signature-section,
.bomboniere-section,
.collection-section,
.atelier-section,
.story-section,
.experience-section,
.cta-section {
  margin-top: 22px;
  padding: 30px 28px;
  border-radius: 30px;
}

.ribbon-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--night);
}

.ribbon-band div {
  padding: 14px 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 252, 251, 0.52)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  border: 1px solid rgba(23, 50, 91, 0.08);
  text-align: center;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2,
.atelier-copy h2,
.story-panel h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.94;
}

.section-heading p {
  max-width: 540px;
  margin: 0;
}

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

.signature-heading-compact {
  align-items: center;
  margin-bottom: 14px;
}

.signature-heading-compact h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.signature-heading-compact p {
  max-width: 420px;
}

.about-section {
  margin-top: 22px;
  padding: 34px 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 251, 249, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.07), rgba(210, 165, 58, 0.08));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 24px 48px rgba(23, 50, 91, 0.08);
}

.about-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.about-photo-card {
  margin: 22px 0 0;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(249, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 24px 46px rgba(23, 50, 91, 0.08);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(23, 50, 91, 0.08);
}

.about-photo-card figcaption {
  margin-top: 12px;
  padding: 0 8px 4px;
  color: var(--muted);
  line-height: 1.7;
}

.about-story-card,
.about-metrics article,
.about-team-grid article,
.about-closing-note {
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
}

.about-story-card {
  padding: 24px;
  border-radius: 28px;
}

.about-story-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  color: var(--accent);
}

.about-story-card p:last-child,
.about-story-card p:nth-of-type(2) {
  margin-top: 14px;
}

.about-metrics {
  display: grid;
  gap: 14px;
}

.about-metrics article {
  padding: 22px;
  border-radius: 26px;
}

.about-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: var(--accent);
}

.about-metrics span {
  color: var(--muted);
  line-height: 1.65;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.about-team-grid article {
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(23, 50, 91, 0.05);
}

.about-team-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-h3);
  line-height: 0.98;
  color: var(--accent);
}

.about-team-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-closing-note {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 26px;
}

.about-closing-note strong {
  display: block;
  margin-bottom: 8px;
}

.about-closing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.signature-card,
.product-card,
.atelier-steps article,
.story-points article,
.experience-grid article,
.booking-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.signature-card {
  position: relative;
  flex: 1;
  min-height: 240px;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.signature-card-link {
  min-height: 170px;
  padding: 18px 20px;
  text-decoration: none;
  transition: var(--transition);
}

.signature-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(23, 50, 91, 0.16);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.signature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: var(--fs-h3);
}

.signature-card p,
.signature-card .eyebrow {
  position: relative;
  z-index: 1;
}

.signature-card-link .eyebrow {
  margin-bottom: 10px;
}

.signature-card-link h3 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
}

.signature-card-link p:not(.eyebrow) {
  margin: 0;
  max-width: 30ch;
}

.signature-card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.signature-card-cta::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.2em;
}

.signature-grid-compact {
  gap: 14px;
}

.signature-card.sea {
  background:
    linear-gradient(180deg, rgba(11, 21, 28, 0.08), rgba(11, 21, 28, 0.7)),
    linear-gradient(135deg, var(--accent-dark), var(--teal) 55%, var(--gold-soft));
}

.signature-card.sand {
  background:
    linear-gradient(180deg, rgba(50, 27, 16, 0.02), rgba(50, 27, 16, 0.56)),
    linear-gradient(135deg, #d7ab4a, var(--gold-soft) 45%, var(--accent) 100%);
}

.signature-card.coral {
  background:
    linear-gradient(180deg, rgba(20, 17, 17, 0.08), rgba(20, 17, 17, 0.68)),
    linear-gradient(135deg, var(--accent-dark), var(--accent) 44%, var(--gold-soft) 100%);
}

.bomboniere-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}

.bomboniere-copy {
  padding-right: 8px;
}

.bomboniere-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.bomboniere-signature-band {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(247, 252, 250, 0.78)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.12), rgba(210, 165, 58, 0.1));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.06);
}

.bomboniere-signature-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bomboniere-brush-card {
  position: relative;
  height: 150px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.bomboniere-brush-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 74%;
  transform: scale(1.55);
}

.bomboniere-grid article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 28px rgba(23, 50, 91, 0.05);
}

.bomboniere-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

.bomboniere-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.bomboniere-note-box {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 238, 0.56)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.12));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 18px 32px rgba(23, 50, 91, 0.06);
}

.bomboniere-note-box strong {
  display: block;
  margin-bottom: 10px;
}

.bomboniere-note-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.bomboniere-form {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(245, 250, 249, 0.72));
}

.bomboniere-commercial-block {
  display: grid;
  gap: 24px;
  position: relative;
  margin-top: -8px;
}

.bomboniere-commercial-grid,
.bomboniere-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bomboniere-commercial-grid article,
.bomboniere-packages article {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.05);
}

.bomboniere-commercial-grid strong,
.bomboniere-packages strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
}

.bomboniere-packages .eyebrow,
.bomboniere-project-examples .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(27, 55, 97, 0.08);
  color: var(--accent);
  margin: 0 0 12px;
}

.bomboniere-commercial-grid p,
.bomboniere-packages span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bomboniere-project-examples,
.bomboniere-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bomboniere-project-examples article,
.bomboniere-guide-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
}

.bomboniere-project-examples article,
.bomboniere-packages article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bomboniere-project-examples strong,
.bomboniere-guide-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
}

.bomboniere-project-examples p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bomboniere-guide-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.home-path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 250, 249, 0.78)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.06));
}

.home-compact-steps {
  margin-top: 0;
}

.home-path-card .form-note {
  margin-top: 0;
}

.home-path-highlights {
  display: grid;
  gap: 12px;
}

.home-path-highlights article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(249, 251, 250, 0.52)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
}

.home-path-highlights strong {
  display: block;
  margin-bottom: 6px;
}

.home-path-highlights p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.collection-section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.collection-preview-carousel {
  position: relative;
  width: calc(100% + 28px);
  margin-left: 0;
  margin-right: -28px;
  transform: none;
  padding: 18px 64px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(249, 251, 250, 0.3)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.03), rgba(210, 165, 58, 0.03));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 18px 36px rgba(23, 50, 91, 0.06);
}

.collection-preview-note {
  margin: 16px 0 0;
  padding-left: 6px;
  color: var(--muted);
  line-height: 1.7;
}

.collection-preview-marquee {
  display: block;
  overflow: hidden;
}

.product-grid.collection-preview-marquee {
  display: block;
}

.collection-preview-marquee-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.collection-preview-marquee-track {
  display: flex;
  width: max-content;
}

.collection-preview-marquee-rail {
  display: flex;
  gap: 22px;
  padding-right: 22px;
}

.collection-preview-marquee-card {
  width: 336px;
  flex: 0 0 336px;
  display: grid;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.collection-preview-marquee-visual {
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 20px 42px rgba(23, 50, 91, 0.12);
}

.collection-preview-marquee-copy {
  display: grid;
  gap: 6px;
  padding: 2px 6px 0;
}

.collection-preview-marquee-copy .eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
}

.collection-preview-marquee-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.95rem, 2.4vw, 2.45rem);
  line-height: 0.96;
  color: var(--accent);
  text-wrap: balance;
}

.collection-preview-marquee-card:hover .collection-preview-marquee-visual {
  box-shadow: 0 26px 52px rgba(23, 50, 91, 0.16);
}

.collection-preview-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(17, 35, 60, 0.18);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(10, 23, 38, 0.16);
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.collection-preview-arrow:hover,
.collection-preview-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    rgba(17, 35, 60, 0.24);
}

.collection-preview-arrow span {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.collection-preview-arrow-prev {
  left: 14px;
}

.collection-preview-arrow-next {
  right: 14px;
}

.product-grid-preview-gallery {
  gap: 18px;
}

.product-card-preview-gallery {
  min-height: 100%;
}

.product-card-preview-gallery .product-visual {
  min-height: 360px;
}

.product-body-preview-gallery {
  gap: 10px;
  padding: 18px 22px 20px;
}

.product-preview-eyebrow {
  margin: 0;
}

.product-body-preview-gallery h3 {
  margin: 0;
}

.product-body-preview-gallery .product-title-link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 0.96;
  text-decoration: none;
}

.product-preview-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-decoration: none;
}

.product-preview-link::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.1em;
}

.product-preview-link:hover {
  color: var(--accent-dark);
}

.collection-subcategory-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 24px 0 14px;
}

.collection-subcategory-bar h3 {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 0.98;
}

.collection-subcategory-label {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.collection-subcategory-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(249, 251, 250, 0.56)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.03), rgba(210, 165, 58, 0.03));
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.05);
}

.collection-family-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.collection-family-editorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.collection-family-editorial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--teal), var(--gold-soft));
  opacity: 0.85;
}

.collection-family-editorial-card:hover,
.collection-family-editorial-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(23, 50, 91, 0.1);
}

.collection-family-editorial-card.is-active {
  border-color: rgba(23, 50, 91, 0.18);
  box-shadow: 0 24px 42px rgba(23, 50, 91, 0.12);
}

.collection-family-editorial-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.96;
  color: var(--accent);
}

.collection-family-editorial-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-family-editorial-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.collection-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.6)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.03), rgba(210, 165, 58, 0.03));
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.05);
}

.collection-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.03), rgba(210, 165, 58, 0.03));
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.05);
}

.collection-search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collection-filter-field,
.collection-price-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collection-search-label {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-search-field input,
.collection-filter-field select {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.collection-search-field input:focus,
.collection-filter-field select:focus {
  outline: 2px solid rgba(89, 174, 165, 0.28);
  outline-offset: 2px;
  border-color: rgba(31, 94, 96, 0.3);
}

.collection-price-filter select {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.collection-price-filter select:focus {
  outline: 2px solid rgba(89, 174, 165, 0.28);
  outline-offset: 2px;
  border-color: rgba(31, 94, 96, 0.3);
}

.collection-filter-reset {
  align-self: end;
  min-height: 58px;
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.collection-search-feedback {
  min-height: 24px;
  margin: 0 0 18px;
  padding-inline: 4px;
  color: var(--muted);
  line-height: 1.6;
}

.collection-subcategory-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.collection-subcategory-button:hover,
.collection-subcategory-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(23, 50, 91, 0.08);
}

.collection-subcategory-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.16);
}

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

.product-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 249, 0.72)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  box-shadow: 0 20px 42px rgba(23, 50, 91, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 50, 91, 0.16);
  box-shadow: 0 28px 56px rgba(23, 50, 91, 0.13);
}

.product-card[data-product-id] {
  position: relative;
}

.product-visual-shell {
  position: relative;
}

.product-visual {
  min-height: 280px;
  padding: 24px;
  display: flex;
  align-items: end;
  color: white;
  position: relative;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(9, 17, 27, 0), rgba(9, 17, 27, 0.42));
}

.product-visual span {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 0.95;
  text-shadow: 0 12px 22px rgba(10, 23, 38, 0.22);
}

.product-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(17, 35, 60, 0.18);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(10, 23, 38, 0.16);
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.product-card-arrow:hover,
.product-card-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    rgba(17, 35, 60, 0.24);
}

.product-card-arrow span {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.product-card-arrow-prev {
  left: 14px;
}

.product-card-arrow-next {
  right: 14px;
}

.product-card-image-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  min-width: 54px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(17, 35, 60, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 24px rgba(10, 23, 38, 0.12);
}

.product-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.02), rgba(210, 165, 58, 0.02));
}

.product-topline,
.product-meta,
.cart-line,
.cart-total,
.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-topline h3 {
  margin: 0;
}

.product-title-link {
  text-decoration: none;
  line-height: 0.96;
}

.product-title-link:hover {
  color: var(--accent);
}

.product-topline h3 a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.product-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-fact,
.product-category,
.product-similar-category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.product-meta {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 2px;
  align-items: flex-end;
}

.product-meta-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.product-meta-actions .secondary-button,
.product-meta-actions .primary-button {
  min-height: 50px;
  padding-inline: 18px;
}

.product-meta-actions .secondary-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 251, 250, 0.7)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.03), rgba(210, 165, 58, 0.03));
}

.product-meta-actions .primary-button {
  box-shadow: 0 14px 30px rgba(23, 50, 91, 0.18);
}

.product-price {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.product-price-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-category {
  color: var(--teal);
  align-self: flex-start;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
}

.product-gallery-button {
  position: relative;
  min-height: 76px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.product-gallery-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-gallery-button span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-gallery-button.is-active {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(23, 50, 91, 0.14);
}

.product-colors {
  padding: 15px 16px 16px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  box-shadow: 0 16px 28px rgba(23, 50, 91, 0.05);
}

.product-colors-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 50, 91, 0.06);
}

.product-colors-head strong {
  font-size: 1rem;
}

.product-colors-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-preset-list,
.editor-color-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.editor-preset-list .ghost-button {
  display: grid;
  gap: 2px;
  align-items: start;
  justify-items: start;
  min-height: 0;
  padding-block: 10px;
}

.editor-preset-list .ghost-button small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.editor-inline-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-standard-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.18), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(89, 174, 165, 0.26);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editor-decor-summary {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.editor-chip-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-chip-summary {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(23, 50, 91, 0.05);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.editor-chip-summary.is-warning {
  border-color: rgba(180, 61, 53, 0.2);
  background: linear-gradient(135deg, rgba(180, 61, 53, 0.1), rgba(255, 255, 255, 0.92));
  color: #7f2b25;
}

.editor-chip-toggle.is-active {
  border-color: rgba(31, 94, 96, 0.28);
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 26px rgba(23, 50, 91, 0.1);
}

.product-color-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-color-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(23, 50, 91, 0.08);
}

.product-color-button.is-active {
  border-color: rgba(31, 94, 96, 0.28);
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 26px rgba(23, 50, 91, 0.1);
}

.product-color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(23, 50, 91, 0.14);
  flex: none;
}

.product-color-name {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.product-decors .product-color-swatch {
  width: 30px;
  height: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(23, 50, 91, 0.08), 0 10px 18px rgba(23, 50, 91, 0.1);
}

.product-variants {
  padding: 15px 16px 16px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  box-shadow: 0 16px 28px rgba(23, 50, 91, 0.05);
}

.product-variants-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 50, 91, 0.06);
}

.product-variants-head strong {
  font-size: 1rem;
}

.product-variants-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-variant-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-variant-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-variant-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(23, 50, 91, 0.08);
}

.product-variant-button span {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-variant-button strong {
  font-size: 1.02rem;
}

.product-variant-button.is-active {
  border-color: rgba(31, 94, 96, 0.28);
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 26px rgba(23, 50, 91, 0.1);
}

.product-add-button {
  white-space: nowrap;
}

.product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-pagination-top {
  margin-top: 12px;
  margin-bottom: 18px;
}

.product-page-button {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 700;
}

.product-page-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(16, 38, 69, 0.96));
  color: white;
  box-shadow: 0 18px 30px rgba(23, 50, 91, 0.18);
}

.collection-landing-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 249, 248, 0.78)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.1), rgba(210, 165, 58, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.collection-landing-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 174, 165, 0.16), rgba(89, 174, 165, 0));
  pointer-events: none;
}

.collection-landing-hero::after {
  content: "COLLEZIONE";
  position: absolute;
  right: 16px;
  bottom: -24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5.8rem, 13vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.08em;
  color: rgba(23, 50, 91, 0.05);
  pointer-events: none;
}

.collection-landing-copy,
.collection-landing-visual {
  position: relative;
  z-index: 1;
}

.collection-landing-copy h1,
.collection-bottom-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.collection-landing-text {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.collection-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.collection-pill-list span {
  padding: 10px 15px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 252, 251, 0.6)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  border: 1px solid rgba(23, 50, 91, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.collection-landing-visual {
  position: relative;
  min-height: 460px;
}

.collection-visual-panel {
  position: absolute;
  inset: 0 0 92px 0;
  padding: 34px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background:
    linear-gradient(180deg, rgba(14, 24, 34, 0.08), rgba(14, 24, 34, 0.7)),
    linear-gradient(135deg, var(--accent-dark), var(--accent) 46%, var(--gold-soft) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.collection-visual-panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.collection-visual-panel span {
  display: block;
  margin-top: 10px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.collection-floating-card {
  position: absolute;
  max-width: 220px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 50px rgba(23, 50, 91, 0.12);
  backdrop-filter: blur(12px);
}

.collection-card-top {
  top: 18px;
  right: -8px;
}

.collection-card-bottom {
  left: 12px;
  bottom: 18px;
}

.collection-floating-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.collection-floating-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.collection-logo-band {
  position: absolute;
  right: 32px;
  bottom: -18px;
  width: 220px;
  height: 140px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(23, 50, 91, 0.14);
}

.collection-logo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 60%;
  border-radius: 22px;
}

.collection-story-block {
  margin-top: 18px;
  padding: 28px;
  border-radius: 30px;
}

.collection-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.collection-guides-grid article,
.collection-note-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.collection-guides-grid span {
  display: block;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
}

.collection-guides-grid h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.collection-guides-grid p,
.collection-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.collection-note-card {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 250, 249, 0.78)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.1));
}

.collection-note-card strong {
  display: block;
  margin-bottom: 8px;
}

.collection-bottom-cta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-top: 18px;
  padding: 30px;
}

.collection-bottom-cta p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.collection-bottom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-top: 22px;
  padding: 30px;
  border-radius: 30px;
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.site-footer > div:first-child {
  max-width: 560px;
}

.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.98;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  flex: 1 1 auto;
}

.site-footer-grid article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.site-footer-grid strong {
  display: block;
  margin-bottom: 10px;
}

.site-footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.checkout-page {
  padding: 30px;
  border-radius: 30px;
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.checkout-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.checkout-summary-card {
  position: sticky;
  top: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
}

.checkout-summary-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
}

.checkout-items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.checkout-item,
.checkout-empty-state,
.checkout-trust-note {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.checkout-item-line,
.checkout-total-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.checkout-item p,
.checkout-trust-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-item span {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkout-totals {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.checkout-total-line-grand {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 50, 91, 0.08);
}

.checkout-total-line-grand strong {
  font-size: 1.4rem;
  color: var(--accent);
}

.checkout-choice-group {
  margin-top: 20px;
}

.checkout-choice-group strong {
  display: block;
  margin-bottom: 12px;
}

.checkout-choice-list {
  display: grid;
  gap: 12px;
}

.checkout-choice-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.6)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.checkout-choice-card input {
  width: auto;
  margin: 0 0 4px;
}

.checkout-choice-card.is-selected {
  border-color: rgba(31, 94, 96, 0.28);
  box-shadow: 0 16px 30px rgba(15, 38, 68, 0.08);
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 250, 0.7)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.08));
}

.checkout-choice-card span {
  font-weight: 700;
  color: var(--ink);
}

.checkout-choice-card small {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-card-fields {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.checkout-card-fields strong {
  display: block;
  margin-bottom: 10px;
}

.checkout-card-fields p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-card-fields .form-note {
  margin-top: 12px;
}

.checkout-confirmation-card,
.checkout-next-steps {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.checkout-confirmation-card strong,
.checkout-next-steps strong {
  display: block;
  margin-bottom: 12px;
}

.checkout-confirmation-list {
  display: grid;
  gap: 12px;
}

.checkout-confirmation-list article {
  padding: 14px 0;
  border-top: 1px solid rgba(23, 50, 91, 0.08);
}

.checkout-confirmation-list article:first-child {
  padding-top: 0;
  border-top: none;
}

.checkout-confirmation-list span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.checkout-confirmation-list p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 600;
}

.checkout-next-steps ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-next-steps li + li {
  margin-top: 8px;
}

.checkout-trust-note {
  margin-top: 18px;
}

.checkout-trust-note strong {
  display: block;
  margin-bottom: 8px;
}

.checkout-trust-note a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.trust-band article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.trust-band strong {
  display: block;
  margin-bottom: 10px;
}

.trust-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-page {
  padding: 30px;
  border-radius: 30px;
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.product-detail-shell {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 26px;
  align-items: start;
}

.product-detail-visual-shell {
  position: relative;
}

.product-detail-visual {
  min-height: 580px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  align-items: end;
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-detail-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(17, 35, 60, 0.2);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 36px rgba(10, 23, 38, 0.18);
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.product-detail-arrow:hover,
.product-detail-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    rgba(17, 35, 60, 0.3);
}

.product-detail-arrow span {
  position: static;
  z-index: auto;
  font-family: "Manrope", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.product-detail-arrow-prev {
  left: 28px;
}

.product-detail-arrow-next {
  right: 28px;
}

.product-detail-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.product-detail-visual span {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
}

.product-detail-copy h1,
.product-detail-empty h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.92;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-breadcrumb strong {
  color: var(--ink);
  font-weight: 700;
}

.product-detail-price-note {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-detail-price {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  color: var(--accent);
}

.product-detail-sales-panel {
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(249, 251, 250, 0.64)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.07), rgba(210, 165, 58, 0.07));
}

.product-detail-sales-head {
  display: grid;
  gap: 10px;
}

.product-detail-availability {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 55, 97, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-sales-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-sales-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-detail-sales-points article {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.product-detail-sales-points strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-sales-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-detail-purchase-note,
.product-detail-decision-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.6)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.05));
}

.product-detail-purchase-note strong,
.product-detail-decision-box strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-purchase-note p,
.product-detail-decision-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-description {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-detail-copy .product-facts {
  margin-top: 18px;
}

.product-detail-copy .product-gallery,
.product-detail-copy .product-variants {
  margin-top: 20px;
}

.product-detail-copy .product-colors + .product-colors,
.product-detail-copy .product-colors + .product-variants,
.product-detail-copy .product-variants + .product-colors {
  margin-top: 16px;
}

.product-detail-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.product-detail-service-strip article,
.product-detail-reassurance {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
}

.product-detail-service-strip strong,
.product-detail-reassurance strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-service-strip p,
.product-detail-reassurance p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-detail-specs article {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.product-detail-specs strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-specs p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.product-detail-primary-action {
  min-width: 240px;
}

.product-detail-actions .subtle-action {
  background:
    linear-gradient(180deg, rgba(23, 50, 91, 0.08), rgba(23, 50, 91, 0.04)),
    rgba(255, 255, 255, 0.72);
  color: var(--accent);
  border: 1px solid rgba(23, 50, 91, 0.12);
}

.product-lab-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.05));
}

.product-lab-contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.product-lab-contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-lab-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .product-lab-contact-card {
    grid-template-columns: 1fr;
  }

  .product-lab-contact-actions {
    justify-content: flex-start;
  }
}

.product-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-detail-trust article {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
}

.product-detail-trust strong {
  display: block;
  margin-bottom: 8px;
}

.product-detail-trust p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 250, 249, 0.78)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.08));
}

.product-detail-note strong {
  display: block;
  margin-bottom: 6px;
}

.product-detail-note p {
  margin: 0;
  color: var(--muted);
}

.product-detail-reassurance {
  margin-top: 18px;
}

.product-sticky-bar {
  display: none;
}

.product-sticky-bar[hidden] {
  display: none !important;
}

.product-detail-empty {
  text-align: center;
  padding: 42px 18px;
}

.product-similar-section {
  margin-top: 30px;
}

.product-similar-heading {
  margin-bottom: 22px;
}

.product-similar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.product-similar-page-indicator {
  min-width: 52px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.product-similar-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(17, 35, 60, 0.18);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(10, 23, 38, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.product-similar-arrow:hover,
.product-similar-arrow:focus-visible {
  transform: scale(1.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    rgba(17, 35, 60, 0.24);
}

.product-similar-arrow span {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.product-similar-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.product-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-similar-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 249, 0.72)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  box-shadow: 0 20px 42px rgba(23, 50, 91, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-similar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 50, 91, 0.16);
  box-shadow: 0 28px 56px rgba(23, 50, 91, 0.13);
}

.product-similar-visual {
  min-height: 240px;
  padding: 20px;
  display: flex;
  align-items: end;
  color: white;
  position: relative;
}

.product-similar-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.product-similar-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(9, 17, 27, 0), rgba(9, 17, 27, 0.42));
}

.product-similar-visual span {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  line-height: 0.95;
  text-shadow: 0 12px 22px rgba(10, 23, 38, 0.22);
}

.product-similar-copy {
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 251, 250, 0.66)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.02), rgba(210, 165, 58, 0.02));
}

.product-similar-category {
  margin: 0;
  color: var(--teal);
}

.product-similar-copy h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 0.96;
}

.product-similar-price {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-similar-copy .product-facts {
  margin-top: 8px;
}

.product-similar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product-similar-actions .secondary-button,
.product-similar-actions .primary-button {
  min-height: 50px;
  padding-inline: 18px;
}

.product-similar-actions .primary-button {
  box-shadow: 0 14px 30px rgba(23, 50, 91, 0.18);
}

.atelier-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}

.atelier-copy {
  padding-right: 8px;
}

.atelier-steps {
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.atelier-steps article {
  padding: 18px;
  border-radius: 22px;
}

.atelier-steps span,
.story-points span {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.atelier-ideas {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 94, 96, 0.1), rgba(203, 150, 52, 0.14));
  border: 1px solid rgba(31, 94, 96, 0.08);
}

.atelier-ideas strong {
  display: block;
  margin-bottom: 10px;
}

.atelier-ideas ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.atelier-atmosphere {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.atelier-atmosphere article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.06));
}

.atelier-atmosphere strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

.atelier-atmosphere p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.atelier-home-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 249, 0.76)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.06));
  box-shadow: 0 24px 48px rgba(23, 50, 91, 0.08);
}

.atelier-home-card .booking-heading h3 {
  max-width: 520px;
}

.atelier-home-card .form-note {
  color: rgba(23, 50, 91, 0.74);
}

.booking-card {
  padding: 24px;
  border-radius: 28px;
}

.booking-heading h3 {
  margin: 0 0 20px;
  font-size: 2.2rem;
  line-height: 0.96;
}

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

.form-grid label,
.full-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(22, 29, 35, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.full-field {
  margin-top: 16px;
}

.booking-actions {
  margin-top: 20px;
}

.form-note {
  margin: 16px 0 0;
}

.booking-output {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(31, 94, 96, 0.08);
  border: 1px solid rgba(31, 94, 96, 0.14);
}

.story-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}

.story-panel {
  padding: 8px 6px;
}

.story-points {
  gap: 16px;
}

.story-points article,
.experience-grid article {
  flex: 1;
  border-radius: 24px;
  padding: 22px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer-actions {
  margin-top: 20px;
}

.contact-pills {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-pills span,
.hero-metrics article {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-pills span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.lab-contact-pills {
  display: flex;
}

.lab-contact-pills span {
  color: var(--muted);
}

.primary-button,
.secondary-button,
.ghost-button,
.cart-button {
  border: none;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 18px 38px rgba(23, 50, 91, 0.22);
}

.secondary-button,
.ghost-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 251, 250, 0.64)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  color: var(--ink);
  border: 1px solid var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(23, 50, 91, 0.16);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.cart-button:focus-visible,
.nav-links a:focus-visible,
.product-title-link:focus-visible,
.site-footer-grid a:focus-visible {
  outline: 2px solid rgba(89, 174, 165, 0.34);
  outline-offset: 3px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.full-width {
  width: 100%;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: rgba(248, 241, 231, 0.98);
  box-shadow: -18px 0 60px rgba(17, 17, 17, 0.18);
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 42;
}

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

.cart-header h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-items {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.cart-item p {
  margin: 8px 0 0;
}

.cart-line strong,
.cart-total strong {
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.remove-button {
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 26, 30, 0.42);
  z-index: 34;
}

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 46;
  display: grid;
  place-items: center;
  padding: 28px;
}

@media (max-width: 1365px) {
  .site-shell,
  .bomboniere-page .site-shell {
    width: min(1320px, calc(100vw - 24px));
  }

  .topbar {
    gap: 14px;
    padding: 14px 18px;
  }

  .topbar p {
    max-width: 620px;
  }

  .hero {
    gap: 28px;
    padding: 38px 24px 30px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  }

  .hero-brand-signature {
    padding: 18px 18px 16px;
    border-radius: 30px;
  }

  .hero-logo-large {
    width: min(100%, 560px);
  }

  .collection-preview-carousel {
    width: calc(100% + 18px);
    margin-right: -18px;
    padding: 18px 56px;
  }

  .collection-preview-marquee-rail {
    gap: 18px;
    padding-right: 18px;
  }

  .collection-preview-marquee-card {
    width: 310px;
    flex-basis: 310px;
  }

  .collection-preview-marquee-copy strong {
    font-size: clamp(1.85rem, 2.1vw, 2.25rem);
  }

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

  .collection-filter-reset {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .product-grid {
    gap: 20px;
  }

  .checkout-shell,
  .product-detail-shell,
  .bomboniere-landing-hero,
  .bomboniere-request-block {
    gap: 20px;
  }

  .bomboniere-logo-panel {
    inset: 0 28px 104px 0;
  }

  .bomboniere-brush-panel {
    left: 24px;
    right: 150px;
  }
}

@media (max-width: 1280px) {
  body.cart-open {
    overflow: hidden;
  }

  .site-shell {
    grid-template-columns: 1fr;
    width: min(calc(100vw - 20px), 100%);
    margin: 12px auto 32px;
  }

  .bomboniere-page .site-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .topbar,
  .navbar,
  main {
    grid-column: 1;
    grid-row: auto;
  }

  /* ── Mobile topbar: single-column stack ── */
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .topbar-ticker-container {
    overflow: hidden;
    min-width: 0;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  }

  .topbar p {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    animation: ticker-marquee 20s linear infinite;
    padding-left: 100%;
    display: inline-block;
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    min-width: 0;
  }

  @keyframes ticker-marquee {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
  }

  .topbar-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
  }

  .topbar-actions > a.ghost-button,
  .topbar-actions > #open-cart-top {
    display: none;
  }

  .topbar-actions > [data-language-toggle] {
    flex: 0 0 auto;
  }

  /* Menu / hamburger button */
  .topbar-actions > .menu-button {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    padding-inline: 16px;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,251,250,0.82)),
      linear-gradient(135deg, rgba(89,174,165,0.08), rgba(210,165,58,0.08));
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(23,50,91,0.09);
    border-radius: 999px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .language-toggle {
    gap: 4px;
    padding: 3px;
  }

  .language-toggle .ghost-button {
    min-width: 44px;
    min-height: 44px;
    padding: 0 10px;
  }

  .navbar {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    max-height: 0;
    margin-top: -6px;
    padding: 0 18px;
    gap: 18px;
    opacity: 0;
    transform: translateY(-8px);
    transition: 
      max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease,
      transform 0.3s ease,
      margin-top 0.3s ease,
      padding 0.3s ease;
    overflow: hidden;
    z-index: 23;
    visibility: hidden;
    pointer-events: none;
    border-radius: 24px;
    border: 1px solid rgba(23, 50, 91, 0.04);
  }

  body.nav-open .navbar,
  .navbar.is-open {
    max-height: min(85dvh, 900px);
    margin-top: 0;
    padding: 24px 18px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--paper), rgba(255, 255, 255, 0.98));
    box-shadow: 0 24px 60px rgba(23, 50, 91, 0.14);
  }

  .navbar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(23, 50, 91, 0.05);
    color: var(--muted);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .topbar-actions > .menu-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    min-width: 130px;
    min-height: 54px;
    padding-inline: 20px;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 251, 250, 0.82)),
      linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.08));
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(23, 50, 91, 0.1);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  /* Remove duplicate nav-open rule — handled above */

  .navbar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    gap: 24px;
    padding: 32px 22px 26px;
  }

  .hero-stage {
    max-width: 400px;
    min-height: 380px;
  }

  .hero::after {
    bottom: -12px;
    font-size: clamp(6.2rem, 14vw, 9.5rem);
  }

  .home-path-tile {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .home-path-image {
    width: 88px;
    height: 88px;
  }

  .home-path-copy strong {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  }

  .collection-preview-carousel {
    width: calc(100% + 8px);
    margin-right: -8px;
    padding: 16px 52px;
  }

  .collection-preview-marquee-card {
    width: 284px;
    flex-basis: 284px;
  }

  .collection-search-bar {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .collection-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-summary-card {
    position: static;
  }

  .bomboniere-landing-visual {
    min-height: 560px;
  }

  .bomboniere-floating-note {
    width: 210px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 22px;
  }

  .hero::after {
    font-size: clamp(5rem, 15vw, 10rem);
    bottom: -20px;
    left: 16px;
  }

  .hero-brand-signature {
    width: 100%;
    padding: 18px;
  }

  .hero-logo-large {
    width: min(100%, 420px);
  }

  .hero h1 {
    text-align: center;
    margin: 0 auto;
  }

  .hero-text {
    text-align: center;
    margin: 16px auto 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stage,
  .hero-stage-paths {
    max-width: none;
    width: 100%;
  }

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

  .home-path-tile {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-path-image {
    width: 100%;
    height: 160px;
  }

  .collection-preview-marquee-card {
    width: 262px;
    flex-basis: 262px;
  }

  .collection-preview-carousel {
    padding-inline: 48px;
  }
}

@media (max-width: 980px) {
  .site-shell,
  .bomboniere-page .site-shell {
    width: min(calc(100vw - 16px), 100%);
    margin: 10px auto 28px;
  }

  .topbar {
    padding: 14px 16px;
    border-radius: 22px;
  }

  .hero {
    padding: 28px 20px 22px;
  }

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

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

  .home-path-image {
    height: 124px;
  }

  .collection-preview-carousel {
    width: 100%;
    margin-right: 0;
    padding-inline: 44px;
  }

  .collection-preview-marquee-card {
    width: min(250px, calc(100vw - 128px));
    flex-basis: min(250px, calc(100vw - 128px));
  }
}

.product-lightbox[hidden] {
  display: none !important;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 26, 30, 0.58);
  backdrop-filter: blur(10px);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 64px));
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 250, 0.8)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.05), rgba(210, 165, 58, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 34px 80px rgba(12, 19, 27, 0.28);
}

.product-lightbox-close {
  margin-left: auto;
  margin-bottom: 14px;
  display: inline-flex;
}

.product-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(76vh, 820px);
}

.product-lightbox-visual {
  flex: 1 1 auto;
  min-height: min(72vh, 760px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(245, 248, 247, 0.7);
  border: 1px solid rgba(23, 50, 91, 0.08);
}

.product-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(17, 35, 60, 0.2);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 36px rgba(10, 23, 38, 0.18);
  transform: translateY(-50%);
}

.product-lightbox-arrow:hover,
.product-lightbox-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.product-lightbox-arrow span {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.product-lightbox-arrow-prev {
  left: 18px;
}

.product-lightbox-arrow-next {
  right: 18px;
}

.reveal {
  animation: rise 0.8s ease both;
}

.bomboniere-landing-link {
  margin: 16px 0 0;
}

.bomboniere-page .site-shell {
  width: min(1320px, calc(100vw - 32px));
}

.bomboniere-landing-hero,
.bomboniere-collections-block,
.bomboniere-story-block,
.bomboniere-request-block,
.bomboniere-bottom-cta {
  margin-top: 22px;
  padding: 32px 30px;
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.bomboniere-landing-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
}

.bomboniere-landing-hero::before {
  content: "";
  position: absolute;
  inset: auto -6% -20% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 165, 58, 0.14), rgba(210, 165, 58, 0));
  pointer-events: none;
}

.bomboniere-landing-hero::after {
  content: "BOMBONIERE";
  position: absolute;
  left: 24px;
  bottom: -28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5.8rem, 14vw, 10rem);
  line-height: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(23, 50, 91, 0.045);
  pointer-events: none;
}

.bomboniere-landing-copy,
.bomboniere-landing-visual,
.bomboniere-collections-block,
.bomboniere-story-block,
.bomboniere-request-block,
.bomboniere-bottom-cta {
  position: relative;
  z-index: 1;
}

.bomboniere-landing-copy h1,
.bomboniere-request-copy h2,
.bomboniere-bottom-cta h2,
.bomboniere-story-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
}

.bomboniere-landing-text,
.bomboniere-request-copy p,
.bomboniere-story-copy p,
.bomboniere-bottom-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.bomboniere-landing-text {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.bomboniere-landing-actions,
.bomboniere-landing-pills,
.bomboniere-landing-metrics,
.bomboniere-collections-grid,
.bomboniere-story-steps {
  display: flex;
}

.bomboniere-landing-actions {
  gap: 14px;
  margin: 28px 0 24px;
}

.bomboniere-landing-pills {
  flex-wrap: wrap;
  gap: 10px;
}

.bomboniere-landing-pills span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 252, 251, 0.6)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.04));
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.bomboniere-landing-metrics {
  gap: 14px;
  margin-top: 24px;
}

.bomboniere-landing-metrics article {
  flex: 1;
  min-width: 180px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.bomboniere-landing-metrics strong,
.bomboniere-collections-grid strong,
.bomboniere-story-steps h3 {
  display: block;
  margin-bottom: 8px;
}

.bomboniere-landing-metrics span,
.bomboniere-collections-grid p,
.bomboniere-story-steps p {
  color: var(--muted);
  line-height: 1.65;
}

.bomboniere-landing-visual {
  position: relative;
  min-height: 640px;
}

.bomboniere-logo-panel,
.bomboniere-brush-panel,
.bomboniere-floating-note {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bomboniere-logo-panel {
  inset: 0 48px 110px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 249, 0.82));
}

.bomboniere-logo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bomboniere-brush-panel {
  left: 34px;
  right: 180px;
  bottom: 0;
  height: 170px;
  background: rgba(255, 255, 255, 0.78);
}

.bomboniere-brush-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 74%;
  transform: scale(1.8);
}

.bomboniere-floating-note {
  top: 28px;
  right: 0;
  width: 230px;
  padding: 20px;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(12px);
}

.bomboniere-floating-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
}

.bomboniere-collections-grid {
  gap: 18px;
}

.bomboniere-collections-grid article,
.bomboniere-story-steps article {
  flex: 1;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 251, 250, 0.62)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.06);
}

.bomboniere-collections-grid article {
  position: relative;
}

.bomboniere-collections-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--gold-soft), var(--teal));
  opacity: 0.85;
}

.bomboniere-story-block,
.bomboniere-request-block,
.bomboniere-bottom-cta {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
}

.bomboniere-story-steps {
  gap: 16px;
}

.bomboniere-story-steps article {
  display: flex;
  flex-direction: column;
}

.bomboniere-story-steps span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--accent);
}

.bomboniere-request-copy {
  padding-right: 8px;
}

.bomboniere-request-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(247, 252, 250, 0.76)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.1));
  border: 1px solid rgba(23, 50, 91, 0.08);
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.05);
}

.bomboniere-request-note strong {
  display: block;
  margin-bottom: 10px;
}

.bomboniere-request-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.bomboniere-request-highlights {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bomboniere-request-highlights article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 251, 250, 0.58)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.05);
}

.bomboniere-commercial-block .section-heading {
  padding-bottom: 4px;
}

.bomboniere-request-block {
  align-items: start;
}

.bomboniere-request-copy h2 {
  max-width: 12ch;
}

.bomboniere-form {
  box-shadow: 0 24px 48px rgba(23, 50, 91, 0.08);
}

.bomboniere-request-highlights strong {
  display: block;
  margin-bottom: 8px;
}

.bomboniere-request-highlights p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.bomboniere-landing-form {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 250, 249, 0.78));
}

.bomboniere-bottom-cta {
  align-items: center;
}

.bomboniere-bottom-cta .collection-bottom-actions,
.bomboniere-bottom-cta .booking-actions {
  gap: 12px;
}

.editor-shell {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1560px, calc(100vw - 32px));
}

.editor-topbar,
.editor-toolbar-card,
.editor-card,
.editor-quicknav-card,
.editor-preview-card {
  backdrop-filter: blur(24px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.editor-topbar,
.editor-toolbar-card,
.editor-card,
.editor-quicknav-card,
.editor-preview-card {
  border-radius: 30px;
  padding: 28px;
}

.editor-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.editor-topbar h1,
.editor-card-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.editor-topbar h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  max-width: 14ch;
}

.editor-topbar p:not(.eyebrow),
.editor-card-heading p,
.editor-status {
  color: var(--muted);
  line-height: 1.7;
}

.editor-actions,
.editor-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.editor-toolbar {
  align-items: center;
  justify-content: space-between;
}

.editor-actions {
  justify-content: flex-end;
  align-content: flex-start;
}

.editor-toolbar-card {
  margin-top: 18px;
  box-shadow: 0 18px 36px rgba(23, 50, 91, 0.06);
}

.editor-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.editor-meta-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.editor-quicknav-card {
  margin-top: 18px;
  position: sticky;
  top: 16px;
  z-index: 5;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(23, 50, 91, 0.08);
}

.editor-preview-card {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.editor-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.editor-preview-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 0.98;
}

.editor-preview-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.editor-preview-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.editor-preview-switch,
.editor-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-preview-switch .ghost-button,
.editor-preview-links .ghost-button,
.editor-preview-links .secondary-button {
  min-height: 48px;
}

.editor-preview-switch .ghost-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.98), rgba(31, 94, 96, 0.96));
  border-color: transparent;
  color: white;
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.14);
}

.editor-preview-frame-shell {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 249, 248, 0.94)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.06), rgba(210, 165, 58, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.editor-preview-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: white;
}

.editor-preview-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-quicknav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.editor-quicknav .ghost-button {
  background: rgba(255, 255, 255, 0.72);
  min-height: 48px;
  padding-inline: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.editor-quicknav .ghost-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.16);
}

.editor-server-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.editor-toolbar {
  align-items: center;
}

.editor-status {
  margin: 14px 0 0;
}

.editor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.editor-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.editor-page-panel.is-hidden,
.editor-management-view.is-hidden {
  display: none;
}

.editor-page-panel {
  animation: rise 0.24s ease;
}

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

.editor-collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
}

.editor-collection-toolbar label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  min-width: 0;
}

.editor-toolbar-search {
  min-width: min(100%, 320px);
  flex: 1 1 280px;
}

.editor-toolbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-card-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.editor-card-heading h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.editor-form-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 50, 91, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editor-form-section h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--ink);
}

.editor-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.editor-form-grid label,
.editor-product-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  min-width: 0;
}

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

.editor-logo-preview {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.editor-logo-preview img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin-top: 14px;
}

.editor-backgrounds-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.editor-background-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.editor-background-row.is-active {
  border-color: rgba(31, 94, 96, 0.22);
  box-shadow: inset 0 0 0 1px rgba(31, 94, 96, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 248, 247, 0.92));
}

.editor-background-row.is-active .editor-background-preview {
  height: 220px;
  max-height: 220px;
  aspect-ratio: 16 / 9;
}

.editor-background-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.editor-background-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.editor-background-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.18), rgba(210, 165, 58, 0.22));
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.editor-background-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.editor-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.editor-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.editor-product-card:hover {
  border-color: rgba(23, 50, 91, 0.14);
  box-shadow: 0 20px 38px rgba(23, 50, 91, 0.07);
}

.editor-product-card.is-collapsed {
  gap: 14px;
}

.editor-product-card.is-hidden-product {
  background: rgba(247, 244, 240, 0.82);
  border-color: rgba(128, 109, 85, 0.18);
}

.editor-product-card.is-priority-product {
  box-shadow: 0 18px 40px rgba(23, 50, 91, 0.08);
}

.editor-product-card.is-focus-product {
  border-color: rgba(89, 174, 165, 0.4);
  box-shadow: 0 0 0 4px rgba(89, 174, 165, 0.12), 0 18px 36px rgba(23, 50, 91, 0.1);
}

.editor-product-preview {
  min-height: 0;
  aspect-ratio: 16 / 9;
  height: 220px;
  max-height: 220px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  align-items: end;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.editor-product-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
}

.editor-product-content {
  display: grid;
  gap: 14px;
}

.editor-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-product-tab {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.editor-product-tab.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(23, 50, 91, 0.16);
}

.editor-product-section {
  display: grid;
  gap: 14px;
}

.editor-product-section.is-hidden {
  display: none;
}

.editor-product-section-head {
  display: grid;
  gap: 4px;
}

.editor-product-section-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1;
}

.editor-product-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  min-width: 0;
}

.editor-product-toggle-field {
  display: flex;
  align-items: start;
  gap: 12px;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(23, 50, 91, 0.035);
}

.editor-product-toggle-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.editor-product-toggle-field span {
  display: grid;
  gap: 4px;
}

.editor-product-toggle-field strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--ink);
}

.editor-product-toggle-field small {
  color: var(--muted);
  line-height: 1.55;
}

.editor-product-visual-builder {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(23, 50, 91, 0.035);
}

.editor-product-visual-builder-head strong {
  display: block;
  margin-bottom: 6px;
}

.editor-product-visual-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.editor-advanced-visual {
  display: grid;
  gap: 10px;
}

.editor-advanced-visual summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.editor-advanced-visual[open] {
  padding-top: 4px;
}

.editor-product-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  min-width: 0;
}

.editor-product-card.is-collapsed .editor-product-header {
  align-items: center;
}

.editor-product-header strong {
  display: block;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.editor-product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 0;
  flex: 0 1 auto;
}

.editor-product-actions .ghost-button:disabled {
  opacity: 0.34;
}

.editor-product-header > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 8px;
}

.editor-product-state-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-product-state-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.editor-product-state-badge.is-live {
  background: rgba(89, 174, 165, 0.12);
  color: #1b655f;
}

.editor-product-state-badge.is-hidden {
  background: rgba(128, 109, 85, 0.14);
  color: #705c45;
}

.editor-product-state-badge.is-priority {
  background: rgba(210, 165, 58, 0.18);
  color: #8b6420;
}

.editor-product-state-badge.is-warning {
  background: rgba(139, 31, 47, 0.14);
  color: #7b2031;
}

.editor-product-state-badge.is-soft-warning {
  background: rgba(23, 50, 91, 0.1);
  color: #17325b;
}

.editor-product-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-product-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.editor-product-summary span.is-highlight {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.14), rgba(210, 165, 58, 0.18));
}

.editor-products-feedback {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-products-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-stats-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.editor-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.editor-health-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.editor-health-card strong {
  display: block;
  margin-bottom: 6px;
}

.editor-health-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.editor-health-card-ok {
  background: linear-gradient(180deg, rgba(245, 251, 249, 0.94), rgba(255, 255, 255, 0.9));
}

.editor-health-card-warn {
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.94), rgba(255, 255, 255, 0.9));
}

.editor-management-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.editor-management-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-management-shortcut {
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 249, 0.94));
  color: var(--ink);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.editor-management-shortcut:hover,
.editor-management-shortcut:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23, 50, 91, 0.16);
  box-shadow: 0 12px 24px rgba(23, 50, 91, 0.08);
}

.editor-management-shortcut strong {
  font-size: 1.2rem;
  line-height: 1;
}

.editor-management-shortcut span {
  color: var(--muted);
  line-height: 1.4;
}

.editor-management-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-management-switch .ghost-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
}

.editor-management-view {
  display: grid;
  gap: 18px;
}

.editor-management-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.editor-management-filters label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.editor-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editor-insight-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.editor-insight-card-wide {
  grid-column: 1 / -1;
}

.editor-period-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.editor-period-switch .ghost-button {
  min-height: 40px;
  padding-inline: 14px;
}

.editor-period-switch .ghost-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
}

.editor-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.editor-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.editor-management-action-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 248, 0.96));
  color: var(--ink);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.editor-management-action-card:hover,
.editor-management-action-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(23, 50, 91, 0.08);
  border-color: rgba(23, 50, 91, 0.16);
}

.editor-management-action-card strong {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
}

.editor-management-action-card span {
  font-weight: 700;
  line-height: 1.35;
}

.editor-management-action-card small {
  color: var(--muted);
  line-height: 1.55;
}

.editor-management-action-card[data-tone="request"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 247, 0.98));
}

.editor-management-action-card[data-tone="order"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 252, 0.98));
}

.editor-management-action-card[data-tone="followup"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 237, 0.98));
}

.editor-management-action-card[data-tone="shipping"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 247, 0.98));
}

.editor-management-action-card[data-tone="urgent"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 242, 0.98));
}

.editor-kpi-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 248, 0.94));
  border: 1px solid rgba(23, 50, 91, 0.08);
}

.editor-kpi-card span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.editor-kpi-card strong {
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ink);
}

.editor-kpi-card small {
  color: var(--muted);
  line-height: 1.5;
}

.editor-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.editor-priority-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 249, 0.94));
  min-width: 0;
}

.editor-priority-head {
  display: grid;
  gap: 4px;
}

.editor-priority-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.editor-priority-head strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.editor-priority-count,
.editor-priority-group-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.editor-priority-head span {
  color: var(--muted);
  line-height: 1.5;
}

.editor-priority-list {
  display: grid;
  gap: 10px;
}

.editor-priority-group {
  display: grid;
  gap: 8px;
}

.editor-priority-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.editor-priority-group-head strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.editor-priority-group-count {
  min-width: 30px;
  min-height: 30px;
  padding-inline: 10px;
  font-size: 0.8rem;
}

.editor-priority-group-list {
  display: grid;
  gap: 10px;
}

.editor-priority-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(23, 50, 91, 0.045);
}

.editor-priority-item strong {
  color: var(--ink);
  line-height: 1.3;
}

.editor-priority-item span {
  color: var(--muted);
  line-height: 1.45;
}

.editor-priority-item[data-tone="urgent"] {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.08), rgba(255, 255, 255, 0.92));
}

.editor-priority-item[data-tone="followup"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.1), rgba(255, 255, 255, 0.92));
}

.editor-priority-item[data-tone="shipping"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.1), rgba(255, 255, 255, 0.92));
}

.editor-priority-empty {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(23, 50, 91, 0.14);
  color: var(--muted);
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.7);
}

.editor-breakdown-list,
.editor-top-products {
  display: grid;
  gap: 12px;
}

.editor-activity-timeline {
  display: grid;
  gap: 14px;
}

.editor-activity-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.editor-activity-dot {
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.95), rgba(89, 174, 165, 0.88));
  box-shadow: 0 0 0 6px rgba(23, 50, 91, 0.08);
}

.editor-activity-row[data-activity-type="order"] .editor-activity-dot {
  background: linear-gradient(135deg, rgba(31, 94, 96, 0.95), rgba(196, 164, 92, 0.88));
}

.editor-activity-content {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(23, 50, 91, 0.045);
}

.editor-activity-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.editor-activity-head span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.editor-activity-content h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.editor-activity-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-activity-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-activity-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 50, 91, 0.1);
  color: var(--ink);
  font-size: 0.9rem;
}

.editor-breakdown-row {
  display: grid;
  gap: 8px;
}

.editor-breakdown-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.editor-breakdown-head span {
  color: var(--ink);
  line-height: 1.45;
}

.editor-breakdown-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  overflow: hidden;
}

.editor-breakdown-track span {
  display: block;
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.95), rgba(89, 174, 165, 0.85));
}

.editor-top-product-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 50, 91, 0.05);
}

.editor-top-product-row span {
  color: var(--ink);
  line-height: 1.45;
}

.editor-top-product-row strong {
  white-space: nowrap;
}

.editor-management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editor-management-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 250, 0.7)),
    linear-gradient(135deg, rgba(89, 174, 165, 0.04), rgba(210, 165, 58, 0.05));
  box-shadow: 0 18px 34px rgba(23, 50, 91, 0.06);
}

.editor-management-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.editor-management-panel-head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.editor-management-list {
  display: grid;
  gap: 14px;
}

.editor-management-item {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(23, 50, 91, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.editor-management-item:hover {
  border-color: rgba(23, 50, 91, 0.14);
  box-shadow: 0 18px 32px rgba(23, 50, 91, 0.07);
}

.editor-management-item[data-priority="urgent"] {
  border-color: rgba(139, 31, 47, 0.16);
  box-shadow: 0 18px 34px rgba(139, 31, 47, 0.08);
}

.editor-management-item[data-priority="high"] {
  border-color: rgba(210, 165, 58, 0.18);
}

.editor-management-item-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.editor-management-item-head h4 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink);
}

.editor-management-meta {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.editor-management-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.editor-management-status[data-status="new"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.88));
}

.editor-management-status[data-status="processing"],
.editor-management-status[data-status="in-review"],
.editor-management-status[data-status="confirmed"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.18), rgba(255, 255, 255, 0.88));
}

.editor-management-status[data-status="replied"],
.editor-management-status[data-status="shipped"],
.editor-management-status[data-status="completed"],
.editor-management-status[data-status="closed"] {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.14), rgba(255, 255, 255, 0.88));
}

.editor-management-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.editor-management-attention-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-management-attention-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.06);
  border: 1px solid rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.editor-management-attention-pill[data-tone="urgent"] {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.14), rgba(255, 255, 255, 0.94));
  border-color: rgba(139, 31, 47, 0.16);
}

.editor-management-attention-pill[data-tone="today"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.16), rgba(255, 255, 255, 0.94));
  border-color: rgba(210, 165, 58, 0.18);
}

.editor-management-attention-pill[data-tone="shipping"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.94));
  border-color: rgba(89, 174, 165, 0.18);
}

.editor-management-attention-pill[data-tone="info"] {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.1), rgba(255, 255, 255, 0.94));
  border-color: rgba(23, 50, 91, 0.12);
}

.editor-management-row {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 50, 91, 0.05);
}

.editor-management-row span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.editor-management-row strong {
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.editor-management-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.editor-management-note strong,
.editor-order-items strong {
  display: block;
  margin-bottom: 8px;
}

.editor-management-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-management-meta-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-management-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.07);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.editor-management-meta-pill[data-priority="urgent"] {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.18), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-priority="high"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.2), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-priority="low"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.14), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill-demo {
  background: linear-gradient(135deg, rgba(91, 131, 96, 0.18), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill-due {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.16), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill-ready {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.18), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-followup="overdue"] {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.2), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-followup="today"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.2), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-followup="tomorrow"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.16), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-shipping="overdue"] {
  background: linear-gradient(135deg, rgba(139, 31, 47, 0.18), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-shipping="today"] {
  background: linear-gradient(135deg, rgba(210, 165, 58, 0.2), rgba(255, 255, 255, 0.92));
}

.editor-management-meta-pill[data-shipping="tomorrow"] {
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.18), rgba(255, 255, 255, 0.92));
}

.editor-management-controls {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.editor-management-control {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.editor-shipping-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.editor-shipping-task {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 50, 91, 0.05);
  border: 1px solid rgba(23, 50, 91, 0.08);
}

.editor-shipping-task input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.editor-shipping-task span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.editor-management-control-wide {
  min-width: 0;
}

.editor-management-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.editor-management-actions .ghost-button.is-active {
  background: linear-gradient(135deg, rgba(23, 50, 91, 0.96), rgba(31, 94, 96, 0.96));
  color: white;
  border-color: transparent;
}

.editor-management-muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.editor-order-items {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(23, 50, 91, 0.04);
}

.editor-order-items ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editor-order-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.editor-order-items li strong {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
}

.editor-client-activity {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(23, 50, 91, 0.04);
}

.editor-client-activity strong {
  display: block;
  margin-bottom: 8px;
}

.editor-client-activity ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editor-client-activity li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.editor-client-activity li strong {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
}

.editor-empty-state {
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(23, 50, 91, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.editor-empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.editor-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-management-demo-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(246, 251, 249, 0.78));
  color: var(--muted);
  line-height: 1.6;
}

.editor-product-card.is-collapsed {
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px;
  cursor: pointer;
}

.editor-product-card.is-collapsed .editor-product-preview {
  display: flex;
  aspect-ratio: 1 / 1;
  width: 132px;
  height: 132px;
  max-height: 132px;
  padding: 12px;
  border-radius: 18px;
  font-size: 1.18rem;
}

.editor-product-card.is-collapsed .editor-product-fields {
  gap: 10px;
}

.editor-product-card.is-collapsed .editor-product-header {
  gap: 10px;
  align-items: start;
}

.editor-product-card.is-collapsed .editor-product-header .editor-helper {
  display: none;
}

.editor-product-card.is-collapsed .editor-product-actions {
  gap: 8px;
}

.editor-product-card.is-collapsed .editor-product-actions .ghost-button,
.editor-product-card.is-collapsed .editor-product-actions .secondary-button {
  min-height: 38px;
  padding-inline: 12px;
}

.editor-product-card.is-collapsed:hover {
  border-color: rgba(23, 50, 91, 0.16);
  box-shadow: 0 12px 28px rgba(23, 50, 91, 0.06);
}

.editor-product-card.is-collapsed .editor-product-summary {
  gap: 8px;
}

.editor-product-card.is-collapsed .editor-product-summary span {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 0.84rem;
}

.editor-product-card.is-collapsed .editor-product-summary span:nth-child(n + 6) {
  display: none;
}

.editor-composer-block {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  min-width: 0;
}

.editor-visual-preview {
  position: relative;
  min-height: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 220px;
  max-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.editor-visual-preview span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 38, 69, 0.58);
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  white-space: normal;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.editor-background-preview {
  aspect-ratio: 16 / 8;
  height: 180px;
  max-height: 180px;
}

.editor-block-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  min-width: 0;
}

.editor-block-heading strong {
  display: block;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.editor-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}

.editor-variants-list,
.editor-images-list,
.editor-colors-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.editor-images-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.editor-variant-row,
.editor-color-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.78);
  min-width: 0;
}

.editor-image-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.78);
  min-width: 0;
  align-content: start;
}

.editor-image-preview-card {
  aspect-ratio: 16 / 10;
  height: 220px;
  max-height: 220px;
}

.editor-color-image-preview {
  height: 200px;
  max-height: 200px;
}

.editor-image-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.editor-color-meta {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(246, 249, 248, 0.86);
  border: 1px solid rgba(23, 50, 91, 0.06);
}

.editor-color-meta-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.editor-color-meta-head strong {
  display: block;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

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

.editor-decor-row .editor-color-preview {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.editor-color-images-panel {
  display: grid;
  gap: 12px;
}

.editor-color-suggestions {
  display: grid;
  gap: 10px;
}

.editor-color-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-color-swatch-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
}

.editor-color-swatch-button span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(23, 50, 91, 0.12);
}

.editor-color-swatch-button small {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editor-color-swatch-button.is-active {
  border-color: rgba(23, 50, 91, 0.22);
  box-shadow: 0 12px 24px rgba(23, 50, 91, 0.1);
}

.editor-block-heading-compact {
  margin-bottom: 0;
}

.editor-color-images-empty {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px dashed rgba(23, 50, 91, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.editor-color-images-empty strong {
  display: block;
  margin-bottom: 6px;
}

.editor-color-images-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.editor-color-images-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.editor-color-image-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 50, 91, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.editor-color-image-fields {
  display: grid;
  gap: 12px;
}

.editor-color-preview {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(23, 50, 91, 0.12);
  justify-self: center;
  background-repeat: no-repeat;
  background-color: rgba(23, 50, 91, 0.08);
}

.editor-inline-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.editor-inline-actions-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.editor-hidden-upload {
  display: none;
}

.editor-image-count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.editor-danger-button {
  color: #8b1f2f;
  border-color: rgba(139, 31, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 248, 0.88)),
    linear-gradient(135deg, rgba(139, 31, 47, 0.04), rgba(210, 165, 58, 0.03));
}

.editor-danger-button:hover,
.editor-danger-button:focus-visible {
  color: #7a1827;
  border-color: rgba(139, 31, 47, 0.26);
}

.editor-upload-field input[type="file"] {
  padding: 10px 0 0;
}

.editor-image-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(89, 174, 165, 0.18), rgba(210, 165, 58, 0.22));
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.editor-product-card.is-collapsed .editor-product-summary {
  margin-top: 2px;
}

.editor-thumb-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-thumb-strip-empty {
  align-items: center;
  min-height: 56px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.editor-thumb {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.editor-thumb-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 68px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(23, 50, 91, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.editor-import-button {
  cursor: pointer;
}

.editor-page input,
.editor-page textarea,
.editor-page button,
.editor-page .ghost-button,
.editor-page .secondary-button,
.editor-page .primary-button {
  max-width: 100%;
}

.editor-page input,
.editor-page textarea {
  width: 100%;
}

.editor-page button,
.editor-page .ghost-button,
.editor-page .secondary-button,
.editor-page .primary-button,
.editor-page .editor-import-button {
  white-space: nowrap;
  text-align: center;
  overflow-wrap: normal;
}

.editor-page input,
.editor-page textarea,
.editor-page select {
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 50, 91, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.editor-page textarea {
  min-height: 120px;
  resize: vertical;
}

.editor-page input:focus,
.editor-page textarea:focus,
.editor-page select:focus {
  outline: 2px solid rgba(89, 174, 165, 0.22);
  outline-offset: 2px;
  border-color: rgba(31, 94, 96, 0.28);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

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

@media (max-width: 1120px) {
  body.cart-open {
    overflow: hidden;
  }

  .site-shell {
    grid-template-columns: 1fr;
  }

  .topbar,
  .navbar,
  main {
    grid-column: 1;
    grid-row: auto;
  }

  .navbar {
    margin-top: -4px;
    border-radius: 22px;
  }

  body.nav-open .navbar,
  .navbar.is-open {
    max-height: min(72dvh, 760px);
    padding: 16px;
  }

  .hero,
  .checkout-shell,
  .about-shell,
  .collection-landing-hero,
  .product-detail-shell,
  .product-detail-specs,
  .product-detail-trust,
  .bomboniere-landing-hero,
  .bomboniere-story-block,
  .bomboniere-request-block,
  .bomboniere-bottom-cta,
  .collection-bottom-cta,
  .site-footer,
  .collection-story-block,
  .editor-grid,
  .editor-insights-grid,
  .editor-management-grid,
  .bomboniere-section,
  .atelier-section,
  .story-section,
  .cta-section,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ribbon-band,
  .product-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-variant-list {
    grid-template-columns: 1fr;
  }

  .editor-collection-toolbar,
  .editor-product-header,
  .collection-subcategory-bar {
    align-items: stretch;
  }

  .signature-grid,
  .bomboniere-collections-grid,
  .story-points {
    grid-template-columns: 1fr;
  }

  .collection-guides-grid {
    grid-template-columns: 1fr;
  }

  .editor-priority-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .collection-family-editorial-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-grid,
  .trust-band,
  .checkout-shell,
  .product-detail-specs,
  .product-detail-trust,
  .product-detail-service-strip,
  .bomboniere-commercial-grid,
  .bomboniere-packages,
  .bomboniere-project-examples,
  .bomboniere-guides {
    grid-template-columns: 1fr;
  }

  .editor-products-grid {
    grid-template-columns: 1fr;
  }

  .editor-product-content-grid {
    grid-template-columns: 1fr;
  }

  .editor-topbar {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }

  .editor-preview-head {
    grid-template-columns: 1fr;
  }

  .collection-search-bar {
    align-items: stretch;
  }

  .collection-filter-panel {
    grid-template-columns: 1fr;
  }

  .bomboniere-landing-visual {
    min-height: 520px;
  }

  .hero-stage {
    min-height: auto;
    max-width: none;
  }

  .hero::after {
    bottom: -6px;
    font-size: clamp(6.5rem, 16vw, 10rem);
  }
}

@media (max-width: 760px) {
  body {
    background-size: cover, cover, auto, auto, auto;
    background-position: center, center top, center, center, center;
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }

  .home-page main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .home-page .collection-section {
    order: 1;
  }

  .home-page .atelier-section {
    order: 2;
  }

  .home-page .bomboniere-section {
    order: 3;
  }

  .product-meta {
    align-items: flex-start;
  }

  .product-meta-actions {
    width: 100%;
  }

  .product-meta-actions .secondary-button,
  .product-meta-actions .primary-button {
    flex: 1 1 100%;
  }

  .product-page main {
    padding-bottom: 118px;
  }

  .site-shell {
    width: min(calc(100vw - 12px), 100%);
    margin: 10px auto 24px;
    gap: 12px;
  }

  .topbar,
  .hero-actions,
  .collection-bottom-actions,
  .product-detail-actions,
  .editor-topbar,
  .editor-actions,
  .editor-toolbar,
  .editor-toolbar-actions,
  .editor-preview-actions,
  .editor-preview-switch,
  .editor-preview-links,
  .editor-quicknav,
  .editor-toolbar-meta,
  .editor-products-stats,
  .cta-section,
  .booking-actions,
  .collection-price-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .navbar {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: -2px;
    padding-inline: 14px;
    border-radius: 20px;
  }

  body.nav-open .navbar,
  .navbar.is-open {
    max-height: min(70dvh, 700px);
    padding: 14px;
  }

  .navbar-mobile-head {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .topbar,
  .hero,
  .checkout-page,
  .collection-landing-hero,
  .product-detail-page,
  .bomboniere-landing-hero,
  .bomboniere-collections-block,
  .bomboniere-story-block,
  .bomboniere-request-block,
  .bomboniere-bottom-cta,
  .site-footer,
  .collection-story-block,
  .collection-bottom-cta,
  .editor-topbar,
  .editor-toolbar-card,
  .editor-preview-card,
  .editor-card,
  .ribbon-band,
  .signature-section,
  .bomboniere-section,
  .collection-section,
  .atelier-section,
  .story-section,
  .experience-section,
  .cta-section {
    padding: 18px;
    border-radius: 22px;
  }

  .collection-filter-reset {
    min-height: 52px;
  }

  .topbar p,
  .section-heading p,
  .collection-preview-note,
  .form-note,
  .product-detail-description,
  .product-detail-note p,
  .product-detail-service-strip p,
  .product-detail-trust p {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .topbar p {
    line-height: 1.55;
  }

  .topbar-actions .ghost-button,
  .hero-actions a,
  .collection-section-actions a,
  .booking-actions a,
  .booking-actions button,
  .product-detail-actions a,
  .product-detail-actions button {
    min-height: 54px;
    justify-content: center;
  }

  .topbar-actions > a.ghost-button,
  .topbar-actions > #open-cart-top {
    display: none;
  }

  .topbar-actions > .menu-button {
    min-width: 112px;
    min-height: 50px;
  }


  .brand-logo-frame {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a,
  .nav-group-toggle {
    padding: 11px 12px;
    border-radius: 16px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 18px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics article,
  .stage-note,
  .home-path-highlights article,
  .bomboniere-commercial-grid article,
  .bomboniere-packages article,
  .product-detail-service-strip article,
  .product-detail-trust article {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .product-body {
    padding: 18px;
    gap: 14px;
  }

  .product-detail-sales-points {
    grid-template-columns: 1fr;
  }

  .product-topline,
  .product-meta {
    gap: 12px;
  }

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

  .hero h1,
  .collection-landing-copy h1,
  .product-detail-copy h1,
  .bomboniere-landing-copy h1,
  .bomboniere-request-copy h2,
  .bomboniere-bottom-cta h2,
  .collection-bottom-cta h2,
  .bomboniere-story-copy h2,
  .editor-topbar h1,
  .editor-preview-copy h2,
  .section-heading h2,
  .atelier-copy h2,
  .story-panel h2,
  .cta-section h2,
  .booking-heading h3 {
    font-size: 2.7rem;
  }

  .atelier-section {
    scroll-margin-top: 90px;
  }

  .hero-brand-signature {
    width: 100%;
    padding: 14px;
    border-radius: 24px;
  }

  .hero-brand-note {
    font-size: 0.95rem;
  }

  .bomboniere-landing-actions,
  .bomboniere-bottom-cta,
  .bomboniere-landing-metrics {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .bomboniere-logo-panel {
    inset: 0 0 112px 0;
  }

  .bomboniere-brush-panel {
    left: 0;
    right: 120px;
  }

  .bomboniere-floating-note {
    width: 180px;
    padding: 16px;
  }

  .hero-stage {
    min-height: auto;
    max-width: none;
  }

  .hero-stage-paths {
    max-width: none;
  }

  .home-paths-panel {
    gap: 10px;
  }

  .home-path-tile {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .home-path-image {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }

  .home-path-copy strong {
    font-size: 1.9rem;
  }

  .collection-preview-carousel {
    width: 100%;
    margin-right: 0;
    padding: 16px 44px;
    border-radius: 24px;
    overflow: hidden;
  }

  .collection-preview-marquee-card {
    width: min(250px, calc(100vw - 120px));
    flex-basis: min(250px, calc(100vw - 120px));
  }

  .collection-preview-arrow {
    width: 40px;
    height: 40px;
  }

  .collection-preview-arrow-prev {
    left: 10px;
  }

  .collection-preview-arrow-next {
    right: 10px;
  }

  .collection-landing-visual {
    min-height: 420px;
  }

  .editor-preview-frame {
    height: 620px;
  }

  .product-detail-visual {
    min-height: 420px;
  }

  .product-detail-arrow {
    width: 48px;
    height: 48px;
  }

  .product-card-arrow {
    width: 42px;
    height: 42px;
  }

  .product-card-image-count {
    top: 12px;
    right: 12px;
    min-width: 48px;
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .product-lightbox {
    padding: 16px;
  }

  .product-lightbox-dialog {
    width: min(100vw - 24px, 100%);
    padding: 16px;
    border-radius: 24px;
  }

  .product-sticky-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 29;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(20px);
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 251, 250, 0.9)),
      linear-gradient(135deg, rgba(89, 174, 165, 0.08), rgba(210, 165, 58, 0.08));
    box-shadow: 0 22px 48px rgba(12, 19, 27, 0.18);
  }

  .product-sticky-meta {
    display: grid;
    gap: 4px;
  }

  .product-sticky-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
  }

  .product-sticky-meta strong {
    font-size: 1.55rem;
    color: var(--accent);
    line-height: 1;
  }

  .product-sticky-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .product-sticky-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 10px;
  }

  .product-sticky-actions .primary-button,
  .product-sticky-actions .ghost-button {
    min-height: 52px;
    justify-content: center;
    padding-inline: 16px;
  }

  .product-lightbox-stage,
  .product-lightbox-visual {
    min-height: 58vh;
  }

  .product-lightbox-arrow {
    width: 50px;
    height: 50px;
  }

  .product-similar-grid {
    grid-template-columns: 1fr;
  }

  .collection-visual-panel {
    inset: 0 0 84px 0;
    padding: 24px;
  }

  .collection-floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .collection-logo-band {
    position: static;
    width: 100%;
    height: 120px;
    margin-top: 14px;
  }

  .stage-main {
    min-height: 340px;
  }

  .stage-notes {
    grid-template-columns: 1fr;
  }

  .stage-note strong {
    font-size: 1.35rem;
  }

  .brand-logo {
    width: 156px;
  }

  .about-photo-card img {
    min-height: 280px;
    object-position: center;
  }

  .ribbon-band,
  .bomboniere-landing-pills,
  .collection-pill-list,
  .bomboniere-signature-band,
  .editor-form-grid,
  .bomboniere-grid,
  .product-grid,
  .collection-guides-grid,
  .experience-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .editor-product-card,
  .editor-product-fields,
  .editor-product-content-grid {
    grid-template-columns: 1fr;
  }

  .collection-section-actions,
  .collection-subcategory-bar,
  .collection-search-bar,
  .product-variants-head,
  .editor-block-heading,
  .editor-inline-actions,
  .editor-collection-toolbar,
  .editor-product-header,
  .editor-product-actions,
  .product-pagination,
  .product-meta-actions,
  .product-similar-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .editor-variant-row,
  .editor-color-row,
  .editor-image-card,
  .editor-color-image-card,
  .editor-background-row {
    grid-template-columns: 1fr;
  }

  .editor-visual-preview,
  .editor-image-preview-card,
  .editor-color-image-preview,
  .editor-background-preview {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .hero::after {
    content: none;
  }
}

/* ═══════════════════════════════════════════════════════
   FLUID TYPOGRAPHY OVERRIDES
   Applied after all component rules — overrides fixed
   font-size values with the fluid custom properties
   defined in :root at the top of this file.
   ═══════════════════════════════════════════════════════ */

/* ── Headings ── */
.about-closing-note strong,
.about-team-grid strong,
.signature-card h3,
.home-path-copy strong,
.stage-note strong,
.stage-main strong,
.story-panel h2,
.bomboniere-section h2,
.bomboniere-landing-hero h1,
.bomboniere-request-block h2,
.bomboniere-grid strong,
.collection-section h2,
.collection-story-block h2,
.collection-bottom-cta h2,
.collection-hero h1,
.atelier-section h2,
.story-section h2,
.experience-section h2,
.cta-section h2,
.cta-section h3,
.signature-section h2,
.product-card-title,
.product-detail-title,
.checkout-heading,
.cart-section-heading,
.product-similar-title { font-size: var(--fs-h2); line-height: 0.94; }

.signature-card h3,
.bomboniere-grid strong,
.story-points strong,
.experience-grid strong,
.atelier-steps strong,
.product-card-title,
.cart-section-heading,
.checkout-heading { font-size: var(--fs-h3); }

/* ── Stats & large numbers ── */
.hero-metric strong,
.product-detail-price-main,
.checkout-grand-total-amount { font-size: var(--fs-stat); }

/* ── Card / small headings ── */
.about-team-grid strong,
.atelier-steps strong,
.experience-grid strong,
.bomboniere-grid strong { font-size: var(--fs-h4); }

/* ── Body text ── */
.hero-text,
.hero-brand-note,
.story-panel p,
.atelier-copy p,
.signature-card p,
.bomboniere-copy p,
.experience-grid p,
.cta-section p { font-size: var(--fs-lead); }

/* ── Product price supporting text ── */
.product-card-price,
.product-detail-price-note,
.cart-item-price { font-size: var(--fs-sm); }

/* ── Eyebrows — already handled by .eyebrow rule above ── */
