:root {
  --cream: #f7f2e9;
  --sand: #e8dac7;
  --mist: #edf1ef;
  --ink: #102628;
  --navy: #071c2d;
  --teal: #005b5f;
  --blue: #1646d8;
  --lime: #c8ff3d;
  --orange: #ff6b2c;
  --pink: #ffd9ef;
  --shadow: 0 24px 70px rgba(23, 43, 45, .14);
  --soft-shadow: 0 14px 40px rgba(23, 43, 45, .1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 255, 61, .13), transparent 34rem),
    linear-gradient(180deg, #fbf6ee 0%, #f6f1e8 46%, #eef2f0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.promo-strip {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: #e9e3cc;
  color: #102628;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marquee,
.logo-marquee,
.ticker {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.promo-strip span {
  padding: 9px 32px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 18;
  padding: 13px 22px 10px;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 233, .75);
  border-bottom: 1px solid rgba(16, 38, 40, .08);
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.has-scrolled .site-header {
  background: rgba(247, 242, 233, .86);
  box-shadow: 0 14px 42px rgba(16, 38, 40, .09);
  backdrop-filter: blur(24px) saturate(1.15);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.nav-left,
.nav-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-left a {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.nav-left a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: .18em;
}

.nav-icons {
  justify-content: flex-end;
  gap: 10px;
}

.nav-icons button,
.circle-button,
.quick-add,
.floating-action {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.nav-icons button {
  position: relative;
  width: 39px;
  height: 39px;
  background: rgba(255, 255, 255, .64);
}

svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-icons button:hover,
.circle-button:hover,
.quick-add:hover {
  transform: translateY(-2px) scale(1.06);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(38, 57, 24, .18);
}

.circle-button:hover svg {
  transform: translateX(2px);
}

.circle-button:first-child:hover svg {
  transform: translateX(-2px);
}

.circle-button svg {
  transition: transform .25s ease;
}

.cart-button span {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: white;
}

.mobile-menu span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main > section {
  padding: 72px 22px;
}

.hero {
  padding-top: 26px;
}

.hero-card {
  position: relative;
  min-height: clamp(620px, 76vh, 820px);
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card img,
.editorial-image img,
.style-feature img,
.feature-card img,
.category-card img,
.product-media img,
.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.hero-card img {
  position: absolute;
  inset: 0;
}

.hero-image {
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 28, 45, .72), rgba(7, 28, 45, .22) 55%, rgba(7, 28, 45, .52)),
    linear-gradient(180deg, rgba(255, 107, 44, .16), rgba(22, 70, 216, .08));
}

.mesh {
  position: absolute;
  z-index: 2;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .68;
}

.mesh-one {
  right: 9%;
  top: 12%;
  background: rgba(200, 255, 61, .48);
}

.mesh-two {
  left: -4%;
  bottom: 11%;
  background: rgba(255, 107, 44, .42);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(620px, 76vh, 820px);
  max-width: 820px;
  padding: clamp(44px, 7vw, 108px);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-toolbar h2,
.editorial-copy h2,
.newsletter-panel h2 {
  margin: 0;
  font-weight: 950;
  line-height: .92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(72px, 10vw, 168px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.button-primary {
  background: var(--lime);
  color: #152400;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .15);
  color: white;
  backdrop-filter: blur(14px);
}

.button.lime {
  background: var(--lime);
  color: var(--ink);
}

.floating-pill {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  animation: floatBadge 5.5s ease-in-out infinite;
}

.floating-pill strong {
  font-size: 14px;
}

.floating-pill span {
  color: rgba(16, 38, 40, .72);
  font-size: 12px;
  font-weight: 700;
}

.hero-tag {
  top: 62px;
  right: 80px;
}

.hero-review {
  right: 9%;
  bottom: 62px;
  animation-delay: 1.15s;
}

.section-heading,
.section-toolbar {
  max-width: var(--max);
  margin: 0 auto 28px;
}

.section-heading {
  text-align: center;
}

.section-heading.compact {
  text-align: left;
}

.section-heading h2,
.section-toolbar h2,
.editorial-copy h2,
.newsletter-panel h2 {
  font-size: clamp(36px, 5vw, 76px);
}

.section-heading h2 {
  max-width: 860px;
  margin: 0 auto;
}

.section-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.toolbar-actions,
.center-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle-button {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: white;
  box-shadow: var(--soft-shadow);
}

.text-link {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.category-row,
.product-grid.horizontal {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar,
.product-grid.horizontal::-webkit-scrollbar {
  display: none;
}

.category-card {
  display: grid;
  grid-template-rows: 300px auto;
  gap: 14px;
  scroll-snap-align: start;
  transition: transform .35s ease;
}

.category-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.category-card span {
  font-size: 15px;
  font-weight: 950;
}

.category-card:hover img,
.product-card:hover img,
.mini-card:hover img,
.style-feature:hover img,
.feature-card:hover img {
  transform: scale(1.055);
}

.category-card:hover {
  transform: translateY(-5px);
}

.product-section,
.handpicked-section {
  background: rgba(255, 255, 255, .42);
}

.product-grid.horizontal {
  grid-auto-columns: minmax(270px, 340px);
}

.product-card,
.mini-card,
.testimonial-card {
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 46px rgba(16, 38, 40, .08);
  transition: transform .34s cubic-bezier(.2, .8, .2, 1), box-shadow .34s ease;
}

.product-card:hover,
.mini-card:hover,
.testimonial-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 10px 10px;
  background: linear-gradient(135deg, #f5f1e9, #e7ecef);
}

.product-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 999px;
  background: #d8f6ff;
  color: #05525a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge.orange {
  background: #ffe0cf;
  color: #812600;
}

.badge.pink {
  background: var(--pink);
  color: #692b4d;
}

.quick-add {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 4;
  width: 43px;
  height: 43px;
  background: var(--ink);
  color: white;
  font-size: 24px;
  line-height: 1;
}

.product-card:hover .quick-add {
  transform: translateY(-2px) scale(1.08);
}

.product-info {
  padding: 20px 20px 22px;
}

.product-info h3,
.mini-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.price,
.swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.price span,
.mini-card p span {
  color: rgba(16, 38, 40, .45);
  text-decoration: line-through;
}

.swatches i {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(16, 38, 40, .15);
  border-radius: 50%;
}

.white { background: #fff; }
.navy { background: #071c2d; }
.lime { background: var(--lime); }
.blue { background: var(--blue); }
.sand { background: #d9c8aa; }
.black { background: #080808; }
.orange { background: var(--orange); }
.cream { background: #f7f2e9; }
.teal { background: var(--teal); }
.gray { background: #aeb8bd; }
.pink { background: #ffb7df; }

.swatches small {
  color: rgba(16, 38, 40, .6);
  font-size: 12px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(16, 38, 40, .64);
  font-size: 18px;
  line-height: 1.55;
}

.hot-selling-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 107, 44, .16), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 235, 214, .58));
}

.hot-selling-section .badge {
  background: #ffe0cf;
  color: #8a2600;
}

.most-loved-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(22, 70, 216, .14), transparent 25rem),
    linear-gradient(180deg, rgba(237, 244, 255, .8), rgba(255, 255, 255, .46));
}

.most-loved-section .badge {
  background: #e1f7ff;
  color: #064d61;
}

.mini-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}

.mini-rating span {
  color: var(--teal);
  font-size: 11px;
  letter-spacing: .12em;
}

.mini-rating small {
  color: rgba(16, 38, 40, .58);
  font-size: 12px;
  font-weight: 850;
}

.editorial-break {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: 38px;
  overflow: hidden;
  padding-top: 0;
  background: linear-gradient(180deg, #f7f2e9 0 12%, #c7f1e6 12% 100%);
}

.ticker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticker span {
  padding: 11px 24px;
  white-space: nowrap;
}

.editorial-image {
  max-height: 720px;
  overflow: hidden;
  border-radius: 0 0 44px 0;
  box-shadow: var(--shadow);
}

.editorial-copy {
  max-width: 520px;
  padding: 78px 22px;
}

.editorial-copy h2 {
  margin-bottom: 28px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto 24px;
}

.filter-pills button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(16, 38, 40, .1);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.filter-pills button:hover,
.filter-pills button.active {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.style-layout {
  display: grid;
  grid-template-columns: minmax(400px, 1.1fr) minmax(0, .9fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.style-feature {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.style-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 28, 45, .72));
  content: "";
}

.style-feature div {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  color: white;
}

.style-feature span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.style-feature h3 {
  max-width: 560px;
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: .95;
}

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

.product-grid.slim .mini-card:first-child {
  grid-column: span 2;
}

.mini-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.mini-card img {
  height: 250px;
  border-radius: 18px;
}

.mini-card h3,
.mini-card p {
  margin: 13px 6px 0;
}

.mini-card p {
  font-weight: 900;
}

.why-section {
  background:
    radial-gradient(circle at 84% 22%, rgba(0, 91, 95, .08), transparent 26rem),
    linear-gradient(180deg, #f8f3eb 0%, #f1eadf 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .56);
  box-shadow: var(--soft-shadow);
}

.feature-card img {
  position: relative;
  z-index: 2;
  height: 370px;
  border-radius: 26px;
}

.color-block {
  position: absolute;
  inset: 54px 26px auto auto;
  z-index: 1;
  width: 58%;
  height: 250px;
  border-radius: 28px;
  transform: rotate(4deg);
}

.color-block.blue { background: #83caff; }
.color-block.lime { background: #d9ff7a; }
.color-block.orange { background: #ff9e74; }

.feature-card div:last-child {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  padding: 28px;
  border-radius: 24px;
  background: white;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.feature-card p {
  margin: 0;
  color: rgba(16, 38, 40, .68);
  line-height: 1.58;
}

.curated {
  grid-auto-columns: minmax(230px, 300px);
}

.curated .mini-card img {
  height: 280px;
}

.curated .quick-add {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.testimonials {
  background: #dfe9ff;
}

.stars {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 15px;
  letter-spacing: .18em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(16, 38, 40, .78);
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-card span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4efff;
  color: #703d93;
  font-size: 11px;
  font-weight: 900;
}

.center-arrows {
  justify-content: center;
  margin-top: 28px;
}

.featured-in {
  padding-top: 44px;
  padding-bottom: 44px;
  overflow: hidden;
  text-align: center;
  background: #fffaf2;
}

.logo-marquee {
  gap: 54px;
  align-items: center;
  animation-duration: 34s;
}

.logo-marquee span {
  color: #1b1b1b;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: .16em;
  opacity: .78;
  white-space: nowrap;
}

.footer-wave {
  padding: 0;
  margin-bottom: -1px;
  background: #fffaf2;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 170px;
  fill: #063b43;
  stroke: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 22px 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 70, 216, .28), transparent 26rem),
    radial-gradient(circle at 16% 34%, rgba(200, 255, 61, .16), transparent 22rem),
    #063b43;
  color: white;
}

.footer-glow {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, black 20%, transparent 90%);
}

.newsletter-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 30px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.newsletter-panel h2 {
  max-width: 650px;
}

.newsletter-panel label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.newsletter-panel form > div {
  display: flex;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: white;
}

.newsletter-panel input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
}

.newsletter-panel button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 24px;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(120px, .7fr));
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  justify-content: flex-start;
  min-width: 0;
  color: white;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer-grid a:hover {
  color: white;
  transform: translateX(3px);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a,
.payments span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: white;
  font-size: 12px;
  font-weight: 950;
}

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

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.floating-action {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 22;
  width: 56px;
  height: 56px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--stagger, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.095) translate3d(-1.2%, -1.4%, 0);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1120px) {
  .nav-left {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-shell {
    grid-template-columns: 1fr auto 1fr;
  }

  .feature-grid,
  .testimonial-grid,
  .editorial-break,
  .style-layout {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    border-radius: 0 0 36px 36px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    min-width: 116px;
    font-size: 15px;
  }

  .nav-icons button:not(.cart-button) {
    display: none;
  }

  main > section {
    padding: 52px 14px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-card,
  .hero-copy {
    min-height: 650px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .hero-copy {
    justify-content: end;
    padding: 28px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .floating-pill {
    display: none;
  }

  .section-toolbar,
  .newsletter-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-toolbar {
    display: flex;
  }

  .category-row {
    grid-auto-columns: 76%;
  }

  .category-card {
    grid-template-rows: 240px auto;
  }

  .product-grid.horizontal {
    grid-auto-columns: 82%;
  }

  .product-media {
    height: 310px;
  }

  .style-feature {
    min-height: 520px;
  }

  .product-grid.slim,
  .feature-grid,
  .testimonial-grid,
  .newsletter-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid.slim .mini-card:first-child,
  .footer-brand {
    grid-column: auto;
  }

  .newsletter-panel {
    padding: 24px;
  }

  .footer-wave svg {
    height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.page-heading {
  max-width: var(--max);
  margin: 0 auto 32px;
}

.page-heading h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .9;
  letter-spacing: 0;
}

.pdp-section {
  display: grid;
  grid-template-columns: minmax(460px, 1.04fr) minmax(360px, .96fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 52px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.thumb-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.thumb-rail button {
  height: 92px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 26px rgba(16, 38, 40, .07);
  transition: border .2s ease, transform .2s ease;
}

.thumb-rail button:hover,
.thumb-rail button.active {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.thumb-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-product-image {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 255, 61, .36), transparent 20rem),
    linear-gradient(145deg, #fffdf8, #e8ecef);
  box-shadow: var(--shadow);
}

.main-product-image img {
  width: min(88%, 720px);
  height: min(74%, 540px);
  object-fit: contain;
  filter: drop-shadow(0 32px 38px rgba(10, 25, 28, .22));
  mix-blend-mode: multiply;
}

.pdp-info {
  align-self: center;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: 34px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--soft-shadow);
}

.pdp-info h1 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 84px);
  line-height: .92;
  letter-spacing: 0;
}

.pdp-price,
.rating-row,
.trust-row,
.purchase-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pdp-price {
  margin-top: 20px;
}

.sale-price {
  font-size: 32px;
  font-weight: 950;
}

.old-price {
  color: rgba(16, 38, 40, .45);
  font-size: 20px;
  font-weight: 800;
  text-decoration: line-through;
}

.discount-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffe0cf;
  color: #813000;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rating-row {
  margin-top: 16px;
}

.rating-row span {
  color: var(--teal);
  letter-spacing: .16em;
}

.rating-row em {
  color: rgba(16, 38, 40, .58);
  font-style: normal;
  font-weight: 750;
}

.pdp-description {
  margin: 22px 0;
  color: rgba(16, 38, 40, .74);
  font-size: 18px;
  line-height: 1.65;
}

.color-line {
  margin: 0 0 22px;
}

.option-block {
  margin-top: 22px;
}

.option-block > label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(44px, 1fr));
  gap: 9px;
}

.size-grid button {
  min-height: 48px;
  border: 1px solid rgba(16, 38, 40, .12);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-weight: 950;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.size-grid button:hover,
.size-grid button.active {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.field-error,
.form-field small,
.radio-group small {
  margin: 8px 0 0;
  color: #c8332a;
  font-size: 13px;
  font-weight: 850;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #f0ebe3;
}

.quantity-selector button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.quantity-selector span {
  min-width: 32px;
  text-align: center;
  font-weight: 950;
}

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

.outline-dark {
  border: 1px solid rgba(16, 38, 40, .18);
  background: white;
  color: var(--ink);
}

.stock-line {
  margin: 18px 0 0;
  color: var(--teal);
  font-weight: 950;
}

.trust-row {
  margin-top: 18px;
}

.trust-row span,
.summary-trust span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0, 91, 95, .09);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.compact-why {
  padding-top: 88px;
  padding-bottom: 88px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.why-copy {
  max-width: 560px;
}

.why-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 950;
  line-height: .94;
  letter-spacing: 0;
}

.why-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(16, 38, 40, .68);
  font-size: 18px;
  line-height: 1.7;
}

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

.shop-feature-card {
  min-height: 232px;
  padding: 28px;
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 38px rgba(16, 38, 40, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.shop-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 91, 95, .18);
  box-shadow: 0 24px 60px rgba(16, 38, 40, .12);
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(0, 91, 95, .09);
  color: var(--teal);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
}

.shop-feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0;
}

.shop-feature-card p {
  margin: 0;
  color: rgba(16, 38, 40, .68);
  line-height: 1.6;
}

.reviews-section,
.cart-section,
.checkout-section,
.confirmation-section {
  padding: 72px 22px;
}

.review-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.review-summary h2 {
  margin: 0;
  font-size: 78px;
  line-height: .9;
}

.review-summary select {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(16, 38, 40, .12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 850;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.cart-item img,
.checkout-item img,
.confirmation-summary img,
.toast img {
  object-fit: cover;
  background: #eef1ef;
}

.cart-item img {
  width: 150px;
  height: 130px;
  border-radius: 22px;
}

.cart-item-main h3 {
  margin: 0;
  font-size: 22px;
}

.cart-item-main p {
  margin: 8px 0;
  color: rgba(16, 38, 40, .62);
  font-weight: 800;
}

.remove-button {
  border: 0;
  background: transparent;
  color: #bf342d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-card {
  position: sticky;
  top: 92px;
  padding: 26px;
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.summary-card h2 {
  margin: 0 0 20px;
  font-size: 28px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 38, 40, .08);
}

.summary-line span {
  color: rgba(16, 38, 40, .68);
}

.summary-line.total {
  align-items: center;
  font-size: 24px;
}

.summary-line.discount strong {
  color: var(--teal);
}

.product-line {
  font-size: 14px;
}

.summary-action,
.checkout-button {
  width: 100%;
  margin-top: 16px;
  border: 0;
}

.summary-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.empty-state {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 64px);
}

.checkout-form {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(16, 38, 40, .08);
  border-radius: 32px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.checkout-form h2 {
  margin: 10px 0 0;
  font-size: 26px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-field input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(16, 38, 40, .12);
  border-radius: 16px;
  outline: 0;
  padding: 0 15px;
  background: white;
  color: var(--ink);
}

.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 70, 216, .12);
}

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

.radio-group label {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(16, 38, 40, .1);
  border-radius: 18px;
  background: white;
}

.radio-group label.active {
  border-color: var(--blue);
  background: #eef4ff;
}

.radio-group span {
  grid-column: 2;
  color: rgba(16, 38, 40, .62);
  font-size: 14px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 38, 40, .08);
}

.checkout-item img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
}

.checkout-item span {
  display: block;
  margin-top: 5px;
  color: rgba(16, 38, 40, .62);
  font-size: 13px;
  font-weight: 800;
}

.summary-totals {
  margin-top: 12px;
}

.confirmation-section {
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 255, 61, .25), transparent 28rem),
    linear-gradient(180deg, #f9f4ec, #eaf2f0);
}

.confirmation-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 40px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 44px;
  font-weight: 950;
}

.confirmation-card h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .95;
}

.confirmation-card > p {
  color: rgba(16, 38, 40, .68);
  font-size: 18px;
}

.order-number {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eef4ff;
}

.order-number span {
  color: rgba(16, 38, 40, .58);
  font-weight: 850;
}

.delivery-estimate {
  font-weight: 900;
}

.confirmation-summary {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border-radius: 26px;
  background: #f5f1e9;
  text-align: left;
}

.confirmation-summary img {
  width: 130px;
  height: 116px;
  border-radius: 20px;
}

.confirmation-summary h3,
.confirmation-summary p {
  margin: 0 0 7px;
}

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

.toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.toast img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  margin: 4px 0 10px;
  color: rgba(16, 38, 40, .65);
  font-size: 14px;
  font-weight: 800;
}

.toast button {
  margin-right: 8px;
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.toast button + button {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 1120px) {
  .pdp-section,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .shop-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pdp-section,
  .reviews-section,
  .cart-section,
  .checkout-section,
  .confirmation-section {
    padding: 44px 14px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .thumb-rail {
    grid-auto-flow: column;
    grid-auto-columns: 78px;
    overflow-x: auto;
  }

  .thumb-rail button {
    height: 78px;
  }

  .main-product-image {
    min-height: 430px;
    border-radius: 28px;
  }

  .pdp-info {
    padding: 22px;
    border-radius: 26px;
  }

  .size-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
  }

  .cart-item img {
    width: 92px;
    height: 92px;
  }

  .cart-item .quantity-selector,
  .cart-item .remove-button {
    grid-column: 2;
    justify-self: start;
  }

  .form-grid,
  .confirmation-summary,
  .shop-feature-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-summary img {
    width: 100%;
    height: 210px;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}
