:root {
  --ink: #171717;
  --muted: #6f6862;
  --paper: #fffdf9;
  --sand: #ece3d5;
  --line: #ddd2c4;
  --terracotta: #b6533b;
  --sea: #2f6f73;
  --plum: #3b2634;
  --lemon: #d8ae3c;
  --shadow: 0 20px 50px rgba(23, 23, 23, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.announcement {
  padding: 10px 18px;
  color: #fff;
  background: var(--plum);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.navlinks {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.navlinks a { text-decoration: none; }

.cart-button,
.primary-link,
.product-card button,
.drawer-foot button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--terracotta);
  font-weight: 900;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
}

.cart-button span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--terracotta);
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1485968579580-b6d095142e6e?auto=format&fit=crop&w=1400&q=85") center / cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 92px);
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 { font-size: clamp(44px, 7vw, 78px); }
h2 { font-size: clamp(34px, 5vw, 56px); }

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #514943;
  font-size: 19px;
  line-height: 1.55;
}

.primary-link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-review-link {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 18px;
  padding: 12px 14px;
  color: var(--plum);
  border: 1px solid rgba(59, 38, 52, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.hero-review-link span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-review-link strong {
  font-size: 14px;
  line-height: 1.35;
}

.secondary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  color: var(--plum);
  border: 1px solid rgba(59, 38, 52, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 900;
  text-decoration: none;
}

.top-reviews {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.top-reviews > div,
.top-reviews > article {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  padding: 18px clamp(18px, 4vw, 44px);
  background: #fff;
}

.top-reviews span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.top-reviews strong {
  color: var(--plum);
  font-size: 22px;
  line-height: 1;
}

.top-reviews p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.product-top-reviews {
  border-top: 1px solid var(--line);
}

.campaign-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.campaign-strip article {
  min-height: 148px;
  padding: 26px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.campaign-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.campaign-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  padding: 54px clamp(18px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.review-band p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}

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

.review-cards article {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.review-cards span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-cards strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
}

.review-cards p {
  margin: 0;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--sea);
  color: #fff;
}

.trust-strip article {
  min-height: 120px;
  padding: 24px clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #fff4c8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.collections,
.catalog,
.campaign-kit {
  padding: 74px clamp(18px, 5vw, 68px);
}

.campaign-kit {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
}

.campaign-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.campaign-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.campaign-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.campaign-prices strong {
  font-size: 34px;
}

.campaign-prices s {
  color: var(--muted);
  font-weight: 800;
}

.campaign-prices span {
  padding: 6px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--sea);
  font-size: 13px;
  font-weight: 900;
}

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

.kit-links a {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.collection-card span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card strong {
  max-width: 260px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

.coastal { background-image: linear-gradient(0deg, rgba(44, 30, 24, 0.64), rgba(44, 30, 24, 0.1)), url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=900&q=85"); }
.linen { background-image: linear-gradient(0deg, rgba(31, 61, 63, 0.7), rgba(31, 61, 63, 0.08)), url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=900&q=85"); }
.evening { background-image: linear-gradient(0deg, rgba(59, 38, 52, 0.7), rgba(59, 38, 52, 0.08)), url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=900&q=85"); }

.catalog { background: #fff; border-top: 1px solid var(--line); }

.catalog-heading { align-items: center; }

.catalog-actions {
  display: flex;
  gap: 10px;
}

.catalog-actions input,
.catalog-actions select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0 12px;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.filters button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 10px 14px;
  font-weight: 900;
}

.filters button.active {
  color: #fff;
  border-color: var(--plum);
  background: var(--plum);
}

.result-count {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--sand);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.review-pill {
  width: fit-content;
  margin-top: 10px;
  padding: 6px 9px;
  color: var(--sea);
  border: 1px solid rgba(47, 111, 115, 0.28);
  border-radius: 999px;
  background: rgba(47, 111, 115, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.product-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.product-card h3 a,
.product-image-link {
  text-decoration: none;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.product-price strong { font-size: 19px; }
.product-price s { color: var(--muted); }

.product-card .campaign-card-note {
  margin: 10px 0 0;
  color: var(--sea);
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.product-actions a,
.product-card button {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
}

.product-actions a {
  color: var(--plum);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.product-card button {
  min-height: 44px;
}

.cart-link,
.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-page {
  background: #fff;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 76px);
  padding: 64px clamp(18px, 5vw, 68px);
}

.product-gallery {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
}

.product-gallery > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 760px;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--paper);
}

.gallery-thumbs button.active {
  border-color: var(--terracotta);
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info {
  align-self: center;
}

.product-info h1 {
  margin-top: 10px;
  font-size: clamp(40px, 6vw, 72px);
}

.product-review-pill {
  margin: 16px 0 0;
}

.product-lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.product-page-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
}

.product-page-price strong {
  font-size: 32px;
}

.product-page-price s,
.product-page-price span {
  color: var(--muted);
  font-weight: 800;
}

.specs {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.specs dt {
  color: var(--muted);
  font-weight: 900;
}

.specs dd {
  margin: 0;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.size-row button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 900;
}

.buy-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--terracotta);
  font-weight: 900;
}

.campaign-box {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 115, 0.26);
  border-radius: 8px;
  background: rgba(47, 111, 115, 0.08);
}

.campaign-box .eyebrow {
  margin-bottom: 0;
}

.campaign-box strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.campaign-box span {
  color: var(--muted);
  line-height: 1.45;
}

.product-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 60px clamp(18px, 5vw, 68px);
  background: var(--sand);
  border-top: 1px solid var(--line);
}

.product-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reviews-overview,
.product-reviews {
  padding: 66px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.reviews-dynamic {
  display: none;
}

.reviews-overview .section-title a {
  color: var(--terracotta);
  font-weight: 900;
  text-decoration: none;
}

.review-overview-grid,
.product-reviews {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.review-overview-grid article,
.review-panel,
.review-summary,
.supplier-notes article,
.review-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-overview-grid article,
.review-summary,
.supplier-notes article,
.review-list article {
  padding: 18px;
}

.review-overview-grid span,
.review-summary span,
.review-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-overview-grid strong,
.review-summary strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.review-overview-grid p,
.product-reviews p,
.review-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.review-overview-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.45;
}

.review-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.supplier-notes,
.review-list {
  display: grid;
  gap: 10px;
}

.supplier-notes article {
  color: var(--muted);
  line-height: 1.45;
}

.look-builder {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  padding: 60px clamp(18px, 5vw, 68px);
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.look-grid a {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
}

.look-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.look-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.look-grid strong {
  color: var(--terracotta);
}

.policy-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 74px clamp(18px, 5vw, 68px);
  color: #fff;
  background: var(--plum);
}

.policy-band .eyebrow { color: var(--lemon); }

.policy-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-band li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  width: min(430px, 100%);
  flex-direction: column;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.drawer.open .drawer-panel { transform: translateX(0); }

.drawer-head,
.drawer-foot {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-head h2 { margin: 0; font-size: 28px; }

.drawer-head button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 62px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-item button {
  border: 0;
  color: var(--terracotta);
  background: transparent;
  font-weight: 900;
}

.cart-upsell {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-upsell article {
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-upsell img {
  width: 54px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-upsell strong,
.cart-upsell span {
  display: block;
}

.cart-upsell strong {
  font-size: 13px;
  line-height: 1.25;
}

.cart-upsell span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.cart-upsell button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-weight: 900;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.drawer-foot div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.drawer-foot button {
  width: 100%;
  min-height: 48px;
}

.drawer-foot button:disabled,
.buy-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.checkout-note {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.empty { color: var(--muted); line-height: 1.5; }

.size-row button.active {
  color: #fff;
  border-color: var(--plum);
  background: var(--plum);
}

.plain-page {
  max-width: 860px;
  min-height: 58vh;
  padding: 72px clamp(18px, 6vw, 86px);
}

.plain-page h1 {
  margin-bottom: 18px;
}

.plain-page p,
.plain-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.plain-page a {
  color: var(--terracotta);
  font-weight: 900;
}

.checkout-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checkout-box h2 {
  font-size: 34px;
}

.checkout-box code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--sand);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 24px;
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer span,
.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer span {
  font-weight: 900;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1060px) {
  .product-grid,
  .trust-strip,
  .campaign-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .topbar { flex-wrap: wrap; }
  .navlinks { order: 3; width: 100%; justify-content: space-between; }
  .hero,
  .top-reviews,
  .collection-grid,
  .product-grid,
  .campaign-strip,
  .review-band,
  .review-cards,
  .campaign-kit,
  .policy-band,
  .look-builder,
  .footer { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; }
  .catalog-heading,
  .catalog-actions { align-items: stretch; flex-direction: column; }
  .catalog-actions { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .product-hero,
  .product-copy,
  .product-reviews,
  .review-overview-grid { grid-template-columns: 1fr; }
  .kit-links,
  .look-grid { grid-template-columns: 1fr; }
  .specs div { grid-template-columns: 1fr; gap: 4px; }
}


.discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--sea);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
