/* ========== TOKENS ========== */
:root {
  --oh-warm-white: #FFFCFA;
  --oh-cream: #FAF6F2;
  --oh-blush: #F0E6DF;
  --oh-nude: #E8D5C8;
  --oh-rose: #C9906F;
  --oh-copper: #A0674A;
  --oh-bronze: #7A4A30;
  --oh-dark: #3D2214;
  --oh-taupe: #B89C8A;
  --oh-muted: #9B7A68;

  --oh-success: #4CAF88;
  --oh-success-bg: #E8F3EE;
  --oh-alert: #E07B5A;
  --oh-alert-bg: #FBE9E2;
  --oh-info: #6F8FA8;
  --oh-info-bg: #E5EDF2;

  --oh-r-sm: 4px;
  --oh-r-md: 8px;
  --oh-r-lg: 16px;
  --oh-r-xl: 24px;
  --oh-r-pill: 100px;

  --oh-sh-xs: 0 1px 2px rgba(122,74,48,0.04);
  --oh-sh-sm: 0 2px 8px rgba(122,74,48,0.08);
  --oh-sh-md: 0 4px 16px rgba(122,74,48,0.12);
  --oh-sh-lg: 0 12px 32px rgba(122,74,48,0.16);

  --oh-sp-1: 4px;
  --oh-sp-2: 8px;
  --oh-sp-3: 12px;
  --oh-sp-4: 16px;
  --oh-sp-5: 24px;
  --oh-sp-6: 32px;
  --oh-sp-7: 48px;
  --oh-sp-8: 64px;
  --oh-sp-9: 96px;

  --oh-transition: all 0.25s ease;
  --oh-container: 1200px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--oh-dark);
  background: var(--oh-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible {
  outline: 2px solid var(--oh-copper);
  outline-offset: 3px;
  border-radius: var(--oh-r-sm);
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--oh-dark); color: var(--oh-warm-white);
  padding: 12px 18px; z-index: 1000; border-radius: 0 0 var(--oh-r-md) 0;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--oh-container);
  margin: 0 auto;
  padding: 0 var(--oh-sp-5);
}
section { padding: var(--oh-sp-8) 0; }

/* ========== TYPE ========== */
.t-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--oh-dark);
}
.t-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  color: var(--oh-dark);
}
.t-h3-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--oh-copper);
  line-height: 1.3;
}
.t-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oh-copper);
}
.t-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--oh-dark);
}
.t-body-sm {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--oh-muted);
}
.t-caption {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--oh-muted);
  letter-spacing: 0.06em;
}
.t-mini {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oh-taupe);
}

.section-eyebrow-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--oh-sp-3);
  margin-bottom: var(--oh-sp-7);
}
.section-eyebrow-row .t-h3-italic,
.section-eyebrow-row .t-body-sm { max-width: 540px; }

/* ========== BUTTONS ========== */
.btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--oh-r-pill);
  cursor: pointer;
  transition: var(--oh-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 13px 30px;
  text-align: center;
}
.btn .icon { width: 16px; height: 16px; }
.btn-primary {
  background: var(--oh-copper);
  color: var(--oh-warm-white);
  border: 1px solid var(--oh-copper);
}
.btn-primary:hover {
  background: var(--oh-bronze);
  border-color: var(--oh-bronze);
  transform: translateY(-1px);
  box-shadow: var(--oh-sh-md);
}
.btn-secondary {
  background: var(--oh-dark);
  color: var(--oh-blush);
  border: 1px solid var(--oh-dark);
}
.btn-secondary:hover {
  background: #2A1709;
  transform: translateY(-1px);
  box-shadow: var(--oh-sh-md);
}
.btn-outline {
  background: transparent;
  color: var(--oh-copper);
  border: 1px solid var(--oh-rose);
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--oh-blush);
  color: var(--oh-bronze);
}
.btn-ghost {
  background: transparent;
  color: var(--oh-bronze);
  border: none;
  padding: 12px 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--oh-nude);
  letter-spacing: 0.1em;
  min-height: 44px;
}
.btn-ghost:hover {
  color: var(--oh-copper);
  text-decoration-color: var(--oh-copper);
}
.btn-lg { padding: 17px 38px; font-size: 13px; min-height: 52px; }
.btn-sm { padding: 10px 22px; font-size: 11px; min-height: 44px; }
.btn-icon-only {
  width: 44px; height: 44px; min-height: 44px;
  border-radius: 50%;
  background: var(--oh-warm-white);
  border: 1px solid var(--oh-nude);
  color: var(--oh-bronze);
  padding: 0;
}
.btn-icon-only .icon { width: 18px; height: 18px; }
.btn-icon-only:hover { background: var(--oh-blush); border-color: var(--oh-rose); }

