:root {
  --bg: #050505;
  --panel: #111;
  --panel-2: #181818;
  --soft: #262626;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f4ef;
  --muted: #a5a3a0;
  --accent: #d86e48;
  --accent-dark: #9f4529;
  --warm: #e7b176;
  --white: #fff;
  --max: 1240px;
  --radius: 16px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: #000;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 108px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.brand-main {
  font-size: 1.04rem;
  font-weight: 800;
}

.brand-main em {
  color: var(--accent);
  font-style: normal;
}

.brand-kicker {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 7px;
  color: #858585;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  font-size: 0.95rem;
  font-weight: 740;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--text);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.icon-button:active {
  transform: scale(0.94);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(80vh, 840px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111;
}

.hero-media {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center 48%;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 50%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  min-height: min(80vh, 840px);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(48px, 8vw, 88px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 680px;
  margin: 16px 0 24px;
  font-size: clamp(3.15rem, 7vw, 7.4rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero h1 span {
  color: var(--warm);
  font-weight: 520;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--text);
  color: #050505;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.button.accent {
  background: var(--accent);
  color: #fff;
}

.hero-note {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.55;
}

.trust-rail {
  overflow: hidden;
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.trust-label {
  margin-bottom: 22px;
  text-align: center;
  color: #b8b8b8;
  font-size: 0.78rem;
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
  padding-right: clamp(56px, 8vw, 110px);
}

.compat-logo {
  color: #dfdfdf;
  font-size: clamp(0.98rem, 1.7vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.compat-logo small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

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

.section {
  padding: clamp(76px, 10vw, 138px) 0;
}

.section.compact {
  padding: 72px 0;
}

.section-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

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

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-heading p {
  max-width: 490px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.87rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel-2);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f0ed;
  color: #0d0d0d;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.product-card:hover {
  z-index: 2;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

.product-card-link {
  display: block;
}

.product-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.product-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.45));
  content: "";
}

.product-pack {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 56%;
  min-height: 63%;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.76)),
    var(--pack-image) center / cover;
  box-shadow: 22px 26px 34px rgba(0, 0, 0, 0.38);
  color: #fff;
  transform: translate(-50%, -50%) perspective(700px) rotateY(-7deg) rotateX(3deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-pack {
  transform: translate(-50%, -52%) perspective(700px) rotateY(0deg) rotateX(0deg);
}

.pack-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pack-title {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 820;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-info {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 24px;
}

.product-info h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.product-meta {
  color: #696764;
  font-size: 0.8rem;
  line-height: 1.45;
}

.product-price {
  margin-top: 12px;
  font-size: 0.91rem;
  font-weight: 760;
}

.quick-add {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: end;
  border: 1px solid #d5d1cb;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.quick-add:hover {
  background: #111;
  color: #fff;
  transform: rotate(90deg);
}

.comparison-section {
  padding-top: 34px;
}

.comparison-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
}

.comparison {
  --position: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  filter: grayscale(0.35) saturate(0.45) contrast(0.82) brightness(0.78);
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  z-index: 3;
  top: 24px;
  font-size: 0.9rem;
  font-weight: 800;
}

.comparison-label.before {
  left: 24px;
}

.comparison-label.after {
  right: 24px;
}

.comparison-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 0.8rem;
  transform: translate(-50%, -50%);
}

.comparison-range {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-caption {
  display: flex;
  justify-content: center;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.editorial-card {
  position: relative;
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.78);
  transition:
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
}

.editorial-card:hover img {
  filter: saturate(0.98) brightness(0.88);
  transform: scale(1.04);
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 68%);
  content: "";
}

.editorial-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.editorial-copy small {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-copy h3 {
  max-width: 280px;
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 2.6vw, 2.45rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-banner {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.brand-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.38) saturate(0.8);
}

.brand-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.5));
  content: "";
}

.brand-banner-copy {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  text-align: center;
}

