:root {
  --bg: #ffffff;
  --surface: #1a1a1a;
  --fg: #000000;
  --muted: #757575;
  --border: #5e5e5e;
  --accent: #76b900;
  --accent-hover: #bff230;
  --btn-hover: #1eaedb;
  --btn-active: #007fff;
  --link-hover: #3860be;
  --success: #3f8500;
  --error: #e52020;
  --gray-300: #a7a7a7;
  --gray-400: #898989;
  --gray-500: #757575;
  --shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
  --shadow-lift: rgba(0, 0, 0, 0.22) 0 18px 40px -12px;
  --radius: 2px;
  --font: "NVIDIA-EMEA", Arial, Helvetica, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --max: 1180px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--link-hover);
}

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

:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 18px;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 35%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
}

.logo span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo:hover {
  color: var(--fg);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-main a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  position: relative;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--fg);
}

.nav-main a:hover::after,
.nav-main a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.cart-link:hover {
  background: var(--btn-hover);
  color: var(--bg);
  border-color: var(--btn-hover);
}

.cart-link:active {
  background: var(--btn-active);
  border-color: var(--btn-active);
  color: var(--bg);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--fg);
  color: var(--bg);
  font-size: 12px;
  border-radius: 11px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 18px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--fg);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.btn:hover {
  background: var(--btn-hover);
  color: var(--bg);
  border-color: var(--btn-hover);
}

.btn:active {
  background: var(--btn-active);
  border-color: #003eff;
  color: var(--bg);
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--bg);
}

.btn-ghost {
  border-color: transparent;
  text-decoration: underline 2px var(--accent);
  text-underline-offset: 4px;
  min-height: 44px;
  padding: 8px 4px;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--link-hover);
  border-color: transparent;
  text-decoration-color: transparent;
}

.btn-sm {
  min-height: 44px;
  padding: 8px 14px;
  font-size: 14.4px;
  letter-spacing: 0.144px;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  background: var(--surface);
  color: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: translateZ(0);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

.hero-content {
  padding: 72px 0 64px;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--bg) 88%, transparent);
  max-width: 48ch;
}

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

.hero .btn {
  color: var(--bg);
  border-color: var(--accent);
}

.hero .btn:hover {
  color: var(--bg);
}

.hero .btn-primary {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}

.hero .btn-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--bg);
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 42ch;
}

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

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  transform-style: preserve-3d;
  perspective: 900px;
}

.product-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--accent);
}

.product-card-tilt {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.18s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f3f0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04) translateZ(20px);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  color: var(--fg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  border-radius: var(--radius);
}

.product-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  transform: translateZ(16px);
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.product-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.product-body h3 a:hover {
  color: var(--fg);
  text-decoration: underline 2px var(--accent);
  text-underline-offset: 3px;
}

.product-short {
  margin: 0;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.45;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.band {
  background: var(--surface);
  color: var(--bg);
}

.band .section-head h2,
.band .section-head p {
  color: var(--bg);
}

.band .section-head p {
  color: var(--gray-300);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.story-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-copy p {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--bg) 86%, transparent);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
}

.story-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.story-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.45;
}

.story-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--surface);
  background: var(--accent);
}

.story-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-4deg);
  transition: transform 0.4s var(--ease);
}

.story-visual:hover {
  transform: perspective(1000px) rotateY(0deg);
}

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

.rituals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ritual-card {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg);
  transition: border-color 0.2s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ritual-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ritual-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.ritual-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.ritual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.trust-item {
  border-top: 2px solid var(--accent);
  padding-top: 16px;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.page-hero {
  padding: 48px 0 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 35%, transparent);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 17px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}

.filter-chip {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: var(--radius);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--accent);
  background: var(--fg);
  color: var(--bg);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0 72px;
}

.product-gallery {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f3f3f0;
  border: 1px solid color-mix(in srgb, var(--border) 30%, transparent);
  transform: perspective(1200px) rotateY(-2deg);
}

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