/* ========== NAVBAR ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 0.5px solid var(--oh-nude);
  transition: var(--oh-transition);
}
.site-header.is-scrolled { box-shadow: var(--oh-sh-sm); }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--oh-sp-4) 0;
  gap: var(--oh-sp-4);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--oh-dark);
  font-weight: 500;
  line-height: 1;
}
.navbar-brand em {
  font-style: italic;
  color: var(--oh-copper);
  font-weight: 400;
}
.navbar-links {
  display: flex;
  gap: var(--oh-sp-5);
  align-items: center;
}
.navbar-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-muted);
  transition: color 0.2s;
  font-weight: 400;
  padding: 12px 4px;
  position: relative;
}
.navbar-link:hover, .navbar-link.active, .navbar-link:focus-visible { color: var(--oh-copper); }
.navbar-link.active::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 6px;
  height: 1px; background: var(--oh-copper);
}
.navbar-cart {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
}
.navbar-toggle { display: none; }
.navbar-toggle .icon { width: 22px; height: 22px; }

/* ========== HERO — Full-bleed video ========== */
.hero {
  position: relative;
  min-height: 88vh;
  padding: var(--oh-sp-9) 0 var(--oh-sp-8);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--oh-dark);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(61, 34, 20, 0.78) 0%,
      rgba(61, 34, 20, 0.55) 45%,
      rgba(61, 34, 20, 0.28) 75%,
      rgba(61, 34, 20, 0.12) 100%),
    linear-gradient(to top,
      rgba(61, 34, 20, 0.45) 0%,
      rgba(61, 34, 20, 0) 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 640px;
  color: var(--oh-warm-white);
}
.hero-content > * + * { margin-top: var(--oh-sp-4); }
.hero-title { margin-top: var(--oh-sp-3); }
.hero-italic { margin-top: var(--oh-sp-2); }
.hero-body { max-width: 540px; }

.hero .t-eyebrow { color: var(--oh-rose); }
.hero .t-h1 { color: var(--oh-warm-white); text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero .t-h3-italic { color: var(--oh-nude); }
.hero .t-body { color: var(--oh-blush); }
.hero .t-caption { color: var(--oh-nude); }

.hero-ctas {
  display: flex;
  gap: var(--oh-sp-3);
  flex-wrap: wrap;
  margin-top: var(--oh-sp-5);
}
.hero-trust {
  display: flex;
  gap: var(--oh-sp-5);
  margin-top: var(--oh-sp-6);
  padding-top: var(--oh-sp-5);
  border-top: 0.5px solid rgba(232, 213, 200, 0.22);
  flex-wrap: wrap;
}
.hero-trust-item strong {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-rose);
  margin-bottom: 4px;
  font-weight: 500;
}
.hero-trust-item span {
  font-size: 12px;
  color: var(--oh-warm-white);
}