.brand-banner-copy p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.68rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-banner-title {
  font-size: clamp(2.7rem, 6vw, 6.7rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.brand-banner-title span {
  color: var(--accent);
}

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

.benefit {
  text-align: center;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit h3 {
  margin: 0 0 10px;
  font-size: 0.96rem;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.newsletter {
  border-top: 1px solid var(--line);
  background: var(--panel-2);
}

.newsletter-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(70px, 9vw, 118px) 0;
}

.newsletter h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.newsletter p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.field {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 0 19px;
  transition: border-color 180ms ease;
}

.field:focus {
  border-color: rgba(255, 255, 255, 0.52);
}

textarea.field {
  min-height: 155px;
  resize: vertical;
  border-radius: 18px;
  padding-top: 16px;
}

.site-footer {
  background: var(--panel-2);
  color: var(--muted);
}

.footer-main {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding: 40px 0 70px;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 0.84rem;
}

.footer-column p,
.footer-column a {
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 6px 0;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 32px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.page-hero {
  padding: clamp(85px, 12vw, 160px) 0 clamp(60px, 8vw, 105px);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.page-hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 780;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--text);
  background: var(--text);
  color: #111;
}

.faq-list {
  width: min(100%, 880px);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 26px 48px 26px 0;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 720;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  max-width: 750px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 9vw, 130px);
}

.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.contact-point {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-point small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-point strong {
  font-size: 0.93rem;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  display: grid;
  gap: 8px;
  color: #d8d6d3;
  font-size: 0.72rem;
  font-weight: 750;
}

.product-detail {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(46px, 7vw, 100px);
  padding: clamp(65px, 8vw, 110px) 0;
}

.product-detail-art {
  position: sticky;
  top: 140px;
  height: fit-content;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.product-detail-copy {
  align-self: center;
}

.detail-kicker {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-detail h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5.35rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.detail-price {
  margin: 0 0 28px;
  font-size: 1.25rem;
  font-weight: 780;
}

.detail-description {
  color: var(--muted);
  line-height: 1.75;
}

.detail-list {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #d5d3d0;
  font-size: 0.87rem;
}

.detail-list li::before {
  color: var(--accent);
  content: "✓";
}

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

.drawer-backdrop,
.search-backdrop {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.drawer-backdrop.open,
.search-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #111;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 55vh;
  color: var(--muted);
  text-align: center;
}

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

.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 9px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 7px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-footer {
  padding: 22px 24px 28px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.drawer-footer .button {
  width: 100%;
}

.drawer-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.search-panel {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  padding: 25px max(24px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: #111;
  transform: translateY(-110%);
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.search-panel.open {
  transform: translateY(0);
}

.search-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 680;
  letter-spacing: -0.04em;
}

.search-input::placeholder {
  color: #555;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 18px;
}

.search-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.search-result img {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: cover;
}

.search-result strong {
  display: block;
  font-size: 0.75rem;
  line-height: 1.35;
}

.search-result small {
  color: var(--muted);
  font-size: 0.67rem;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #f4f1ec;
  color: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(5rem, 15vw, 13rem);
  letter-spacing: -0.09em;
}

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

@media (max-width: 960px) {
  .site-header {
    height: 86px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: fixed;
    z-index: 75;
    top: 86px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: #0b0b0b;
    transform: translateY(-140%);
    transition: transform 280ms ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
    font-weight: 760;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 50px;
  }

  .newsletter-inner,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

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

  .product-detail-art {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .page-hero-inner,
  .product-detail,
  .footer-main,
  .footer-bottom,
  .newsletter-inner,
  .hero-content {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .hero,
  .hero-content {
    min-height: 72vh;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    max-width: 310px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

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

  .product-info {
    min-height: 128px;
  }

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

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

  .newsletter-form,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-form .button,
  .detail-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .brand-sub {
    display: none;
  }

  .brand-main {
    font-size: 0.9rem;
  }
}

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