.product-info .eyebrow {
  color: var(--muted);
}

.product-info h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px;
}

.product-info .lead {
  margin: 0 0 20px;
  color: var(--gray-400);
  font-size: 16px;
  line-height: 1.6;
}

.spec-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid color-mix(in srgb, var(--border) 35%, transparent);
  padding-top: 18px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.spec-list span:first-child {
  color: var(--muted);
}

.spec-list span:last-child {
  font-weight: 700;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 48px;
}

.qty-control button {
  width: 44px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}

.qty-control button:hover {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.qty-control input {
  width: 48px;
  height: 48px;
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-weight: 700;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  padding: 36px 0 72px;
  align-items: start;
}

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

.cart-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0 0 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
}

.cart-table td {
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 28%, transparent);
  vertical-align: middle;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f3f3f0;
}

.cart-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.cart-item span {
  font-size: 13px;
  color: var(--muted);
}

.cart-summary {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  box-shadow: var(--shadow);
}

.cart-summary h2 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.summary-row.is-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  font-size: 18px;
  font-weight: 700;
}

.summary-note {
  margin: 8px 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.empty-state {
  text-align: center;
  padding: 64px 20px;
  border: 1px dashed color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: var(--radius);
}

.empty-state h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.empty-state p {
  margin: 0 0 24px;
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 36px 0 72px;
  align-items: start;
}

.form-card {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: var(--radius);
  padding: 28px;
}

.form-card h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  border-radius: var(--radius);
  background: var(--bg);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 0;
}

.form-field .error-text {
  font-size: 12px;
  color: var(--error);
  display: none;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--error);
}

.form-field.is-invalid .error-text {
  display: block;
}

.pay-options {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 45%, transparent);
  border-radius: var(--radius);
  cursor: pointer;
}

.pay-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.45;
}

.alert-success {
  background: color-mix(in srgb, var(--success) 12%, var(--bg));
  border: 1px solid var(--success);
  color: var(--fg);
}

.alert-error {
  background: color-mix(in srgb, var(--error) 10%, var(--bg));
  border: 1px solid var(--error);
}

.alert-info {
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  border: 1px solid var(--accent);
}

.legal-content {
  max-width: 72ch;
  padding: 36px 0 72px;
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 1.2em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 36px 0 72px;
}

.contact-card {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-list a {
  font-weight: 700;
  text-decoration: underline 2px var(--accent);
  text-underline-offset: 3px;
}

.contact-list a:hover {
  color: var(--link-hover);
  text-decoration-color: transparent;
}

.site-footer {
  background: var(--surface);
  color: var(--bg);
  padding: 56px 0 28px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo span {
  color: var(--gray-300);
}

.footer-brand p {
  margin: 0;
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.55;
  max-width: 34ch;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--bg);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--link-hover);
}

.footer-col p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  font-size: 12px;
  color: var(--gray-300);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  color: var(--bg);
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 48ch;
}

.cookie-banner a {
  color: var(--bg);
  text-decoration: underline 1px var(--accent);
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--link-hover);
}

.toast {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  right: 16px;
  z-index: 180;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.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: 1100px) {
  .grid-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid color-mix(in srgb, var(--border) 35%, transparent);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    display: none;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main a {
    min-height: 48px;
  }

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

  .story-grid,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    transform: none;
    min-height: 280px;
  }

  .rituals,
  .trust-row {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    padding: 16px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 28%, transparent);
  }

  .cart-table td {
    border: 0;
    padding: 6px 0;
  }

  .product-gallery {
    transform: none;
  }
}

@media (max-width: 560px) {
  .grid-products {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 56px 0 48px;
  }

  .section {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-card-tilt,
  .story-visual,
  .product-gallery,
  .hero-media {
    transform: none !important;
  }

  .product-card:hover .product-media img {
    transform: none;
  }
}