.hero .btn-outline {
  color: var(--oh-warm-white);
  border-color: rgba(255, 252, 250, 0.6);
  background: rgba(255, 252, 250, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn-outline:hover {
  background: var(--oh-warm-white);
  color: var(--oh-dark);
  border-color: var(--oh-warm-white);
}

.hero-badge {
  position: absolute;
  top: var(--oh-sp-6);
  right: var(--oh-sp-5);
  z-index: 2;
  background: var(--oh-copper);
  color: var(--oh-warm-white);
  padding: 8px 18px;
  border-radius: var(--oh-r-pill);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--oh-sh-md);
}
.hero-scroll {
  position: absolute;
  bottom: var(--oh-sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--oh-blush);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
  text-decoration: none;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 28px;
  background: currentColor;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .hero-bg video { display: none; }
}

/* ========== PAGE HERO (corporate / about — smaller than main hero) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--oh-cream) 0%, var(--oh-blush) 100%);
  padding: var(--oh-sp-9) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border: 1px solid rgba(160,103,74,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.page-hero-content > * + * { margin-top: var(--oh-sp-4); }

/* ========== OCCASIONS ========== */
.occasions { background: var(--oh-cream); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--oh-sp-4);
}
.card-occasion {
  background: var(--oh-warm-white);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--oh-transition);
  cursor: pointer;
  display: block;
  box-shadow: var(--oh-sh-xs);
}
.card-occasion:hover, .card-occasion:focus-visible {
  border-color: var(--oh-rose);
  transform: translateY(-3px);
  box-shadow: var(--oh-sh-md);
}
.card-occasion-media {
  aspect-ratio: 1/1;
  background: var(--oh-blush);
  position: relative;
  overflow: hidden;
}
.card-occasion-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card-occasion:hover .card-occasion-media img { transform: scale(1.06); }
.card-occasion-svg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--oh-blush) 0%, var(--oh-nude) 100%);
  color: var(--oh-copper);
}
.card-occasion-svg svg { width: 38%; height: 38%; }
.card-occasion-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--oh-bronze);
  font-weight: 500;
  padding: var(--oh-sp-3) var(--oh-sp-2);
  display: block;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--oh-sp-5);
}
.card-product {
  background: var(--oh-warm-white);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  overflow: hidden;
  box-shadow: var(--oh-sh-xs);
  transition: var(--oh-transition);
  display: flex;
  flex-direction: column;
}
.card-product:hover, .card-product:focus-within {
  box-shadow: var(--oh-sh-md);
  transform: translateY(-3px);
  border-color: var(--oh-rose);
}
.card-product-img {
  aspect-ratio: 4/5;
  background: var(--oh-blush);
  position: relative;
  overflow: hidden;
}
.card-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card-product:hover .card-product-img img { transform: scale(1.05); }
.card-product-svg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--oh-blush) 0%, var(--oh-nude) 100%);
  color: var(--oh-copper);
}
.card-product-svg svg { width: 42%; height: 42%; }
.card-product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-copper);
  border: 0.5px solid var(--oh-nude);
  transition: var(--oh-transition);
}
.card-product-fav .icon { width: 18px; height: 18px; }
.card-product-fav:hover, .card-product-fav.is-active {
  background: var(--oh-copper);
  color: var(--oh-warm-white);
  border-color: var(--oh-copper);
}
.card-product-fav.is-active .icon { fill: currentColor; }
.card-product-body {
  padding: var(--oh-sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-copper);
  background: var(--oh-blush);
  border-radius: var(--oh-r-pill);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: var(--oh-sp-3);
  align-self: flex-start;
}
.card-product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--oh-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.card-product-desc {
  font-size: 13px;
  color: var(--oh-muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.card-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--oh-sp-4);
  padding-top: var(--oh-sp-4);
  border-top: 0.5px dashed var(--oh-nude);
}
.card-product-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--oh-bronze);
  line-height: 1;
}
.card-product-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-copper);
  font-weight: 500;
  transition: var(--oh-transition);
}
.card-product-cta:hover { color: var(--oh-bronze); transform: translateX(3px); }

