:root {
  --bg: oklch(1 0 0);
  --surface: oklch(1 0 0);
  --soft: oklch(0.965 0.026 156);
  --soft-strong: oklch(0.86 0.07 154);
  --ink: oklch(0.2 0.025 158);
  --muted: oklch(0.48 0.022 158);
  --primary: oklch(0.51 0.12 154);
  --primary-dark: oklch(0.33 0.105 154);
  --line: oklch(0.89 0.012 156);
  --danger: oklch(0.52 0.16 32);
  --shadow: 0 12px 34px oklch(0.25 0.03 156 / 0.08);
  --radius: 6px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.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;
}

.notice-bar {
  overflow: hidden;
  padding: 0.62rem 0;
  background: var(--soft-strong);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.notice-track {
  display: flex;
  width: max-content;
  animation: notice-scroll 28s linear infinite;
  will-change: transform;
}

.notice-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-inline: clamp(2rem, 7vw, 5rem);
  border-right: 1px solid oklch(0.45 0.07 154 / 0.36);
}

@keyframes notice-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 70px;
  padding: 0.6rem clamp(1rem, 4vw, 3rem);
  background: oklch(1 0 0 / 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: max-content;
  text-align: left;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.brand-logo {
  width: 54px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border: 1px solid oklch(0.74 0.05 154 / 0.62);
  border-radius: 6px;
  background: var(--soft);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: clamp(0.9rem, 2.5vw, 1.7rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.cart-button,
.cart-header button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.cart-button {
  justify-self: end;
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.cart-button svg,
.search-field svg {
  width: 19px;
  height: 19px;
}

.cart-button strong {
  position: absolute;
  top: 5px;
  right: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.66rem;
}

.hero-section {
  display: none;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-text,
.section-intro p,
.quality-band p,
.split-section p,
.site-footer p,
.faq-grid p,
.cart-summary p,
.product-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 540px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

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

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

.button.full {
  width: 100%;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 2.8rem auto 0;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip div {
  display: grid;
  justify-items: start;
  gap: 0.25rem;
  padding: 0.2rem clamp(0.65rem, 2vw, 1.35rem);
}

.trust-strip svg {
  width: 42px;
  height: 42px;
  margin-bottom: 0.5rem;
  color: var(--primary);
  stroke-width: 1.9;
}

.trust-strip strong {
  font-size: 0.94rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section-intro {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.4rem) clamp(1rem, 4vw, 3rem) 1.6rem;
  text-align: center;
}

.section-intro.compact {
  max-width: none;
  padding: 0;
  text-align: left;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) 1.4rem;
}

.segmented-control {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.segmented-control button {
  min-height: 36px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.segmented-control button.active {
  background: var(--soft);
  color: var(--primary-dark);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: min(300px, 100%);
  height: 44px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 5.5rem);
}

.featured-grid {
  padding-bottom: 1.2rem;
}

.view-all-row {
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 5.5rem);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 3px 14px oklch(0.25 0.03 156 / 0.04);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

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

.product-image {
  position: relative;
  padding: 0.65rem;
  background: var(--surface);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.sale-badge {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  padding: 0.16rem 0.42rem;
  background: var(--soft-strong);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0.85rem 1rem;
  text-align: center;
}

.product-card h3 {
  min-height: 2.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-card p {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
}

.product-bottom {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  margin-top: auto;
}

.compare-price {
  color: var(--ink);
  font-size: 0.86rem;
  text-decoration: line-through;
}

.price {
  margin-left: 0.35rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.product-meta {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.product-card .button {
  min-height: 38px;
  padding: 0 0.9rem;
}

.collection-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) 1rem;
}

.collection-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
}

.breadcrumbs {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.collection-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 5.5rem);
}

.collection-filters {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 1.15rem;
  padding-top: 0.5rem;
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.filter-heading button,
.filter-group button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.filter-heading button {
  font-size: 0.82rem;
}

.filter-group {
  display: grid;
  gap: 0.68rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.filter-group h2 {
  margin: 0;
  font-size: 0.92rem;
}

.filter-group label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.filter-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.filter-group button {
  width: fit-content;
  padding: 0;
  text-align: left;
}

.filter-group button.active,
.filter-group button:hover,
.filter-heading button:hover {
  color: var(--primary-dark);
}

.price-range {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.collection-main {
  min-width: 0;
}

.collection-toolbar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.collection-toolbar > span {
  color: var(--muted);
  font-weight: 700;
}

.compact-search {
  justify-self: end;
  width: min(320px, 100%);
}

.sort-field {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.sort-field select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 2.1rem 0 0.8rem;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.collection-grid {
  max-width: none;
  padding: 0;
}

.quality-band,
.lab-reports-section,
.split-section,
.faq-section {
  max-width: 1120px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.quality-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.faq-lookbook {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--surface) 0 64%, var(--soft) 64% 100%);
}

.faq-copy h2 {
  margin-bottom: 1.3rem;
}

.why-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin: 0;
}

.why-card p {
  margin: 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.quality-grid article {
  min-height: 190px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quality-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.lab-reports-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--soft), var(--surface) 58%);
}

.report-list {
  display: grid;
  gap: 0.85rem;
}

.report-list article {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.84);
  box-shadow: 0 8px 24px oklch(0.25 0.03 156 / 0.06);
}

.report-list span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-list small {
  color: var(--muted);
  font-weight: 600;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-form {
  display: grid;
  gap: 0.9rem;
}

.partner-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.partner-form input,
.partner-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.85rem;
  background: var(--surface);
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-lookbook .faq-grid {
  grid-template-columns: 1fr;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  min-height: 58px;
  padding: 1rem;
  cursor: pointer;
  font-weight: 800;
}

details p {
  padding: 0 1rem 1rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: oklch(0.12 0.02 156 / 0.42);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  min-height: 100%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.cart-header button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  flex: 1;
  padding: 1rem 1.2rem;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.cart-line img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
}

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

.cart-line span {
  color: var(--muted);
  font-size: 0.86rem;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.empty-cart {
  align-self: center;
  color: var(--muted);
  text-align: center;
}

.cart-summary {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.cart-summary p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  max-width: 460px;
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .product-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .collection-filters {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0;
  }

  .filter-heading {
    grid-column: 1 / -1;
  }

  .hero-section,
  .quality-band,
  .lab-reports-section,
  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .notice-track {
    animation-duration: 22s;
  }

  .notice-track span {
    padding-inline: 1.75rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
    order: 1;
  }

  .cart-button {
    order: 2;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-section {
    padding-top: 1.4rem;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .trust-strip,
  .faq-lookbook,
  .faq-grid,
  .product-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .faq-lookbook {
    background: var(--surface);
  }

  .trust-strip {
    margin-inline: clamp(1rem, 4vw, 3rem);
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .collection-toolbar {
    grid-template-columns: 1fr;
  }

  .compact-search {
    justify-self: stretch;
    width: 100%;
  }

  .sort-field {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .collection-filters {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    overflow-x: auto;
    border-radius: var(--radius);
  }

  .segmented-control button {
    min-width: max-content;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-track {
    animation: none;
    transform: none;
  }
}
