@font-face {
  font-family: "Syne";
  src: url("/assets/syne-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/syne-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted-ink: #595957;
  --paper: #ebf7ff;
  --paper-deep: #dceffa;
  --white: #ffffff;
  --accent: #09ad9d;
  --accent-dark: #078a7e;
  --line: rgba(29, 29, 27, 0.2);
  --soft-line: rgba(29, 29, 27, 0.1);
  --surface: rgba(255, 255, 255, 0.58);
  --dark-surface: #1d1d1b;
  --danger: #a52d36;
  --success: #087f6d;
  --radius: 5px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;
  --shadow: 0 28px 70px rgba(29, 29, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.9), transparent 27%),
    radial-gradient(circle at 90% 65%, rgba(9, 173, 157, 0.1), transparent 28%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--accent);
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.65rem, 10vw, 7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.15rem, 7vw, 5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
}

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

.section-pad {
  padding: 64px 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--soft-line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: min(176px, 47vw);
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 100%;
}

.nav-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: var(--ink);
}

.site-nav {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: none;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--soft-line);
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.header-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--dark-surface);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
  color: var(--ink);
}

.button-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #082d2a;
}

.button-accent:hover {
  box-shadow: 0 12px 30px rgba(9, 173, 157, 0.28);
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
}

.hero-title {
  position: relative;
  z-index: 2;
}

.hero-title h1 {
  max-width: 12ch;
}