/* ========== FEATURES ========== */
.features { background: var(--oh-cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--oh-sp-5);
}
.card-feature {
  background: var(--oh-warm-white);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  padding: var(--oh-sp-6);
  transition: var(--oh-transition);
}
.card-feature:hover { box-shadow: var(--oh-sh-sm); border-color: var(--oh-rose); }
.card-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--oh-blush);
  color: var(--oh-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--oh-sp-4);
}
.card-feature-icon .icon { width: 24px; height: 24px; }
.card-feature-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--oh-dark);
  font-weight: 500;
  margin-bottom: var(--oh-sp-2);
  line-height: 1.2;
}
.card-feature-desc {
  font-size: 14px;
  color: var(--oh-muted);
  line-height: 1.65;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--oh-sp-5);
}
.card-testimonial {
  background: var(--oh-cream);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  padding: var(--oh-sp-6);
  position: relative;
}
.card-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  color: var(--oh-rose);
  line-height: 1;
}
.card-testimonial-stars {
  color: var(--oh-copper);
  margin-bottom: var(--oh-sp-3);
  display: inline-flex;
  gap: 3px;
}
.card-testimonial-stars .icon { width: 16px; height: 16px; fill: currentColor; }
.card-testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--oh-dark);
  line-height: 1.5;
  margin-bottom: var(--oh-sp-4);
}
.card-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
}
.card-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oh-rose);
  color: var(--oh-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.card-testimonial-name {
  font-size: 13px;
  color: var(--oh-bronze);
  font-weight: 500;
}
.card-testimonial-meta {
  font-size: 11px;
  color: var(--oh-muted);
  letter-spacing: 0.05em;
}

/* ========== ORDER ========== */
.order { background: var(--oh-cream); }
.order-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--oh-sp-7);
  align-items: start;
}
.order-intro p { margin-top: var(--oh-sp-4); }
.alert {
  border-radius: var(--oh-r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
  font-size: 13px;
  border-left: 3px solid;
  margin-top: var(--oh-sp-5);
}
.alert-info {
  background: var(--oh-info-bg);
  color: #3F5D74;
  border-color: var(--oh-info);
}
.alert .icon { width: 18px; height: 18px; flex-shrink: 0; }

.form-card {
  background: var(--oh-warm-white);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  padding: var(--oh-sp-6);
  box-shadow: var(--oh-sh-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--oh-sp-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--oh-sp-4);
}
.field label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-bronze);
}
.field-help { font-size: 10px; color: var(--oh-taupe); margin-top: 2px; }
.field input, .field select, .field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--oh-dark);
  background: var(--oh-warm-white);
  border: 1px solid var(--oh-nude);
  border-radius: var(--oh-r-sm);
  padding: 13px 14px;
  outline: none;
  transition: var(--oh-transition);
  width: 100%;
  min-height: 44px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--oh-taupe); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--oh-rose);
  box-shadow: 0 0 0 3px rgba(201,144,111,0.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder {
  color: var(--oh-taupe);
  font-weight: 300;
  font-style: italic;
}
.field.has-error input, .field.has-error select { border-color: var(--oh-alert); }
.field.has-error .field-help { color: var(--oh-alert); }

.radio-pill-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.radio-pill {
  padding: 10px 18px;
  border: 1px solid var(--oh-nude);
  border-radius: var(--oh-r-pill);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--oh-muted);
  cursor: pointer;
  transition: var(--oh-transition);
  background: var(--oh-warm-white);
  font-family: 'Jost', sans-serif;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.radio-pill:hover { border-color: var(--oh-rose); color: var(--oh-bronze); }
.radio-pill.active, .radio-pill[aria-checked="true"] {
  background: var(--oh-copper);
  color: var(--oh-warm-white);
  border-color: var(--oh-copper);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}
.checkbox-row input {
  accent-color: var(--oh-copper);
  width: 18px; height: 18px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-row label {
  font-size: 13px;
  color: var(--oh-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-submit { margin-top: var(--oh-sp-5); width: 100%; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--oh-dark);
  color: var(--oh-blush);
  padding: var(--oh-sp-8) 0 var(--oh-sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--oh-sp-6);
  margin-bottom: var(--oh-sp-6);
}
.footer-col h2 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-rose);
  margin-bottom: var(--oh-sp-4);
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--oh-blush);
  margin-bottom: var(--oh-sp-2);
  font-weight: 500;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--oh-taupe);
  margin-bottom: var(--oh-sp-4);
}
.footer-contact {
  font-size: 12px;
  color: var(--oh-taupe);
  line-height: 1.9;
  font-style: normal;
}
.footer-contact .icon { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; color: var(--oh-rose); }
.footer-contact a:hover { color: var(--oh-blush); }
.footer-list li { padding: 5px 0; }
.footer-link {
  font-size: 13px;
  color: var(--oh-taupe);
  transition: color 0.2s;
  display: inline-block;
  padding: 3px 0;
}
.footer-link:hover, .footer-link:focus-visible { color: var(--oh-blush); }
.footer-hours {
  font-size: 12px;
  color: var(--oh-taupe);
  line-height: 1.9;
}
.footer-bottom {
  border-top: 0.5px solid rgba(232,213,200,0.15);
  padding-top: var(--oh-sp-4);
  margin-top: var(--oh-sp-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--oh-sp-3);
  font-size: 11px;
  color: var(--oh-taupe);
  letter-spacing: 0.08em;
}
.footer-bottom-links { display: flex; gap: var(--oh-sp-4); }

