/* Scentio — Mobile-first stylesheet */

:root {
  --pink: #e8c5c1;
  --pink-dark: #ddb8b3;
  --pink-light: #f0d4d0;
  --black: #1a1a1a;
  --white: #ffffff;
  --gold: #c9a962;
  --grey: #6b6b6b;
  --grey-light: #f5f5f3;
  --grey-border: #e8e8e6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-hero: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --container: min(1200px, 100% - 2rem);
  --announcement-height: 2.375rem;
  --header-height: 4.5rem;
  --hero-width: 1920px;
  --hero-height: 960px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover { background: #333; }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.6875rem; }

.btn--full { width: 100%; }

/* Announcement bar */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.625rem 0;
}

.announcement-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.announcement-bar__divider { opacity: 0.4; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo__icon {
  width: 1.75rem;
  height: auto;
  color: var(--black);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-hero);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo__text small {
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  z-index: 99;
}

.main-nav.is-open { transform: translateX(0); }

.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav__list a {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-border);
}

.main-nav__list a.is-active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.header-actions__btn svg {
  width: 1.375rem;
  height: 1.375rem;
}

.cart-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-align: center;
  border-radius: 999px;
}

/* Flash messages */
.flash {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.flash--success { background: #e8f5e9; color: #2e7d32; }
.flash--error { background: #ffebee; color: #c62828; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 50%, var(--pink-dark) 100%);
  overflow: hidden;
}

.hero--full {
  position: relative;
  width: 100%;
  background: var(--pink);
  overflow: hidden;
}

body.page-home .hero.hero--full {
  width: 100%;
  max-width: none;
  height: var(--hero-height);
  min-height: var(--hero-height);
  max-height: var(--hero-height);
  flex: 0 0 var(--hero-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__bg .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  max-height: var(--hero-height);
  box-sizing: border-box;
  padding: calc(var(--header-height) + 1rem) clamp(1rem, 5vw, 6rem) 2rem;
}

.hero__content {
  max-width: 36rem;
  padding: 0;
}

.hero__inner {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.hero--full h1 {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 2rem;
  max-width: 26rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50%;
  line-height: 1.35;
}

/* Atomizer visual (CSS product mockup) */
.atomizer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atomizer__cap {
  width: 1.5rem;
  height: 0.875rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--product-color, #e8a0bf) 90%, white) 0%, var(--product-color, #e8a0bf) 50%, color-mix(in srgb, var(--product-color, #e8a0bf) 80%, black) 100%);
  border-radius: 0.2rem 0.2rem 0 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.atomizer__body {
  width: 2rem;
  height: 5.5rem;
  background: linear-gradient(90deg, 
    color-mix(in srgb, var(--product-color, #e8a0bf) 70%, black) 0%,
    var(--product-color, #e8a0bf) 25%,
    color-mix(in srgb, var(--product-color, #e8a0bf) 85%, white) 50%,
    var(--product-color, #e8a0bf) 75%,
    color-mix(in srgb, var(--product-color, #e8a0bf) 80%, black) 100%
  );
  border-radius: 0.35rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
  position: relative;
}

.atomizer__body::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.875rem;
  background: linear-gradient(180deg, #c0c0c0, #e8e8e8, #a0a0a0);
  border-radius: 0.125rem;
}

.atomizer--card .atomizer__cap { width: 1.25rem; height: 0.75rem; }
.atomizer--card .atomizer__body { width: 1.75rem; height: 4.5rem; }

.atomizer--hero .atomizer__body { width: 4.5rem; height: 10rem; }
.atomizer--hero .atomizer__cap { width: 2.5rem; height: 1.5rem; }

.hero__atomizers {
  position: absolute;
  right: clamp(2rem, 12vw, 10rem);
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
}

/* USP bar */
.usp-bar {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
}

.usp-bar__grid {
  display: grid;
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp-item svg {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.usp-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.usp-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section--grey { background: var(--grey-light); }

.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__header p {
  color: var(--grey);
  max-width: 36rem;
  margin-inline: auto;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.product-card:hover { box-shadow: var(--shadow); }

.product-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__info {
  padding: 1rem;
  text-align: center;
}

.product-card__color {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.product-card__price {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

/* Lifestyle section */
.lifestyle {
  display: grid;
}

.lifestyle__image {
  min-height: 280px;
  background: linear-gradient(135deg, #d4c4b0 0%, #c9b89a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lifestyle__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cellipse cx='200' cy='220' rx='120' ry='40' fill='%23b8a088' opacity='.3'/%3E%3C/svg%3E") center/cover;
}

.lifestyle__handbag {
  position: relative;
  z-index: 1;
  width: 8rem;
  height: 6rem;
  background: #c4a882;
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: var(--shadow);
}

.lifestyle__handbag::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2rem;
  border: 3px solid #a08868;
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
}

.lifestyle__content {
  background: var(--pink);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle__label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Trust bar */
.trust-bar {
  background: var(--grey-light);
  padding: 2rem 0;
  border-top: 1px solid var(--grey-border);
}

.trust-bar__grid {
  display: grid;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.trust-item svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.trust-item strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* Footer */
.footer-main {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
}

.footer-main h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-main ul li { margin-bottom: 0.5rem; }

.footer-main a:hover { color: var(--gold); }

.footer-main__grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 20rem;
}

.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__text small { color: rgba(255,255,255,0.5); }

.footer-bottom {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 1.25rem 0;
  font-size: 0.75rem;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.payment-icons span {
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.6875rem;
  font-weight: 600;
}

/* Page layouts */
.page-header {
  background: var(--pink-light);
  padding: 2.5rem 0;
  text-align: center;
}

.page-header p { color: var(--grey); margin: 0; }

.page-content {
  padding: 2.5rem 0 4rem;
}

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
}

.product-detail__gallery {
  background: var(--grey-light);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-detail__gallery .atomizer__body { width: 5rem; height: 12rem; }
.product-detail__gallery .atomizer__cap { width: 3rem; height: 1.75rem; }

.product-detail__price {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}

.product-detail__color {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.color-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid var(--grey-border);
}

.add-to-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
}

.qty-input button {
  width: 2.5rem;
  height: 2.75rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
}

.qty-input input {
  width: 3rem;
  height: 2.75rem;
  border: none;
  border-left: 1px solid var(--grey-border);
  border-right: 1px solid var(--grey-border);
  text-align: center;
  font-family: inherit;
  font-size: 0.9375rem;
}

.product-features {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--grey-light);
  border-radius: var(--radius);
}

.product-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.product-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* Cart & checkout */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--grey-border);
  text-align: left;
  vertical-align: middle;
}

.cart-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.cart-item__info { display: flex; align-items: center; gap: 1rem; }

.cart-item__thumb {
  width: 4rem;
  height: 4rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-summary {
  background: var(--grey-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 24rem;
  margin-left: auto;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.cart-summary__row--total {
  font-weight: 700;
  font-size: 1.125rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-border);
  margin-top: 0.75rem;
}

.checkout-grid {
  display: grid;
  gap: 2rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--pink-dark);
  outline-offset: 0;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row--2 { grid-template-columns: 1fr 1fr; }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--grey-border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item__answer {
  padding-bottom: 1.25rem;
  color: var(--grey);
  font-size: 0.9375rem;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state p { color: var(--grey); margin-bottom: 1.5rem; }

/* Overlay for mobile nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 98;
}

.nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* Tablet */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop */
@media (min-width: 900px) {
  /* Homepage: transparante header over hero */
  body.page-home {
    position: relative;
  }

  body.page-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
  }

  body.page-home .site-header .container {
    width: min(1200px, 100% - 3rem);
  }

  body.page-home.has-announcement .site-header {
    top: var(--announcement-height);
  }

  body.page-home .logo__icon,
  body.page-home .logo__text strong,
  body.page-home .main-nav__list a,
  body.page-home .header-actions__btn {
    color: var(--black);
  }

  body.page-home .logo__text small {
    color: var(--grey);
  }

  body.page-home .hero--full .hero__layout {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-left: clamp(2rem, 8vw, 10rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
    height: var(--hero-height);
    max-height: var(--hero-height);
  }

  body.page-home .hero--full .hero__content {
    max-width: 34rem;
  }

  body.page-home .hero--full .hero__badge {
    top: calc(var(--header-height) + 2rem);
    right: clamp(2rem, 8vw, 6rem);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 1.125rem 0;
  }

  .nav-toggle { display: none; }

  .main-nav {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
    justify-self: center;
  }

  .main-nav__list {
    flex-direction: row;
    gap: 2.25rem;
  }

  .main-nav__list a {
    padding: 0.5rem 0;
    border: none;
    position: relative;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .main-nav__list a.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--black);
  }

  .usp-bar__grid { grid-template-columns: repeat(4, 1fr); }

  .product-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

  .lifestyle { grid-template-columns: 1fr 1fr; }

  .lifestyle__content { padding: 4rem 3rem; }

  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }

  .footer-main__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .product-detail { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .checkout-grid { grid-template-columns: 1.2fr 0.8fr; }

  .cart-table .hide-mobile { display: table-cell; }
}

@media (max-width: 899px) {
  .hide-mobile { display: none; }

  body.page-home .hero.hero--full {
    height: auto;
    min-height: 480px;
    max-height: none;
    flex: none;
  }

  body.page-home .hero--full .hero__layout {
    min-height: 480px;
    max-height: none;
    height: auto;
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero__badge {
    top: auto;
    bottom: 1.5rem;
    right: 1rem;
  }
}

@media (min-width: 1200px) {
  .section { padding: 4rem 0; }
}
