:root {
  --blush: #E98F96;
  --blush-dark: #D97882;
  --blush-soft: #FFF2F1;
  --cream: #FFF9F5;
  --ivory: #FFFFFF;
  --gold: #C88A3D;
  --gold-soft: #EAC996;
  --chocolate: #3B2420;
  --rose: #B76E79;
  --border: #F3D8D3;
  --footer: #F7D9D5;
  --shadow: 0 18px 45px rgba(128, 67, 49, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Parisienne", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--chocolate);
  background: linear-gradient(180deg, var(--cream), #fff 38%, var(--cream));
  font-family: var(--sans);
}

body.menu-open { overflow: hidden; }

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

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

button, input { font: inherit; }

.shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 20;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 52px;
  background: linear-gradient(90deg, #FFDCD7, #FFF0ED, #FFDCD7);
  border-bottom: 1px solid #F1C5BD;
  color: #5e3832;
  font-family: var(--serif);
  font-size: 15px;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}

.announcement a {
  margin-left: 24px;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.spark { color: var(--gold); }

.icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.icon-button svg { width: 21px; height: 21px; stroke-width: 1.8; }

.icon-button:hover {
  background: var(--blush-soft);
  color: var(--blush-dark);
}

.announcement__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(243, 216, 211, .75);
}

.nav {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.nav__menu { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 14px;
  font-weight: 500;
}

.nav__links--right { justify-content: flex-end; }

.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav__links svg { width: 14px; height: 14px; color: var(--gold); }

.brand {
  width: clamp(190px, 18vw, 286px);
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.nav__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart { position: relative; }

.cart span {
  position: absolute;
  right: 3px;
  top: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--blush);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.hero-slider {
  height: clamp(360px, 33.333vw, 640px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 219, 215, .72), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(255, 238, 225, .86), transparent 35%),
    linear-gradient(90deg, #FFDCD8, #FFF8F4 50%, #FAD9D3);
  border-bottom: 1px solid var(--border);
}

.hero-slider__track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: start;
  justify-items: center;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .55s ease, transform .65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-slider__actions {
  position: absolute;
  z-index: 4;
  left: max(72px, calc((100vw - 1320px) / 2 + 84px));
  bottom: 20px;
  transform: none;
  display: grid;
  justify-items: start;
  gap: 8px;
}

.hero-slider__actions .text-link {
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 249, 245, .76);
  backdrop-filter: blur(8px);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(243, 216, 211, .9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .82);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(128, 67, 49, .12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.hero-slider__arrow:hover {
  background: white;
  color: var(--blush-dark);
  transform: translateY(-50%) scale(1.04);
}

.hero-slider__arrow svg {
  width: 24px;
  height: 24px;
}

.hero-slider__arrow--prev { left: max(20px, calc((100vw - 1320px) / 2 + 20px)); }
.hero-slider__arrow--next { right: max(20px, calc((100vw - 1320px) / 2 + 20px)); }

.hero-slider + .trust { margin-top: 26px; }

.script {
  margin: 0;
  font-family: var(--script);
  color: var(--blush);
  font-size: clamp(36px, 5vw, 68px);
  line-height: .9;
}

.hero h1 {
  margin: 4px 0 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .86;
  font-weight: 700;
  max-width: 480px;
}

.hero__content > p:not(.script) {
  max-width: 310px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}

.button {
  min-height: 52px;
  padding: 0 34px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(216, 108, 116, .22);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(216, 108, 116, .3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.text-link svg { width: 18px; color: var(--gold); }

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hero-slider > .slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  margin-top: 0;
}

.slider-dots button,
.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #E8D9D2;
  cursor: pointer;
}

.slider-dots .active {
  background: var(--blush);
  transform: scale(1.15);
}

.trust {
  position: relative;
  z-index: 5;
  margin-top: -8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.93);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust article {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 34px;
  border-right: 1px solid var(--border);
}

.trust article:last-child { border-right: 0; }

.trust svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--gold);
  stroke-width: 1.35;
}

.trust h3, .trust p { margin: 0; }

.trust h3 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.trust p {
  margin-top: 6px;
  color: #76534E;
  font-size: 13px;
}

.section { padding-block: 58px 24px; }

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title .script {
  font-size: 34px;
  margin-bottom: -4px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 1.05;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.collection-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--blush-soft);
  box-shadow: 0 13px 30px rgba(128, 67, 49, .08);
  isolation: isolate;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(255, 249, 245, .95) 36%, rgba(255, 249, 245, .98));
  z-index: 1;
}

.collection-card div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
  text-align: center;
}