.footer-ornament {
  text-align: center;
  padding: var(--oh-sp-7) 0 var(--oh-sp-4);
  color: var(--oh-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--oh-sp-3);
}
.footer-ornament .icon { width: 14px; height: 14px; fill: currentColor; }
.footer-ornament-line {
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CONTENT PAGE — about/corporate body ========== */
.content-page section { padding: var(--oh-sp-8) 0; }
.content-block {
  max-width: 720px;
  margin: 0 auto;
}
.content-block > * + * { margin-top: var(--oh-sp-4); }
.content-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.2;
  color: var(--oh-dark);
  margin-top: var(--oh-sp-6);
}
.content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--oh-dark);
}
.content-block p.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--oh-copper);
  line-height: 1.5;
}
.content-block ul {
  margin: var(--oh-sp-4) 0;
  padding-left: 0;
}
.content-block ul li {
  font-size: 15px;
  color: var(--oh-dark);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
}
.content-block ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--oh-rose);
  font-size: 10px;
}

.content-cta {
  text-align: center;
  background: var(--oh-cream);
  padding: var(--oh-sp-8) var(--oh-sp-5);
}
.content-cta-inner > * + * { margin-top: var(--oh-sp-4); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { gap: var(--oh-sp-6); }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--oh-sp-4); }
  .order-grid { grid-template-columns: 1fr; gap: var(--oh-sp-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--oh-sp-5); }
}

@media (max-width: 768px) {
  section { padding: var(--oh-sp-7) 0; }
  .container { padding: 0 var(--oh-sp-4); }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--oh-warm-white);
    padding: var(--oh-sp-4) var(--oh-sp-5) var(--oh-sp-5);
    gap: 0;
    border-bottom: 0.5px solid var(--oh-nude);
    box-shadow: var(--oh-sh-md);
  }
  .navbar-links.is-open { display: flex; }
  .navbar-link {
    padding: 14px 0;
    border-bottom: 0.5px solid var(--oh-nude);
    width: 100%;
    font-size: 13px;
  }
  .navbar-link:last-child { border-bottom: none; }
  .navbar-link.active::after { display: none; }
  .navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--oh-r-md);
    color: var(--oh-bronze);
  }
  .navbar-toggle:hover { background: var(--oh-blush); }
  .navbar-cart .btn-icon-only:nth-child(1) { display: none; }
  .navbar-cart .btn-sm { display: none; }

  .hero {
    min-height: 92vh;
    padding: var(--oh-sp-8) 0 var(--oh-sp-7);
  }
  .hero-content { max-width: 100%; }
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(61, 34, 20, 0.35) 0%,
        rgba(61, 34, 20, 0.55) 45%,
        rgba(61, 34, 20, 0.82) 100%);
  }
  .hero-badge {
    top: var(--oh-sp-5);
    right: var(--oh-sp-4);
    font-size: 9px;
    padding: 6px 14px;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: var(--oh-sp-4); }
  .hero-scroll { display: none; }

  .page-hero { padding: var(--oh-sp-7) 0; }

  .section-eyebrow-row { margin-bottom: var(--oh-sp-6); }

  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; gap: var(--oh-sp-4); }
  .features-grid { grid-template-columns: 1fr; gap: var(--oh-sp-4); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: var(--oh-sp-5); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--oh-sp-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: var(--oh-sp-3); }
  .card-feature, .card-testimonial { padding: var(--oh-sp-5); }
}

@media print {
  .site-header, .navbar-toggle, .hero-ctas, .promo-bar { display: none; }
}

