:root {
  --bg: #f5efe5;
  --ink: #182029;
  --muted: #5f666e;
  --panel: rgba(255, 251, 245, 0.84);
  --panel-strong: #fff8ef;
  --line: rgba(24, 32, 41, 0.12);
  --sea: #204b57;
  --sea-deep: #102c33;
  --sand: #d8ab6f;
  --coral: #ca6f47;
  --foam: #dce9e6;
  --shadow: 0 24px 60px rgba(18, 31, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 171, 111, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(32, 75, 87, 0.2), transparent 35%),
    linear-gradient(180deg, #f3e8d7 0%, var(--bg) 50%, #efe5d8 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.hero,
.section,
.cta-section,
.order-section {
  position: relative;
}

.hero {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(246, 237, 224, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 75, 87, 0.2), transparent 70%);
  pointer-events: none;
}

.topbar,
.hero-grid,
.catalog-grid,
.pricing-grid,
.benefits-grid,
.cta-section {
  display: grid;
  gap: 24px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
  margin-top: 72px;
  padding: clamp(24px, 5vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(216, 171, 111, 0.28), transparent 36%),
    linear-gradient(135deg, #143942 0%, #102c33 100%);
  color: #edf5f3;
  box-shadow: var(--shadow);
}

.order-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.97;
}

.order-copy > p:not(.eyebrow) {
  max-width: 46ch;
  margin: 20px 0 0;
  color: rgba(237, 245, 243, 0.78);
  line-height: 1.7;
}

.order-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.order-points li::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 171, 111, 0.24);
  color: #ffe2b4;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.96);
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--sea-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form label span,
.form-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(24, 32, 41, 0.16);
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(202, 111, 71, 0.15);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  line-height: 1.5;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--sea-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 34px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sea) 0%, var(--sand) 100%);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.brand h1,
.section-head h2,
.hero-copy h2,
.cta-section h2,
.product-card h3,
.price-panel h3,
.benefit-card h3,
.spotlight-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
}

.brand h1 {
  font-size: 1.3rem;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.hero-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 26px;
}

.hero-points {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(24, 32, 41, 0.08);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--sea-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.hero-visual {
  position: relative;
}

.spotlight-card,
.product-card,
.price-panel,
.benefit-card,
.cta-section {
  border: 1px solid rgba(24, 32, 41, 0.09);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.spotlight-card {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  margin-left: auto;
  margin-bottom: -32px;
  padding: 22px;
  border-radius: 26px;
}

.spotlight-badge,
.product-tag,
.price-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 75, 87, 0.1);
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-price {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 800;
}

.spotlight-text,
.product-card p,
.price-panel p,
.benefit-card p {
  color: var(--muted);
  line-height: 1.65;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  transform: translateY(30px);
}

.section {
  padding: 72px 0 0;
}

.assistant-section {
  scroll-margin-top: 18px;
}

.assistant-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.assistant-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3b9b67;
  box-shadow: 0 0 0 5px rgba(59, 155, 103, 0.14);
}

.assistant-shell {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(225, 238, 235, 0.95), rgba(255, 248, 239, 0.94));
  box-shadow: var(--shadow);
}

.assistant-chat {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.assistant-message {
  width: fit-content;
  max-width: min(100%, 62ch);
  padding: 14px 16px;
  border-radius: 18px 18px 18px 5px;
  line-height: 1.55;
}

.assistant-message-bot {
  background: #fff;
  border: 1px solid rgba(24, 32, 41, 0.08);
  color: var(--sea-deep);
}

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

.assistant-action {
  padding: 12px 15px;
  border: 1px solid rgba(32, 75, 87, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sea-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.assistant-action:hover,
.assistant-action:focus-visible {
  transform: translateY(-2px);
  background: var(--foam);
}

.assistant-action-primary {
  border-color: var(--sea-deep);
  background: var(--sea-deep);
  color: #fff;
}

.assistant-action-primary:hover,
.assistant-action-primary:focus-visible {
  background: var(--sea);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

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

.product-card,
.price-panel,
.benefit-card {
  padding: 24px;
  border-radius: 28px;
}

.product-card {
  min-height: 220px;
}

.accent-sand {
  background: linear-gradient(180deg, rgba(255, 247, 230, 0.96), rgba(255, 238, 214, 0.86));
}

.accent-blue {
  background: linear-gradient(180deg, rgba(230, 241, 240, 0.96), rgba(216, 233, 230, 0.86));
}

.accent-coral {
  background: linear-gradient(180deg, rgba(252, 234, 224, 0.96), rgba(247, 219, 206, 0.86));
}

.section-dark {
  padding: 32px;
  margin-top: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(216, 171, 111, 0.22), transparent 26%),
    linear-gradient(160deg, #102c33 0%, #183b44 100%);
  color: #edf5f3;
}

.section-dark .eyebrow,
.section-dark .product-card p,
.section-dark .price-panel p,
.section-dark .benefit-card p {
  color: rgba(237, 245, 243, 0.78);
}

.section-dark .price-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.featured {
  transform: translateY(-12px);
  background: linear-gradient(180deg, rgba(216, 171, 111, 0.24), rgba(202, 111, 71, 0.18));
}

.price-panel h3 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.cta-section {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 72px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255, 248, 239, 0.96), rgba(248, 234, 211, 0.96));
}

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

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

.modal-open {
  overflow: hidden;
}

.points-modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.points-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.points-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 25, 29, 0.64);
  backdrop-filter: blur(5px);
}