.collection-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.collection-card p {
  min-height: 38px;
  margin: 8px auto 10px;
  max-width: 210px;
  color: #67453f;
  font-size: 14px;
  line-height: 1.25;
}

.collection-card span {
  color: var(--blush-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.collection-card:hover img { transform: scale(1.06); }

.categories {
  text-align: center;
  padding-top: 22px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.category-row a {
  display: grid;
  justify-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 16px;
}

.category-row span {
  width: 68px;
  height: 68px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #FFF4F0;
  color: var(--gold);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.category-row svg { width: 30px; height: 30px; stroke-width: 1.4; }

.category-row a:hover span {
  background: #FAD9D5;
  color: var(--blush-dark);
  transform: translateY(-3px);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-head .text-link { margin: 0; }

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

.product-card {
  position: relative;
  min-width: 0;
  padding: 15px 15px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 25px rgba(128, 67, 49, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card__link {
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / .92;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: var(--cream);
}

.product-card h3 {
  margin: 15px 0 8px;
  min-height: 38px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.05;
}

.product-card p {
  margin: 0 0 8px;
  font-weight: 700;
}

.product-card__add {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--blush-soft);
  color: var(--rose);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.product-card__add:hover {
  background: var(--blush);
  color: #fff;
}

.rating {
  color: #D9962F;
  font-size: 14px;
  letter-spacing: 1px;
}

.rating span {
  color: #83625C;
  letter-spacing: 0;
  font-size: 12px;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 99px;
  background: #FFD5D4;
  color: #A14F58;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}

.wishlist {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #A7847C;
  background: rgba(255,255,255,.9);
  cursor: pointer;
}

.wishlist svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.wishlist:hover,
.wishlist.is-active {
  color: var(--blush-dark);
}

.wishlist.is-active svg { fill: currentColor; }

.product-page {
  padding-top: 28px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .95fr);
  gap: 58px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
  position: relative;
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1 / .96;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--blush-soft);
  box-shadow: 0 18px 42px rgba(128, 67, 49, .08);
}

.gallery-expand {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(80, 43, 35, .12);
}

.gallery-expand svg {
  width: 19px;
  transform: rotate(-45deg);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.product-gallery__thumbs button {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blush-soft);
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(233, 143, 150, .14);
}

.product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
}

.product-summary {
  padding-top: 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #8a6963;
  font-family: var(--serif);
  font-size: 14px;
}

.breadcrumbs a {
  color: #76534E;
}

.product-kicker {
  margin-bottom: 2px;
  font-size: 31px;
}

.product-summary h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  line-height: .98;
  font-weight: 600;
}

.product-rating {
  margin-bottom: 12px;
}

.product-price {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}

.installments {
  margin: 0 0 24px;
  color: #67453f;
  font-size: 14px;
}

.installments strong {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background: #6943ff;
  color: #fff;
  font-size: 12px;
}

.product-description {
  max-width: 560px;
  margin: 0 0 26px;
  color: #5f403a;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.product-options {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.product-options legend {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.product-options div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-options button,
.quantity-control button {
  min-width: 68px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  color: var(--chocolate);
  cursor: pointer;
}

.product-options button.is-selected {
  border-color: var(--blush);
  background: #fff7f6;
  color: #9d4e56;
}

.quantity-control {
  width: 140px;
  height: 44px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  margin: 4px 0 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.quantity-control button {
  min-width: 0;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 20px;
}

.quantity-control span {
  text-align: center;
  font-weight: 600;
}

.product-add {
  width: min(100%, 470px);
  gap: 10px;
}

.product-add svg {
  width: 18px;
}

.product-wishlist {
  width: min(100%, 470px);
  min-height: 48px;
  margin-top: 12px;
  border: 1px solid #E6BFB8;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #8c5a52;
  cursor: pointer;
}

.product-wishlist svg {
  width: 18px;
}

.product-wishlist.is-active {
  color: var(--blush-dark);
}

.product-wishlist.is-active svg {
  fill: currentColor;
}

.product-perks {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.product-perks span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 8px;
  align-items: center;
}

.product-perks svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke-width: 1.5;
}

.product-perks strong {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

.product-perks small {
  color: #76534E;
  font-size: 11px;
  line-height: 1.2;
}

.product-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.product-info-strip article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.product-info-strip svg {
  width: 27px;
  height: 27px;
  color: var(--gold);
  stroke-width: 1.4;
}

.product-info-strip article > svg:last-child {
  width: 16px;
  height: 16px;
  justify-self: end;
}

.product-info-strip h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.product-info-strip p {
  margin: 0;
  color: #67453f;
  font-size: 12px;
  line-height: 1.35;
}

.complete-look {
  padding-top: 24px;
}

.product-grid--related,
.product-grid--suggested {
  grid-template-columns: repeat(4, 1fr);
}

.product-story {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1fr;
  align-items: center;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(90deg, #FFE2DD, #FFF9F4 52%, #FAD8D2);
}

.product-story img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-story div {
  padding: 24px 34px;
  text-align: center;
}

.product-story .script {
  font-size: 38px;
  margin-bottom: -4px;
}

.product-story h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.product-story p:not(.script) {
  margin: 9px auto 18px;
  max-width: 420px;
  color: #5f403a;
  font-family: var(--serif);
  font-size: 18px;
}

.promo {
  height: 190px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(90deg, #FFE1DC, #FFF8F3 46%, #FAD4CE);
}

.promo__flowers {
  position: absolute;
  left: -24px;
  top: -40px;
  width: 220px;
  height: 260px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.95) 0 16px, transparent 17px),
    radial-gradient(circle at 52% 52%, rgba(255,206,205,.9) 0 18px, transparent 19px),
    radial-gradient(circle at 72% 36%, rgba(255,255,255,.9) 0 14px, transparent 15px);
  filter: blur(.2px);
  opacity: .75;
}

.promo__text {
  position: relative;
  z-index: 1;
  padding-left: 160px;
}

.promo h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.promo h2 .script {
  display: inline-block;
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 400;
}

.promo__offer {
  position: relative;
  z-index: 1;
  text-align: center;
  border-left: 1px solid var(--border);
  padding: 10px 26px;
}

.promo__offer h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.promo__offer p { margin: 5px 0 17px; }

.promo__offer .button { min-height: 44px; font-size: 16px; }

.promo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials {
  position: relative;
  padding-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding-inline: 80px;
}

.testimonial-grid article {
  min-height: 150px;
  padding: 26px 30px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 249, 245, .9);
  text-align: center;
}

.testimonial-grid p {
  margin: 10px auto 16px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.25;
  max-width: 300px;
}

.testimonial-grid article > div:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6f4a44;
  font-size: 13px;
}

.testimonial-grid img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.round-arrow {
  position: absolute;
  top: 56%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--gold);
  cursor: pointer;
}

.round-arrow--left { left: 8px; }
.round-arrow--right { right: 8px; }

.insta-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 16px;
}

.insta-title p {
  margin: 0;
  color: var(--rose);
  font-weight: 600;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.insta-grid img,
.insta-cta {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--blush-soft);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-cta {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 15px;
  text-align: center;
  color: #904E55;
}

.insta-cta svg { width: 32px; height: 32px; }

.insta-cta span {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
}

.insta-cta strong {
  font-size: 13px;
  color: var(--blush-dark);
}

.newsletter {
  margin-top: 38px;
  padding: 24px 0;
  background: #FFF1EE;
  border-block: 1px solid var(--border);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.newsletter__copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.newsletter__copy > span {
  width: 74px;
  height: 74px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blush);
  background: white;
}

.newsletter__copy svg { width: 36px; height: 36px; stroke-width: 1.3; }

.newsletter h2 { font-size: 30px; }

.newsletter p {
  margin: 6px 0 0;
  color: #76534E;
  line-height: 1.35;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
}

.newsletter__form input {
  min-width: 0;
  height: 52px;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 0 22px;
  background: #fff;
  color: var(--chocolate);
  outline: 0;
}

.newsletter__form .button {
  height: 52px;
  min-height: 52px;
  border-radius: 0 8px 8px 0;
  font-family: var(--sans);
  font-size: 14px;
  padding-inline: 28px;
}

.newsletter__form small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #9D7770;
  font-size: 11px;
}

.footer {
  background: var(--cream);
  padding: 34px 0 18px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 42px;
}

.footer .brand {
  width: min(100%, 260px);
  min-width: 0;
  justify-content: flex-start;
}

.footer p {
  margin: 14px 0 0;
  color: #76534E;
  line-height: 1.5;
}

.footer h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 17px;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: #67453f;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a { margin: 0; color: var(--gold); }
.socials svg { width: 18px; height: 18px; }

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.payments span {
  padding: 5px 8px;
  border-radius: 4px;
  background: white;
  border: 1px solid var(--border);
  color: #3F5F95;
  font-size: 11px;
  font-weight: 700;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: #76534E;
  font-size: 12px;
}

.footer__bottom p { margin: 0; }

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.footer__bottom a {
  display: inline;
  margin: 0;
  font-size: 12px;
}

.cart-page,
.checkout-page {
  min-height: 62vh;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.cart-items,
.checkout-items,
.checkout-form,
.order-summary,
.empty-state,
.order-confirmation {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(128, 67, 49, .07);
}

.cart-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item:last-child { border-bottom: 0; }

.cart-item img,
.checkout-items img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream);
}

.cart-item__title {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.cart-item p {
  margin: 0 0 8px;
  color: #76534E;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--rose);
  font-weight: 700;
  cursor: pointer;
}

.cart-quantity {
  width: max-content;
  margin-top: 12px;
}

.order-summary {
  position: sticky;
  top: 116px;
  padding: 24px;
}

.order-summary h2,
.checkout-form h2,
.empty-state h2,
.order-confirmation h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 30px;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: #67453f;
}

.order-summary__total {
  font-size: 20px;
  color: var(--chocolate) !important;
}

.order-summary .button {
  width: 100%;
  margin-top: 20px;
}

.order-summary p {
  margin: 14px 0 0;
  color: #76534E;
  font-size: 13px;
  line-height: 1.45;
}

.empty-state,
.order-confirmation {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
}

.empty-state svg,
.order-confirmation > svg {
  width: 54px;
  height: 54px;
  color: var(--gold);
}

.checkout-form {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.checkout-form section {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: #67453f;
  font-weight: 700;
}

.checkout-form input {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--chocolate);
  outline: 0;
}

.checkout-form input:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(233, 143, 150, .18);
}

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