/* ========== PROMO BAR (EOFY) ========== */
.promo-bar {
  background: var(--oh-dark);
  color: var(--oh-warm-white);
  padding: 11px 0;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 252, 250, 0.08);
}
.promo-bar.is-dismissed { display: none; }
.promo-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--oh-sp-3);
  position: relative;
}
.promo-bar-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--oh-blush);
  text-align: center;
  margin: 0;
  padding: 0 var(--oh-sp-7);
}
.promo-bar-text strong {
  color: var(--oh-warm-white);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.promo-bar-sep {
  margin: 0 var(--oh-sp-2);
  color: var(--oh-rose);
  opacity: 0.6;
}
.promo-bar-link {
  color: var(--oh-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 144, 111, 0.4);
  transition: var(--oh-transition);
  font-weight: 500;
}
.promo-bar-link:hover,
.promo-bar-link:focus-visible {
  color: var(--oh-warm-white);
  text-decoration-color: var(--oh-warm-white);
}
.promo-bar-close {
  position: absolute;
  right: var(--oh-sp-3);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-blush);
  opacity: 0.65;
  transition: var(--oh-transition);
}
.promo-bar-close:hover,
.promo-bar-close:focus-visible {
  opacity: 1;
  background: rgba(255, 252, 250, 0.08);
}
.promo-bar-close svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .promo-bar { padding: 9px 0; }
  .promo-bar-text { font-size: 11px; padding: 0 var(--oh-sp-6) 0 var(--oh-sp-3); }
  .promo-bar-text strong { font-size: 10px; }
  .promo-bar-mobile-hide { display: none; }
  .promo-bar-close { right: var(--oh-sp-1); width: 28px; height: 28px; }
}

/* ========== EOFY RIBBON on product card ========== */
.card-product-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--oh-dark);
  color: var(--oh-warm-white);
  padding: 6px 14px;
  border-radius: var(--oh-r-pill);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--oh-sh-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.card-product-ribbon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oh-rose);
  flex-shrink: 0;
  animation: ribbonPulse 2.4s ease-in-out infinite;
}
@keyframes ribbonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--oh-warm-white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--oh-sp-5);
  margin-bottom: var(--oh-sp-7);
}
.how-step {
  position: relative;
  text-align: center;
  padding: var(--oh-sp-5) var(--oh-sp-3);
}
.how-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--oh-rose);
  line-height: 1;
  display: block;
  margin-bottom: var(--oh-sp-3);
  opacity: 0.6;
}
.how-step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--oh-dark);
  margin-bottom: 8px;
}
.how-step-desc {
  font-size: 13px;
  color: var(--oh-muted);
  line-height: 1.65;
}
.how-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: var(--oh-sp-6);
  color: var(--oh-nude);
  font-size: 22px;
}

/* ========== DELIVERY ZONES ========== */
.delivery-zones {
  background: var(--oh-cream);
  border: 0.5px solid var(--oh-nude);
  border-radius: var(--oh-r-lg);
  padding: var(--oh-sp-6);
  max-width: 880px;
  margin: 0 auto;
}
.delivery-zones h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--oh-dark);
  text-align: center;
  margin-bottom: var(--oh-sp-2);
}
.delivery-zones-sub {
  text-align: center;
  font-size: 14px;
  color: var(--oh-copper);
  margin-bottom: var(--oh-sp-5);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.zones-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Jost', sans-serif;
}
.zones-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oh-bronze);
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--oh-nude);
}
.zones-table th:nth-child(2), .zones-table th:nth-child(3) { text-align: right; }
.zones-table td {
  padding: 14px;
  font-size: 13px;
  color: var(--oh-dark);
  border-bottom: 0.5px solid var(--oh-nude);
  vertical-align: top;
}
.zones-table td:nth-child(2), .zones-table td:nth-child(3) {
  text-align: right;
  font-weight: 500;
  color: var(--oh-bronze);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}