.points-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 28px;
  background: linear-gradient(145deg, #fffaf2, #ecf3f0);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.points-modal__dialog h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.7rem);
  line-height: 1;
}

.points-modal__intro {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.points-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 32, 41, 0.08);
  color: var(--sea-deep);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

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

.points-loading,
.points-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(32, 75, 87, 0.32);
  border-radius: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.points-empty {
  display: grid;
  gap: 4px;
}

.points-empty strong {
  color: var(--sea-deep);
}

.point-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.point-card h3,
.point-card p {
  margin: 0;
}

.point-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
}

.point-card__address {
  margin-top: 4px !important;
  font-weight: 800;
}

.point-card__schedule,
.point-card__note {
  margin-top: 7px !important;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.point-card a {
  flex: 0 0 auto;
  align-self: center;
  color: var(--sea);
  font-size: 0.86rem;
  font-weight: 800;
}

.points-modal__order {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero-grid,
  .catalog-grid,
  .pricing-grid,
  .benefits-grid,
  .cta-section,
  .order-section {
    grid-template-columns: 1fr;
  }

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

  .topbar-actions {
    justify-content: start;
  }

  .spotlight-card {
    margin: 0 0 18px;
  }

  .image-stack img:first-child {
    transform: none;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-copy h2 {
    max-width: none;
    font-size: 2.5rem;
  }

  .section,
  .section-dark {
    padding-top: 52px;
  }

  .section-dark {
    padding: 22px;
  }

  .assistant-head {
    align-items: start;
    flex-direction: column;
  }

  .assistant-status {
    margin: 0;
  }

  .assistant-action {
    width: 100%;
    text-align: left;
  }

  .cta-section {
    padding: 22px;
  }

  .topbar-actions .button {
    flex: 1 1 160px;
  }

  .point-card {
    display: grid;
  }

  .point-card a {
    align-self: auto;
  }
}

/* Mobile-first storefront reset: one product photo, then its details. */
:root {
  --bg: #0f1211;
  --ink: #f3efe6;
  --muted: #b6b4ac;
  --panel: #171b19;
  --panel-strong: #1d221f;
  --line: rgba(243, 239, 230, 0.14);
  --sea: #b7cdbd;
  --sea-deep: #dce8df;
  --sand: #c9a466;
  --coral: #d39c61;
  --foam: #202722;
  --shadow: none;
}

body {
  background: var(--bg);
}

.page-shell {
  padding: 18px 0 64px;
}

.hero {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero::after {
  display: none;
}

.topbar {
  margin-bottom: 52px;
}

.brand,
.text-link,
.button-secondary,
.button-ghost,
.card-action,
.mini-link {
  color: var(--ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  background: transparent;
  color: var(--sand);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
}

.brand strong,
.hero-copy h1,
.section-head h2,
.product-card h3,
.bundle-card h3,
.delivery-section h2,
.order-copy h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  line-height: 0.98;
}

.hero-text,
.split-head > p,
.product-card p,
.delivery-list span {
  color: var(--muted);
}

.hero-points li,
.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button {
  border-radius: 8px;
  background: var(--sand);
  color: #15130f;
}

.hero-visual {
  min-height: 0;
  padding: 0;
}

.hero-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.hero-feature > img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

.hero-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 46px);
}

.hero-feature-copy > span,
.product-tag {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sand);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.hero-feature-copy h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-feature-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-feature-copy strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-feature-copy .mini-link {
  margin-top: 22px;
  color: var(--sand);
}

.trust-strip {
  margin-top: 34px;
  border-radius: 0;
  background: var(--line);
}

.trust-strip p {
  background: transparent;
  color: var(--ink);
}

.trust-strip strong,
.bundle-card > span {
  color: var(--sand);
}

.section {
  padding-top: 96px;
}

.product-card,
.product-card-featured,
.product-card-sea,
.product-card-amber {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: none;
}

.product-card {
  min-height: 0;
  padding: 20px;
}

.product-image {
  width: calc(100% + 40px);
  height: 240px;
  margin: -20px -20px 20px;
  border-bottom: 1px solid var(--line);
  object-position: center;
}

.product-card h3 {
  color: var(--ink);
  font-size: 1.45rem;
}

.card-footer {
  border-color: var(--line);
  color: var(--ink);
}

.catalog-grid {
  gap: 18px;
}

.section-head h2 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.bundles-section,
.delivery-section,
.assistant-shell {
  border-color: var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: none;
}

.bundles-section {
  padding: clamp(22px, 4vw, 42px);
}

.bundle-card,
.bundle-card-main {
  border-color: var(--line);
  border-radius: 12px;
  background: #1d221f;
  transform: none;
}

.delivery-list,
.assistant-message-bot {
  background: var(--line);
}

.delivery-list p,
.assistant-message-bot {
  background: var(--panel-strong);
  color: var(--ink);
}

.delivery-list b,
.assistant-action {
  color: var(--sea);
}

.order-section {
  border-radius: 16px;
  background: #171b19;
  box-shadow: none;
}

@media (max-width: 640px) {
  .topbar {
    margin-bottom: 36px;
  }

  .hero-grid {
    gap: 32px;
  }

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

  .hero-feature > img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .hero-feature-copy {
    min-height: 238px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .trust-strip {
    display: grid;
    gap: 0;
    border: 0;
  }

  .trust-strip p {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 64px;
  }
}

/* Product-first retail refresh */
.brand {
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.text-link,
.mini-link,
.card-action,
.bundle-card button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.text-link {
  padding: 10px 6px;
  color: var(--sea-deep);
}

.hero-copy h1 {
  max-width: 9.5ch;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.3rem, 6.2vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.hero-actions .button span {
  margin-left: 10px;
  font-size: 1.3em;
}

.hero-visual {
  min-height: 510px;
  padding: 28px 0 0;
}

.hero-image {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-image-main {
  right: 0;
  bottom: 0;
  width: min(78%, 415px);
  height: 390px;
  border-radius: 32px;
  object-position: center;
}

.hero-image-detail {
  left: 0;
  bottom: 28px;
  width: min(42%, 225px);
  height: 245px;
  border: 8px solid #f8f0e5;
  border-radius: 25px;
  object-position: center;
}

.spotlight-card {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 7%;
  width: min(82%, 350px);
  margin: 0;
  background: rgba(255, 250, 243, 0.96);
}

.mini-link {
  margin-top: 6px;
  padding: 6px 0;
  color: var(--sea);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(24, 32, 41, 0.1);
}

.trust-strip p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 17px 20px;
  background: rgba(255, 251, 245, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-strip strong,
.bundle-card > span {
  color: var(--coral);
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.split-head > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.product-image {
  width: calc(100% + 48px);
  height: 170px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid rgba(24, 32, 41, 0.12);
}

.product-card h3,
.bundle-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.product-card-featured {
  background: linear-gradient(145deg, #f7e7cb, #eed19d);
}

.product-card-sea {
  background: linear-gradient(145deg, #dceceb, #b8d7d2);
}

.product-card-amber {
  background: linear-gradient(145deg, #f4dfd2, #e6ae88);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 32, 41, 0.14);
  color: var(--sea-deep);
  font-size: 0.86rem;
}

.card-action {
  color: var(--sea-deep);
  white-space: nowrap;
}

.bundles-section {
  padding: 36px;
  margin-top: 72px;
  border-radius: 34px;
  background: linear-gradient(145deg, #102c33, #1c4d55);
  color: #f8f1e8;
}

.bundles-section .eyebrow {
  color: #f3bd77;
}

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

.bundle-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.bundle-card h3 {
  margin: 14px 0 0;
}

.bundle-card p {
  margin: 12px 0 20px;
  color: rgba(248, 241, 232, 0.76);
  line-height: 1.6;
}

.bundle-card button {
  margin-top: auto;
  padding: 10px 0;
  color: #fff1d7;
  text-align: left;
}

.bundle-card-main {
  background: linear-gradient(150deg, rgba(216, 171, 111, 0.46), rgba(202, 111, 71, 0.3));
  transform: translateY(-10px);
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 38px;
  margin-top: 72px;
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 32px;
  background: rgba(255, 250, 243, 0.85);
  box-shadow: var(--shadow);
}

.delivery-section h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.delivery-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(24, 32, 41, 0.1);
}

.delivery-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  margin: 0;
  padding: 18px;
  background: #fffdf9;
}

.delivery-list b {
  color: var(--sea);
}

.delivery-list span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .trust-strip,
  .bundle-grid,
  .delivery-section,
  .split-head {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .bundle-card-main {
    transform: none;
  }
}

@media (max-width: 640px) {
  .topbar-actions {
    align-items: center;
  }

  .topbar-actions .text-link {
    flex: 1 1 auto;
  }

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

  .hero-visual {
    min-height: 410px;
    padding-top: 20px;
  }

  .hero-image-main {
    width: 80%;
    height: 300px;
  }

  .hero-image-detail {
    width: 43%;
    height: 180px;
    border-width: 5px;
  }

  .spotlight-card {
    right: 0;
    width: 85%;
    padding: 17px;
  }

  .trust-strip p {
    padding: 14px 16px;
  }

  .bundles-section,
  .delivery-section {
    padding: 22px;
    border-radius: 24px;
  }

  .delivery-list p {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