.hero-title p {
  max-width: 620px;
  margin-bottom: var(--space-4);
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.hero-visual {
  position: relative;
  min-height: 340px;
}

.hero-visual::before {
  position: absolute;
  inset: 5% 6%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(80%, 390px);
  margin: auto;
  filter: drop-shadow(0 30px 40px rgba(29, 29, 27, 0.22));
}

.orbit {
  position: absolute;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.orbit-one {
  top: 15%;
  right: 3%;
  width: 55px;
  height: 55px;
}

.orbit-two {
  bottom: 8%;
  left: 10%;
  width: 24px;
  height: 24px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading > a {
  font-weight: 700;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-image {
  position: relative;
  display: grid;
  aspect-ratio: 2 / 2.65;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(207, 218, 224, 0.7));
  box-shadow: inset 0 0 68px rgba(77, 87, 92, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-image:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 68px rgba(77, 87, 92, 0.14), 0 20px 0 rgba(29, 29, 27, 0.12);
}

.product-image img {
  width: 88%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-image:hover img {
  transform: scale(1.04);
}

.product-category {
  margin: 18px 0 8px;
  color: var(--muted-ink);
  font-size: 0.68rem;
}

.product-card h3 {
  min-height: 3.7em;
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a:hover {
  text-decoration: underline;
}

.product-price {
  margin: auto 0 14px;
  font-size: 1.05rem;
}

.product-card .button {
  width: 100%;
  padding-inline: 10px;
  font-size: 0.78rem;
}

.lab-band {
  position: relative;
  display: grid;
  min-height: 480px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.lab-band > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.lab-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 10%, rgba(29, 29, 27, 0.92));
  content: "";
}

.lab-band > div {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 42px 20px;
}

.lab-band h2 {
  font-size: clamp(2.3rem, 9vw, 5.4rem);
}

.choose-section {
  display: grid;
  align-items: center;
  gap: 42px;
}

.choose-section > img {
  width: min(260px, 70vw);
  margin: auto;
}

.category-links {
  display: grid;
}

.category-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.category-links a:hover span {
  transform: translate(3px, -3px);
}

.category-links span {
  transition: transform 180ms ease;
}

.about-slice,
.about-story,
.about-hero {
  display: grid;
  align-items: center;
  gap: 42px;
}

.about-slice p,
.about-story p,
.about-hero p {
  max-width: 720px;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-collage img {
  height: 280px;
  object-fit: cover;
}

.about-collage img:nth-child(2) {
  transform: translateY(28px);
}

.payment-strip {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
}

.payment-strip article:last-child {
  border-bottom: 0;
}

.payment-strip strong {
  font-size: 1.1rem;
}

.payment-strip span {
  color: var(--muted-ink);
  font-size: 0.85rem;
}

.reviews-section {
  display: grid;
  align-items: center;
  gap: 42px;
}

.reviews-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.reviews-visual::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.reviews-visual img {
  position: relative;
  z-index: 1;
  width: min(260px, 65vw);
}

.review {
  display: none;
  margin: 0;
}

.review.is-active {
  display: block;
  animation: fade-in 360ms ease both;
}

.review p {
  font-size: clamp(1.25rem, 4vw, 2.2rem);
  line-height: 1.35;
}

.review footer {
  display: flex;
  gap: 18px;
  align-items: center;
}

.review footer span {
  color: var(--muted-ink);
}

.review-dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.review-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.review-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  content: "";
  transform: translate(-50%, -50%);
}

.review-dots button.is-active::before {
  background: var(--ink);
}

.contact-section {
  display: grid;
  gap: 32px;
  background: var(--white);
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy > p {
  max-width: 680px;
  color: var(--muted-ink);
}

.contact-form,
.checkout-form,
.auth-card form,
.verify-hero form,
.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

label > span {
  color: var(--muted-ink);
  font-weight: 400;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.contact-visual {
  min-height: 360px;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  display: grid;
  gap: 32px;
  padding: 56px 20px 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer > div:not(.footer-base) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-email {
  font-size: clamp(1.2rem, 6vw, 2.8rem);
  font-weight: 700;
}

.payment-logos {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

.payment-logos span {
  flex-basis: 100%;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-logos img {
  width: auto;
  max-width: 52px;
  height: 28px;
  padding: 4px;
  border-radius: 3px;
  background: var(--white);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 20px 0;
  color: var(--muted-ink);
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: none;
}

.page-hero {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-hero h1,
.about-hero h1,
.verify-hero h1,
.auth-card h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 730px;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.page-hero.compact h1 {
  font-size: clamp(2.7rem, 8vw, 6rem);
}

.catalog-search {
  max-width: 720px;
  margin-top: 32px;
}

.catalog-search > div {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.services-list {
  padding-top: 12px;
}

.category-preview {
  display: grid;
  gap: 36px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.category-intro p {
  max-width: 480px;
  color: var(--muted-ink);
}

.category-intro > a {
  font-weight: 700;
}

.catalog-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.catalog-grid .product-card[hidden] {
  display: none;
}

.empty-state,
.loading-state {
  padding: 32px;
  border: 1px dashed var(--line);
  color: var(--muted-ink);
  text-align: center;
}

.product-detail {
  display: grid;
  gap: 40px;
}

.detail-image {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(209, 220, 226, 0.65));
  box-shadow: inset 0 0 100px rgba(29, 29, 27, 0.13);
}

.detail-image img {
  width: 92%;
}

.detail-copy h1 {
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

.detail-copy > p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.official-order-panel {
  margin-top: 32px;
}

.official-order-panel > h5 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.official-order-panel > p {
  color: var(--muted-ink);
}

.official-addon-list {
  display: grid;
}

.detail-copy fieldset {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
}

.detail-copy legend {
  margin-bottom: 14px;
  font-weight: 700;
}

.addon {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid var(--soft-line);
  font-weight: 500;
}

.addon input {
  width: 20px;
  min-height: 20px;
}

.addon-readonly {
  grid-template-columns: minmax(0, 1fr) auto;
}

.official-order-button {
  width: 100%;
  margin-top: 18px;
}

.purchase-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.detail-price {
  font-size: 2.2rem;
}

.purchase-row label {
  width: 100px;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.parameters {
  padding-top: 20px;
}

.tab-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tab-heading h2 {
  margin: 0;
  font-size: 1.5rem;
}

.parameters table {
  width: 100%;
  border-collapse: collapse;
}

.parameters th,
.parameters td {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
}

.parameters th {
  padding-bottom: 0;
  font-size: 0.8rem;
}

.cart-shell,
.checkout-grid,
.dashboard-shell,
.admin-shell {
  padding-top: 8px;
}

.cart-layout {
  display: grid;
  gap: 28px;
}

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

.cart-line img {
  width: 70px;
  height: 86px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
}

.cart-line h3 {
  margin-bottom: 4px;
}

.cart-line p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.78rem;
}

.cart-line-controls {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cart-line-controls input {
  width: 68px;
}

.link-button {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--danger);
  text-decoration: underline;
  cursor: pointer;
}

.cart-summary {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.summary-row.total {
  margin-bottom: 18px;
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  gap: 32px;
}

.checkout-form {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.checkout-form h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.payment-pending {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: rgba(9, 173, 157, 0.08);
}

.payment-pending p {
  margin: 6px 0 0;
}

.auth-shell {
  display: grid;
  min-height: 680px;
  align-items: center;
  gap: 40px;
}

.auth-card {
  width: min(100%, 600px);
}

.auth-card > p {
  color: var(--muted-ink);
}

.inline-link {
  justify-self: start;
  font-size: 0.85rem;
}

.auth-visual {
  display: none;
}

.verify-hero {
  display: grid;
  min-height: 660px;
  align-items: center;
  gap: 40px;
}

.verify-hero > img {
  width: min(320px, 70vw);
  margin: auto;
}

.verify-result[hidden] {
  display: none;
}

.verification-reference {
  min-height: calc(100svh - 76px);
  padding: 28px 16px 44px;
  background:
    radial-gradient(circle at 11% 67%, rgba(9, 173, 157, 0.16), transparent 36%),
    radial-gradient(circle at 96% 61%, rgba(9, 173, 157, 0.11), transparent 34%),
    var(--paper);
}

.verification-reference-inner {
  width: min(100%, 1280px);
}

.verification-reference h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: -0.04em;
}

.verification-lead {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.verification-reference-form {
  display: grid;
  width: min(100%, 640px);
  margin-top: 64px;
}

.verification-reference-form label {
  display: block;
  margin: 0 4px 6px;
  font-size: 1rem;
  font-weight: 500;
}

.verification-reference-form input {
  min-height: 57px;
  margin-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.verification-reference-form .button {
  width: min(242px, 100%);
  min-height: 54px;
  margin-top: -3px;
}

.verification-reference-form .form-status:empty {
  display: none;
}

.verification-error {
  width: min(100%, 640px);
  margin: 28px 0 -36px;
  color: var(--danger);
  font-weight: 700;
}

.coa-sheet {
  width: min(calc(100% - 32px), 960px);
  margin: 36px auto 80px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.12);
}

.coa-sheet > header {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.coa-sheet > header img {
  width: 190px;
}

.coa-sheet > header span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coa-sheet h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
  overflow-wrap: anywhere;
}

.coa-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  margin: 28px 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--success);
}

.coa-sheet dl {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  gap: 0 22px;
  margin: 0 0 32px;
}

.coa-sheet dt,
.coa-sheet dd {
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
  overflow-wrap: anywhere;
}

.coa-sheet dt {
  color: var(--muted-ink);
}

.coa-sheet dd {
  margin: 0;
  font-weight: 600;
}

.coa-note {
  max-width: 74ch;
  margin: 30px 0 0;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.report-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.report-card.is-valid {
  border-top: 6px solid var(--accent);
}

.report-card dl {
  display: grid;
  grid-template-columns: minmax(100px, 0.6fr) 1fr;
  gap: 8px 16px;
  margin: 0;
}

.report-card dt {
  color: var(--muted-ink);
}

.report-card dd {
  margin: 0;
  font-weight: 600;
}

.public-search {
  max-width: 620px;
  margin-top: 28px;
}

.public-actions {
  margin-top: 24px;
}

.public-sync-note,
.form-note {
  margin-top: 14px;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.public-results {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.public-result {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.public-result h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.public-result p {
  overflow-wrap: anywhere;
}

.public-result span {
  color: var(--muted-ink);
}

.about-hero img,
.about-story img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.about-story ul {
  padding-left: 20px;
}

.about-story li {
  margin-bottom: 10px;
}

.values-section {
  border-top: 1px solid var(--line);
}

.value-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.value-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.value-grid article > span {
  color: var(--accent);
  font-size: 2rem;
}

.value-grid h3 {
  margin-top: 28px;
}

.dashboard-shell,
.admin-shell {
  display: grid;
  gap: 28px;
}

.dashboard-shell > aside,
.admin-shell > aside {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.dashboard-shell > aside h1,
.admin-shell > aside h1 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.admin-shell aside nav {
  display: grid;
  margin: 24px 0;
}

.admin-shell aside nav a {
  min-height: 44px;
  border-bottom: 1px solid var(--soft-line);
  text-decoration: none;
}

.dashboard-panel {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.dashboard-panel h2 {
  font-size: 1.9rem;
}

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

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.data-table th,
.data-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

.table-scroll {
  overflow-x: auto;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(9, 173, 157, 0.13);
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-note {
  padding: 14px;
  border-left: 4px solid var(--accent);
  background: rgba(9, 173, 157, 0.08);
}

.legal-page,
.not-found {
  min-height: 60vh;
}

.legal-page p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.legal-warning {
  padding: 16px;
  border-left: 4px solid #d69800;
  background: rgba(214, 152, 0, 0.1);
}

.cookie-settings-trigger {
  position: fixed;
  z-index: 90;
  bottom: 14px;
  left: 14px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 5px 18px 5px 6px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(29, 29, 27, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-settings-trigger svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.cookie-settings-trigger svg > circle:first-child {
  fill: rgba(9, 173, 157, 0.06);
  stroke: var(--accent);
  stroke-width: 2;
}

.cookie-settings-trigger svg > circle:not(:first-child) {
  fill: var(--accent);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 20, 0.58);
  backdrop-filter: blur(8px);
}

.cookie-consent-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 28px 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.cookie-consent-panel h2 {
  max-width: 12ch;
  padding-right: 48px;
  font-size: clamp(2rem, 7vw, 3.6rem);
}

.cookie-consent-panel > p {
  max-width: 65ch;
  color: var(--muted-ink);
}

.cookie-consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-category {
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
}

.cookie-category input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
}

.cookie-category strong,
.cookie-category small {
  display: block;
}

.cookie-category small {
  margin-top: 4px;
  color: var(--muted-ink);
  font-weight: 400;
}

.cookie-consent-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

body.cookie-dialog-open {
  overflow: hidden;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 700px) {
  .section-pad {
    padding: 88px 5vw;
  }

  .breadcrumb {
    padding-inline: 5vw;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 24px;
  }

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

  .product-card h3 {
    min-height: 4.2em;
    font-size: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
  }

  .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .payment-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .catalog-search > div {
    grid-template-columns: 1fr auto;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 260px;
  }

  .parameters th,
  .parameters td {
    display: table-cell;
    padding: 18px 12px;
  }

  .parameters th {
    width: 38%;
  }

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

  .contact-form,
  .admin-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form > label:has(textarea),
  .contact-form > .check-row,
  .contact-form > .file-label,
  .contact-form > .button,
  .contact-form > .form-status,
  .admin-form > label:has(textarea),
  .admin-form > .check-row,
  .admin-form > .button,
  .admin-form > .form-status {
    grid-column: 1 / -1;
  }

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

  .cookie-consent-panel {
    padding: 42px;
  }

  .cookie-consent-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .verification-reference {
    padding: 24px 16px 40px;
  }

  .coa-sheet > header {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 161px;
    padding: 48px 4vw;
  }

  .brand {
    width: 200px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: clamp(14px, 2vw, 32px);
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav a {
    min-height: 44px;
    border: 0;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .site-nav a:hover {
    color: var(--accent-dark);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-search {
    display: flex;
    width: 190px;
    border-bottom: 1px solid var(--line);
  }

  .header-search input {
    min-height: 42px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    font-size: 0.78rem;
  }

  .header-search button {
    min-width: 42px;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
  }

  .icon-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    min-height: calc(100svh - 92px);
    padding-top: 48px;
  }

  .hero-title p {
    font-size: 1.22rem;
  }

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

  .hero-visual img {
    width: min(90%, 500px);
  }

  .lab-band {
    min-height: 680px;
  }

  .lab-band > div {
    padding: 80px 7vw;
  }

  .choose-section {
    grid-template-columns: 1fr 0.72fr 1fr;
  }

  .about-slice,
  .about-story,
  .about-hero,
  .reviews-section,
  .contact-section,
  .auth-shell,
  .verify-hero {
    grid-template-columns: 1fr 1fr;
  }

  .about-collage img {
    height: 430px;
  }

  .payment-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .payment-strip article,
  .payment-strip article:nth-child(odd) {
    min-height: 210px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

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

  .contact-copy {
    padding-right: 5vw;
  }

  .contact-visual {
    min-height: 900px;
  }

  .site-footer {
    grid-template-columns: 2fr repeat(3, 1fr);
    padding: 84px 5vw 34px;
  }

  .site-footer .payment-logos {
    grid-column: span 2;
  }

  .footer-base {
    grid-column: 1 / -1;
  }

  .category-preview {
    grid-template-columns: minmax(250px, 0.7fr) 2fr;
    gap: 5vw;
  }

  .category-preview .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .category-preview .product-card h3 {
    font-size: 0.8rem;
  }

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

  .product-detail {
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: 6vw;
  }

  .detail-image {
    min-height: 720px;
  }

  .cart-layout,
  .checkout-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    gap: 5vw;
  }

  .auth-visual {
    display: grid;
    min-height: 620px;
    place-items: center;
  }

  .auth-visual img {
    width: min(420px, 80%);
  }

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

  .dashboard-shell,
  .admin-shell {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
  }

  .dashboard-shell > aside,
  .admin-shell > aside {
    position: sticky;
    top: 118px;
  }

  .verification-reference {
    min-height: 0;
    padding: 169px 0 100px;
  }

  .verification-reference-inner {
    width: 100%;
    padding-inline: 32px;
  }

  .verification-reference h1 {
    margin-bottom: 20px;
    font-size: 72px;
    line-height: 88px;
  }

  .verification-lead {
    margin-top: 30px;
    font-size: 30px;
    line-height: 36px;
  }

  .verification-reference-form {
    margin-top: 70px;
  }

  .verification-reference-form label {
    margin: 0 0 4px;
  }

  .verification-reference-form input {
    height: 56px;
    min-height: 56px;
    margin-bottom: 15px;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.4);
  }

  .verification-reference-form .button {
    width: 242px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .verification-reference {
    padding-top: 100px;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink: #e7f0f3;
    --muted-ink: #a8b5ba;
    --paper: #10191c;
    --paper-deep: #172529;
    --white: #1b282c;
    --line: rgba(231, 240, 243, 0.24);
    --soft-line: rgba(231, 240, 243, 0.12);
    --surface: rgba(255, 255, 255, 0.045);
    --dark-surface: #e7f0f3;
    --danger: #ff9299;
    --success: #62ddc8;
  }

  :root:not([data-theme="light"]) .button-dark {
    color: #10191c;
  }

  :root:not([data-theme="light"]) .product-image,
  :root:not([data-theme="light"]) .detail-image {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.22));
  }
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e7f0f3;
  --muted-ink: #a8b5ba;
  --paper: #10191c;
  --paper-deep: #172529;
  --white: #1b282c;
  --line: rgba(231, 240, 243, 0.24);
  --soft-line: rgba(231, 240, 243, 0.12);
  --surface: rgba(255, 255, 255, 0.045);
  --dark-surface: #e7f0f3;
}

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