.zones-table tr:last-child td { border-bottom: none; }
.zones-table tr:last-child td:nth-child(2),
.zones-table tr:last-child td:nth-child(3) {
  font-style: italic;
  color: var(--oh-muted);
  font-size: 13px;
  font-family: 'Jost', sans-serif;
}
.zones-zone {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--oh-bronze);
  display: block;
}
.zones-suburbs {
  font-size: 11px;
  color: var(--oh-muted);
  display: block;
  margin-top: 3px;
  font-weight: 300;
  line-height: 1.4;
}
.zones-callout {
  margin-top: var(--oh-sp-5);
  padding: var(--oh-sp-4);
  background: var(--oh-blush);
  border-radius: var(--oh-r-md);
  font-size: 14px;
  color: var(--oh-bronze);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.zones-callout strong { font-weight: 500; font-style: normal; letter-spacing: 0.02em; }

/* ========== OPTIONAL FIELD HINT + DATE ========== */
.field-optional {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-style: italic;
  color: var(--oh-taupe);
  font-weight: 400;
  margin-left: 6px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.field input[type="date"] {
  font-family: 'Jost', sans-serif;
  color: var(--oh-dark);
  color-scheme: light;
}
.field input[type="date"]:invalid,
.field input[type="date"]:placeholder-shown { color: var(--oh-taupe); }

/* ========== DELIVERY ESTIMATE (live in form) ========== */
.delivery-estimate {
  margin-top: var(--oh-sp-3);
  padding: 14px 16px;
  background: var(--oh-blush);
  border-radius: var(--oh-r-md);
  border-left: 3px solid var(--oh-copper);
  font-size: 13px;
  color: var(--oh-bronze);
  display: none;
  animation: estimateFadeIn 0.35s ease-out;
}
.delivery-estimate.is-visible { display: block; }
.delivery-estimate.is-custom {
  background: var(--oh-cream);
  border-left-color: var(--oh-info);
}
.delivery-estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--oh-sp-3);
  flex-wrap: wrap;
}
.delivery-estimate-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-muted);
  font-weight: 500;
}
.delivery-estimate-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--oh-bronze);
  line-height: 1;
}
.delivery-estimate-zone {
  font-size: 11px;
  color: var(--oh-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 6px;
  display: block;
}
.delivery-estimate-hint {
  font-size: 11px;
  color: var(--oh-copper);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 0.5px dashed rgba(160, 103, 74, 0.25);
  display: block;
}
@keyframes estimateFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== TRUST MICROCOPY UNDER SUBMIT ========== */
.form-submit-trust {
  margin-top: var(--oh-sp-3);
  text-align: center;
  font-size: 11px;
  color: var(--oh-muted);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.form-submit-trust svg { width: 12px; height: 12px; color: var(--oh-success); flex-shrink: 0; }

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: var(--oh-sp-4); }
  .how-step:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; gap: var(--oh-sp-3); }
  .how-step::after { display: none !important; }
  .how-step { padding: var(--oh-sp-4) var(--oh-sp-3); }
  .how-step-num { font-size: 38px; }
  .delivery-zones { padding: var(--oh-sp-4); }
  .zones-table th, .zones-table td { padding: 10px 8px; font-size: 12px; }
  .zones-table td:nth-child(2), .zones-table td:nth-child(3) { font-size: 15px; }
  .zones-zone { font-size: 14px; }
  .zones-suburbs { font-size: 10px; }
}

/* ========== EOFY visibility gate ==========
   Default state (no html.eofy-active class): page renders as non-EOFY.
   JS adds .eofy-active when inside EOFY_START..EOFY_END window. */
html:not(.eofy-active) .promo-bar,
html:not(.eofy-active) .card-product-ribbon,
html:not(.eofy-active) .eofy-copy { display: none !important; }
.default-copy { display: inline; }
html.eofy-active .default-copy { display: none; }


/* Selected hamper banner inside form */
.selected-hamper {
  background: var(--oh-blush);
  border-left: 3px solid var(--oh-copper);
  border-radius: var(--oh-r-md);
  padding: 14px 18px;
  margin-bottom: var(--oh-sp-4);
}
.selected-hamper[hidden] { display: none; }
.selected-hamper-row {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
  flex-wrap: wrap;
}
.selected-hamper-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-muted);
  font-weight: 500;
}
.selected-hamper-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--oh-bronze);
  flex: 1;
}
.selected-hamper-clear {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-bronze);
  font-size: 16px;
  line-height: 1;
  transition: var(--oh-transition);
}
.selected-hamper-clear:hover { background: var(--oh-warm-white); }
.selected-hamper-customisations {
  margin-top: 8px;
  font-size: 12px;
  color: var(--oh-muted);
  padding-top: 8px;
  border-top: 0.5px dashed rgba(160, 103, 74, 0.25);
}
.selected-hamper-customisations[hidden] { display: none; }
.customisation-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oh-bronze);
  font-weight: 500;
  margin-right: 6px;
}


