﻿:root {
  --black: #050505;
  --ink: #121212;
  --graphite: #202226;
  --muted: #75777c;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f7f7f4;
  --white: #ffffff;
  --gold: #c8a45d;
  --blue: #3c6df0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__brand {
  display: grid;
  gap: 18px;
  justify-items: center;
  color: var(--white);
  animation: loaderFade 900ms ease both;
}

.brand,
.loader__brand {
  letter-spacing: 0.08em;
  font-weight: 900;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 164, 93, 0.7);
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 280ms ease, box-shadow 280ms ease, padding 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

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

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

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

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 93, 0.65);
  background: rgba(200, 164, 93, 0.16);
}

.icon {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.cart-count.bump {
  animation: countBump 420ms ease;
}

.menu-button {
  display: none;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 72px) 54px;
  color: var(--white);
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.52) 46%, rgba(0, 0, 0, 0.12) 100%),
    url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1800&q=80") center / cover fixed;
  transform: scale(1.03);
}

.hero__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, var(--black), rgba(0, 0, 0, 0));
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-x: hidden;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--gold);
  color: var(--black);
}

.button--primary:hover {
  background: #dfbd72;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 93, 0.12);
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__stats span {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero__stats strong {
  color: var(--white);
  font-size: 1.1rem;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 56px);
}

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

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--store {
  background: #ececea;
}

.section--benefits {
  background: var(--graphite);
  color: var(--white);
}

.categories-grid,
.products-grid,
.benefits-grid,
.testimonials-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.category-card__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.category-card__info {
  display: grid;
  gap: 10px;
  padding: 22px 20px 24px;
  background: var(--category-bg);
  color: var(--white);
}

.category-card__info h3,
.category-card__info p {
  margin: 0;
}

.category-card__info h3 {
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.category-card__info p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

.products-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filters {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  opacity: 1 !important;
  transform: none !important;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.42);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
  padding: 22px;
  background: var(--product-bg);
}

.product-preview {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.01);
}

.product-media::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.product-media::after {
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.14);
  content: "70";
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.product-visual {
  position: absolute;
  inset: 44px 36px 54px;
  border-radius: 36px 36px 12px 12px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: skewX(-7deg);
  transition: transform 360ms ease;
}

.product-card:hover .product-visual {
  transform: scale(1.06) skewX(-7deg);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-info p {
  min-height: 44px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.05rem;
  font-weight: 900;
}

.add-to-cart {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  opacity: 0.92;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.product-card:hover .add-to-cart {
  background: var(--gold);
  color: var(--black);
  opacity: 1;
}

.add-to-cart:active {
  transform: scale(0.96);
}

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 56px);
  background: var(--black);
  color: var(--white);
}

.brand-story__image {
  min-height: 620px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1487222477894-8943e31ef7b2?auto=format&fit=crop&w=1000&q=80") center / cover;
}

.brand-story__content {
  max-width: 560px;
}

.brand-story p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.benefit-card,
.testimonial-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.benefit-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

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

.testimonial-card {
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  color: var(--graphite);
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
}

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

.section--faq {
  background: #e7e7e5;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
}

details {
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: end;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.74)),
    url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: var(--white);
}

.newsletter__form,
.contact-form,
.checkout-form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 15px 16px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.16);
}

.contact-section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 56px);
  background: var(--paper);
}

.contact-form {
  width: min(720px, 100%);
  margin: 0 auto;
}

.footer {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px clamp(20px, 5vw, 56px) 28px;
  background: var(--black);
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer a {
  display: block;
  margin: 8px 0;
  transition: color 180ms ease;
}

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

.footer h3 {
  color: var(--white);
}

.footer__copy {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(5px);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100vw);
  height: 100dvh;
  background: var(--white);
  box-shadow: -26px 0 80px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  transition: transform 300ms ease;
}

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

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--black);
  color: var(--white);
}

.cart-panel__header h2 {
  font-size: 1.8rem;
}

.cart-items {
  overflow: auto;
  padding: 20px;
}

.cart-empty {
  margin: 60px 0;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  animation: cartItemIn 260ms ease both;
}

.cart-thumb {
  width: 82px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--product-bg);
}

.cart-item h3 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.cart-item p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.qty-controls span {
  min-width: 30px;
  text-align: center;
  font-weight: 800;
}

.remove-item {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f1f1ef;
  color: var(--muted);
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f4f4f1;
}

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

.cart-summary__total {
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

dialog {
  width: min(520px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.checkout-form,
.success-modal > div {
  position: relative;
  padding: 28px;
}

.checkout-form h2,
.success-modal h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #efefed;
  color: var(--ink);
  font-size: 1.4rem;
}

.payment-note {
  padding: 14px;
  border-radius: var(--radius);
  background: #f1efe8;
  color: #6f5a2c;
  font-size: 0.9rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.success-modal {
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.slide-left {
  transform: translateX(-36px);
}

.reveal.slide-right {
  transform: translateX(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes loaderFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countBump {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.28);
  }
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1040px) {
  .products-grid,
  .categories-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-story,
  .newsletter,
  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px;
  }

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

  .hero {
    min-height: 92vh;
    padding: 126px 20px 34px;
  }

  .hero__media {
    background-attachment: scroll;
    background-position: 62% center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .products-grid,
  .products-grid--featured,
  .categories-grid,
  .benefits-grid,
  .testimonials-grid,
  .brand-story,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

  .brand-story__image {
    min-height: 360px;
  }

  .product-media {
    min-height: 240px;
  }

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

  .remove-item {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 460px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .section,
  .brand-story,
  .newsletter,
  .contact-section {
    padding-inline: 16px;
  }
}

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

  .hero__media {
    background-attachment: scroll;
  }
}



@media (max-width: 780px) {
  .reveal.slide-left:not(.is-visible),
  .reveal.slide-right:not(.is-visible) {
    transform: translateY(28px);
  }
}