.radio-row {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.radio-row input {
  width: 16px;
  height: 16px;
}

.checkout-submit {
  width: 100%;
}

.checkout-items {
  margin-bottom: 18px;
  overflow: hidden;
}

.checkout-items article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.checkout-items article:last-child { border-bottom: 0; }

.checkout-items strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
}

.checkout-items span {
  color: #76534E;
  font-size: 13px;
}

.checkout-items p {
  margin: 0;
  font-weight: 800;
}

.order-confirmation__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.order-confirmation__meta span,
.order-confirmation__meta strong {
  display: block;
}

.order-confirmation__meta span {
  color: #76534E;
  font-size: 13px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .shell { width: min(100% - 40px, 1024px); }
  .nav__links { gap: 18px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust article:nth-child(2) { border-right: 0; }
  .trust article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .category-row { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-info-strip { grid-template-columns: repeat(2, 1fr); }
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
  .testimonial-grid { padding-inline: 0; gap: 20px; }
  .round-arrow { display: none; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .announcement { font-size: 13px; padding-inline: 44px; }
  .announcement a { margin-left: 0; }
  .nav {
    height: 76px;
    grid-template-columns: minmax(0, 1fr) auto 40px;
  }
  .nav__menu {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .nav__right {
    grid-column: 2;
    grid-row: 1;
  }
  .nav__links--left {
    position: fixed;
    inset: 119px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 140px));
    transition: transform .25s ease;
  }
  body.menu-open .nav__links--left {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__links--left a { padding: 16px 10px; border-bottom: 1px solid var(--border); }
  .nav__links--left a:last-child { border-bottom: 0; }
  .nav__links--right { display: none; }
  .brand {
    width: clamp(172px, 32vw, 228px);
    min-width: 0;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-slider {
    height: min(560px, calc(100vw * .84));
    background: #FFF2F1;
  }
  .hero-slide picture {
    height: 100%;
    display: grid;
    place-items: start center;
  }
  .hero-slide picture > img {
    width: 100% !important;
    max-width: 100%;
    height: 100% !important;
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
  }
  .hero-slider__actions {
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    justify-items: center;
  }
  .hero-slider__actions .text-link {
    display: none;
  }
  .hero-slider__arrow {
    width: 38px;
    height: 38px;
    top: 46%;
  }
  .hero-slider__arrow--prev { left: 12px; }
  .hero-slider__arrow--next { right: 12px; }
  .hero-slider + .trust { margin-top: 18px; }
  .trust article { padding: 20px; }
  .promo {
    height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .promo__text { padding: 34px 24px 0; }
  .promo__offer { border-left: 0; padding: 16px 24px 26px; }
  .promo > img { max-height: 230px; }
  .product-page { padding-top: 18px; }
  .product-gallery__main { aspect-ratio: 1 / 1; }
  .product-perks { grid-template-columns: 1fr; }
  .product-story { grid-template-columns: 1fr; }
  .product-story img { max-height: 250px; }
  .product-story img:last-child { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 540px); }
  .hide-sm { display: none; }
  .announcement { display: none; }
  .nav {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 6px;
  }
  .nav__icons .icon-button {
    width: 34px;
    height: 34px;
  }
  .nav__icons .icon-button svg {
    width: 19px;
    height: 19px;
  }
  .brand { width: min(48vw, 184px); }
  .hero-slider { height: min(520px, calc(100vw * .84)); }
  .hero-slide picture {
    height: 100%;
  }
  .hero-slider__actions {
    bottom: 24px;
  }
  .hero-slider__actions .button {
    min-height: 36px;
    padding-inline: 20px;
    font-size: 14px;
  }
  .hero-slider > .slider-dots {
    bottom: 8px;
  }
  .hero-slider__arrow {
    display: none;
  }
  .script { font-size: 42px; }
  .trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 10px;
  }
  .trust article {
    min-height: 74px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px 4px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
  .trust article:last-child { border-right: 0; }
  .trust svg {
    width: 24px;
    height: 24px;
  }
  .trust h3 {
    font-size: 11px;
    line-height: 1.1;
  }
  .trust p { display: none; }
  .collection-grid { grid-template-columns: 1fr; gap: 18px; }
  .collection-card { min-height: 250px; }
  .category-row {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    gap: 16px 8px;
  }
  .category-row span { width: 58px; height: 58px; }
  .category-row a { font-size: 13px; }
  .section-head { align-items: end; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card { padding: 10px; }
  .product-card h3 { font-size: 16px; }
  .badge { top: 10px; left: 10px; padding-inline: 9px; }
  .wishlist { top: 10px; right: 10px; }
  .cart-item {
    grid-template-columns: 84px 1fr;
    align-items: start;
  }
  .cart-remove {
    grid-column: 2;
    justify-self: start;
  }
  .form-grid,
  .order-confirmation__meta {
    grid-template-columns: 1fr;
  }
  .checkout-form,
  .order-summary,
  .empty-state,
  .order-confirmation {
    padding: 20px;
  }
  .checkout-items article {
    grid-template-columns: 56px 1fr;
  }
  .checkout-items article p {
    grid-column: 2;
  }
  .product-detail { gap: 24px; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .product-summary h1 { font-size: 36px; }
  .product-kicker { font-size: 28px; }
  .product-options button { min-width: 62px; }
  .product-info-strip { grid-template-columns: 1fr; gap: 12px; }
  .product-info-strip article { min-height: 0; }
  .product-story div { padding: 26px 18px; }
  .insta-title { display: block; text-align: center; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__copy { align-items: flex-start; }
  .newsletter__copy > span { width: 58px; height: 58px; }
  .newsletter__form { grid-template-columns: 1fr; gap: 10px; }
  .newsletter__form input,
  .newsletter__form .button { border-radius: 8px; border: 1px solid var(--border); }
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { display: grid; }
  .footer__bottom div { flex-wrap: wrap; gap: 12px 20px; }
}