/* ========== PRODUCT DETAIL PAGE ========== */
.product-page {
  background: var(--oh-warm-white);
  padding: var(--oh-sp-7) 0 var(--oh-sp-9);
}
.back-link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oh-muted);
  margin-bottom: var(--oh-sp-6);
  display: inline-block;
  transition: var(--oh-transition);
}
.back-link:hover, .back-link:focus-visible { color: var(--oh-copper); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--oh-sp-8);
  align-items: start;
}
.product-images-col {
  position: sticky;
  top: 100px;
}
.product-main-image {
  aspect-ratio: 4/5;
  border-radius: var(--oh-r-lg);
  overflow: hidden;
  background: var(--oh-cream);
  box-shadow: var(--oh-sh-md);
  position: relative;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-main-image:hover img { transform: scale(1.03); }
.product-thumbnails {
  display: flex;
  gap: var(--oh-sp-2);
  margin-top: var(--oh-sp-3);
  flex-wrap: wrap;
}
.product-thumbnail {
  width: 72px;
  height: 72px;
  border-radius: var(--oh-r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--oh-nude);
  opacity: 0.55;
  transition: var(--oh-transition);
  background: var(--oh-cream);
}
.product-thumbnail.is-active, .product-thumbnail:hover {
  opacity: 1;
  border-color: var(--oh-copper);
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbnail.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-taupe);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  cursor: default;
}
.product-thumbnail.is-placeholder:hover { opacity: 0.55; border-color: var(--oh-nude); }

.product-info > * + * { margin-top: var(--oh-sp-4); }
.product-info .t-h1 { font-size: clamp(28px, 4.5vw, 42px); margin-top: var(--oh-sp-2); }
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: var(--oh-sp-2);
  margin-top: var(--oh-sp-3);
}
.product-price-from {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-muted);
  font-weight: 500;
}
.product-price-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--oh-bronze);
  line-height: 1;
}
.product-section {
  margin-top: var(--oh-sp-6);
  padding-top: var(--oh-sp-6);
  border-top: 0.5px solid var(--oh-nude);
}
.product-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--oh-dark);
  margin-bottom: 4px;
}
.product-section-sub {
  font-size: 13px;
  color: var(--oh-copper);
  margin-bottom: var(--oh-sp-3);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.product-items-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-item {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
  padding: 12px 14px;
  border-radius: var(--oh-r-sm);
  background: var(--oh-cream);
  border: 0.5px solid var(--oh-nude);
  transition: var(--oh-transition);
  cursor: pointer;
}
.product-item:hover { border-color: var(--oh-rose); }
.product-item input[type="checkbox"] {
  accent-color: var(--oh-copper);
  width: 18px; height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.product-item label {
  font-size: 14px;
  color: var(--oh-dark);
  cursor: pointer;
  flex: 1;
  line-height: 1.4;
}
.product-item.is-removed { opacity: 0.55; }
.product-item.is-removed label {
  text-decoration: line-through;
  color: var(--oh-taupe);
}
.product-additions-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--oh-dark);
  background: var(--oh-warm-white);
  border: 1px solid var(--oh-nude);
  border-radius: var(--oh-r-sm);
  padding: 12px 14px;
  width: 100%;
  min-height: 88px;
  resize: vertical;
  outline: none;
  transition: var(--oh-transition);
}
.product-additions-field textarea::placeholder {
  color: var(--oh-taupe);
  font-style: italic;
  font-weight: 300;
}
.product-additions-field textarea:focus {
  border-color: var(--oh-rose);
  box-shadow: 0 0 0 3px rgba(201,144,111,0.15);
}
.product-actions {
  margin-top: var(--oh-sp-6);
  padding-top: var(--oh-sp-6);
  border-top: 0.5px solid var(--oh-nude);
}
.product-actions .btn { width: 100%; }
.product-actions .form-submit-trust { margin-top: var(--oh-sp-3); }

.product-not-found {
  text-align: center;
  padding: var(--oh-sp-9) var(--oh-sp-5);
  max-width: 560px;
  margin: 0 auto;
}
.product-not-found h1 { margin-bottom: var(--oh-sp-3); }
.product-not-found p { margin-bottom: var(--oh-sp-5); }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr; gap: var(--oh-sp-6); }
  .product-images-col {
    position: relative;
    top: auto;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .product-page { padding: var(--oh-sp-5) 0 var(--oh-sp-8); }
  .product-info .t-h1 { font-size: 28px; }
  .product-price-value { font-size: 32px; }
}
