:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #696969;
  --panel: #2d2d2d;
  --panel-dark: #171717;
  --line: rgba(17, 17, 17, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #171717;
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 22px rgba(255, 255, 255, 0.24),
    0 18px 50px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.08);
}

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

.nav a {
  padding: 11px 18px;
  border-radius: 999px;
  color: rgba(15, 15, 15, 0.78);
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  margin-top: -64px;
  padding: 150px 20px 72px;
  overflow: hidden;
  place-items: center;
  color: #1e1e1e;
  background:
    linear-gradient(180deg, rgba(246, 246, 243, 0.08), rgba(246, 246, 243, 0.22)),
    linear-gradient(90deg, rgba(10, 10, 10, 0.46), rgba(255, 255, 255, 0.04) 48%, rgba(10, 10, 10, 0.36)),
    url("images/upperWhite.png"),
    #d7d7d4;
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(20, 20, 20, 0.68);
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 14vw, 190px);
  line-height: 0.86;
  font-weight: 900;
  color: #242424;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.hero-text {
  width: min(620px, 100%);
  margin: 28px auto 0;
  color: rgba(20, 20, 20, 0.76);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.55;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  background: #f1f1f1;
}

.hero-button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-button:focus-visible,
.contact-form button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.contact-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  overflow: hidden;
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 0 24px rgba(255, 255, 255, 0.22);
}

.about-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: visible;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: clamp(24px, 5vw, 46px) 0;
  box-shadow: none;
}

.about-star {
  position: absolute;
  top: -88px;
  left: max(-86px, -6vw);
  z-index: 0;
  width: clamp(270px, 34vw, 430px);
  pointer-events: none;
  user-select: none;
}

.about-video {
  position: absolute;
  top: 50%;
  right: clamp(22px, 6vw, 94px);
  z-index: 1;
  width: min(44vw, 520px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transform: translateY(-50%) scaleX(1.03) skewX(-2deg);
  transform-origin: center;
  contain: layout paint;
}

.about-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle, transparent 60%, rgba(255, 255, 255, 0.2) 76%, #fff 100%);
  pointer-events: none;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.09) translateZ(0);
  backface-visibility: hidden;
}

.about-glass {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(650px, 62%);
  min-height: clamp(390px, 39vw, 470px);
  margin-left: clamp(10px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  padding: clamp(24px, 3.4vw, 34px) clamp(24px, 3.6vw, 38px);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 0 24px rgba(255, 255, 255, 0.22);
}

.about-glass::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.34), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%, rgba(0, 0, 0, 0.055));
  opacity: 0.58;
  pointer-events: none;
}

.about-glass::after {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  box-shadow:
    inset 12px 0 22px rgba(255, 255, 255, 0.22),
    inset -16px 0 28px rgba(0, 0, 0, 0.07),
    inset 0 -16px 28px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.about-glass > * {
  position: relative;
  z-index: 1;
}

.about-glass .section-kicker {
  margin-bottom: 16px;
  color: rgba(18, 18, 18, 0.78);
}

.about-glass h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.08;
}

.about-card h2,
.section-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.about-glass p:last-child {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
  width: min(520px, 100%);
  font-size: clamp(14px, 1.18vw, 15px);
  line-height: 1.62;
  font-weight: 500;
}

.contact-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

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

.section-head .section-kicker {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dedbd6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.45s ease;
}

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

.product-info {
  padding: 22px;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.product-info p {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.contact {
  position: relative;
  isolation: isolate;
  padding-bottom: 76px;
  overflow: visible;
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(34px, 5vw, 58px);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%, rgba(0, 0, 0, 0.055));
  opacity: 0.58;
  pointer-events: none;
}

.contact-panel::after {
  position: absolute;
  inset: 1px;
  z-index: 1;
  content: "";
  border-radius: inherit;
  box-shadow:
    inset 12px 0 22px rgba(255, 255, 255, 0.22),
    inset -16px 0 28px rgba(0, 0, 0, 0.07),
    inset 0 -16px 28px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-star {
  position: absolute;
  z-index: 0;
  width: clamp(250px, 32vw, 420px);
  pointer-events: none;
  user-select: none;
}

.contact-star-left {
  top: -76px;
  left: -150px;
}

.contact-star-right {
  right: -150px;
  bottom: -120px;
  transform: rotate(180deg);
}

.contact-copy .section-kicker {
  color: rgba(18, 18, 18, 0.78);
}

.contact-copy h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.95;
}

.contact-copy p:last-child {
  width: min(280px, 100%);
  margin-top: 28px;
  color: rgba(20, 20, 20, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  font-weight: 900;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(18, 18, 18, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form .wide,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 16px 18px;
  outline: none;
  background: rgba(235, 235, 235, 0.48);
  color: #171717;
  font: inherit;
  box-shadow:
    inset 0 8px 18px rgba(0, 0, 0, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.72);
}

textarea {
  min-height: 138px;
  overflow: hidden;
  resize: none;
  border-radius: 18px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(20, 20, 20, 0.34);
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 17px 22px;
  width: min(260px, 100%);
  justify-self: start;
  background: #2d2d2d;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #171717;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.contact-form button:active:not(:disabled) {
  transform: scale(0.98);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(20, 20, 20, 0.68);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    width: auto;
    margin: 0;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 0 22px rgba(255, 255, 255, 0.24),
      0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .brand {
    padding-left: 4px;
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 4px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.2);
  }

  .nav.is-open {
    display: flex;
    animation: mobileMenuDrop 0.18s ease;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 14px;
    color: rgba(15, 15, 15, 0.82);
    text-align: center;
  }

  .nav a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.34);
  }

  .hero {
    min-height: 610px;
    margin-top: 0;
    padding-top: 132px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-star-left {
    top: -120px;
    left: -150px;
  }

  .contact-star-right {
    right: -170px;
    bottom: -160px;
  }

  .contact-copy p:last-child {
    width: 100%;
    margin-top: 18px;
  }

  .about-card {
    display: block;
    min-height: 540px;
    padding: 42px 0;
  }

  .about-star {
    top: -86px;
    left: -104px;
    width: 280px;
  }

  .about-video {
    top: 62%;
    right: -42px;
    width: 360px;
    opacity: 0.5;
  }

  .about-glass {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 26px;
  }

  .about-glass h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .about-glass p:last-child {
    font-size: 15px;
  }

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

  .product-info p {
    min-height: auto;
  }
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    width: auto;
  }

  .section-pad {
    width: min(100% - 20px, 1180px);
    padding-top: 54px;
  }

  .hero {
    min-height: 530px;
    padding-inline: 14px;
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 96px);
  }

  .hero-text {
    max-width: 330px;
    font-size: 15px;
  }

  .section-head {
    display: block;
  }

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

  .contact-panel {
    gap: 24px;
    padding: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .contact-copy p:last-child {
    font-size: 17px;
    line-height: 1.15;
  }

  .contact-star {
    width: 250px;
  }

  .contact-star-left {
    top: -82px;
    left: -118px;
  }

  .contact-star-right {
    right: -118px;
    bottom: -118px;
  }

  .contact-form button {
    width: 100%;
  }

  .about-video {
    top: 66%;
    right: -92px;
    width: 245px;
    opacity: 0.38;
    border-radius: 50%;
  }

  .about-glass {
    border-radius: 22px;
    padding: 22px;
  }

  .about-glass h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .about-glass p:last-child {
    font-size: 14px;
    line-height: 1.52;
  }
}

/* Shop layer */
body.modal-open {
  overflow: hidden;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #111;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.34);
}

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

.cart-icon {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-top-width: 1px;
  border-radius: 4px;
  color: transparent;
}

.cart-icon::before {
  content: "";
  display: block;
  width: 7px;
  height: 5px;
  margin: -6px auto 0;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 11px;
}

.product-card {
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.13),
    0 4px 16px rgba(0, 0, 0, 0.05);
  outline: none;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 10px;
}

.product-title-row h3 {
  margin: 0;
}

.product-title-row .price {
  white-space: nowrap;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-sizes span {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  place-items: center;
  background: #f5f5f5;
  color: rgba(17, 17, 17, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.product-select-button,
.add-to-cart-button,
.checkout-open-button,
.payment-button {
  border: 0;
  border-radius: 999px;
  background: #2d2d2d;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.product-select-button {
  width: 100%;
  padding: 14px 18px;
}

.product-select-button:hover,
.add-to-cart-button:hover,
.checkout-open-button:hover,
.payment-button:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.product-select-button:active,
.add-to-cart-button:active,
.checkout-open-button:active,
.payment-button:active {
  transform: scale(0.98);
}

.payment-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.modal-overlay,
.drawer-overlay,
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.modal-overlay.is-open,
.drawer-overlay.is-open,
.success-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card,
.success-card {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 36px);
  margin: auto;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.modal-overlay.is-open .modal-card,
.success-modal.is-open .success-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  place-items: center;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.modal-close:hover {
  transform: scale(1.05);
  background: #000;
}

.product-modal-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: 28px;
  padding: clamp(18px, 3vw, 30px);
}

.product-modal-image {
  overflow: hidden;
  border-radius: 24px;
  background: #efefef;
  aspect-ratio: 4 / 5;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.product-modal-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 12px 18px 0;
}

.product-modal-info h2,
.checkout-copy h2,
.drawer-head h2,
.success-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 0.96;
  font-weight: 900;
}

.product-modal-description {
  margin: 18px 0 16px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

.product-modal-price {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 900;
}

.modal-row {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-picker button,
.qty-control button,
.cart-item-controls button {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #111;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.size-picker button {
  min-width: 48px;
  height: 44px;
}

.size-picker button:hover,
.size-picker button.is-selected,
.qty-control button:hover,
.cart-item-controls button:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.quantity-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.qty-control button,
.cart-item-controls button {
  width: 36px;
  height: 36px;
}

.qty-control span,
.cart-item-controls span {
  min-width: 24px;
  text-align: center;
  color: #111;
  font-weight: 900;
}

.size-guide-link {
  width: max-content;
  margin-bottom: 18px;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.add-to-cart-button {
  width: min(320px, 100%);
  padding: 16px 20px;
}

.product-modal-note,
.cart-note,
.checkout-note {
  min-height: 20px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.drawer-overlay {
  justify-items: end;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
}

.cart-drawer {
  position: relative;
  display: flex;
  width: min(470px, 100%);
  height: 100%;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.26s ease;
}

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

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.drawer-head .modal-close {
  position: static;
  flex: 0 0 auto;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.66);
}

.cart-item img {
  width: 86px;
  height: 104px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 18%;
  background: #eee;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.cart-item p {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cart-item-controls .cart-remove {
  width: auto;
  padding: 0 12px;
  background: rgba(17, 17, 17, 0.06);
  color: rgba(17, 17, 17, 0.76);
  font-size: 12px;
}

.cart-empty {
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 20px;
  padding: 22px;
  color: rgba(17, 17, 17, 0.58);
  font-weight: 800;
  line-height: 1.45;
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.cart-summary.is-disabled .checkout-open-button {
  opacity: 0.5;
}

.cart-summary div,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(17, 17, 17, 0.62);
  font-weight: 800;
}

.cart-summary strong,
.checkout-total strong {
  color: #111;
}

.checkout-open-button {
  width: 100%;
  padding: 16px 20px;
}

.checkout-card {
  width: min(1040px, 100%);
  padding: clamp(24px, 4vw, 44px);
}

.checkout-copy {
  width: min(600px, 100%);
  margin-bottom: 26px;
}

.checkout-copy p:last-child {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

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

.checkout-form label {
  display: grid;
  gap: 8px;
  color: rgba(18, 18, 18, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-form .wide {
  grid-column: 1 / -1;
}

select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 16px 18px;
  outline: none;
  background: rgba(235, 235, 235, 0.58);
  color: #171717;
  font: inherit;
  box-shadow:
    inset 0 8px 18px rgba(0, 0, 0, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.72);
}

.checkout-order {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.checkout-order h3 {
  margin: 0;
  font-size: 18px;
}

.checkout-items {
  display: grid;
  gap: 8px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.consent-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  text-transform: none !important;
  font-size: 14px !important;
  line-height: 1.35;
}

.consent-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  box-shadow: none;
}

.payment-button {
  width: min(340px, 100%);
  padding: 17px 22px;
}

.success-modal {
  place-items: center;
}

.success-card {
  width: min(560px, calc(100% - 28px));
  padding: 34px;
}

.success-card p:not(.section-kicker) {
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.55;
}

.success-card strong {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  padding: 12px 16px;
  background: #111;
  color: #fff;
}

.size-page {
  min-height: 100vh;
  padding: 120px 16px 56px;
  background: #fff;
}

.size-guide-panel {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.size-guide-panel::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  content: "";
  background: url("images/star.png") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.size-guide-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.size-guide-head h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  font-weight: 900;
}

.back-link {
  display: inline-flex;
  border-radius: 999px;
  padding: 12px 16px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.size-table-wrap {
  position: relative;
  z-index: 1;
  overflow-x: auto;
}

.size-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.size-table th,
.size-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
}

.size-table th {
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.size-table td:first-child {
  font-weight: 900;
}

.size-note {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 20px 0 0;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 860px) {
  .header-actions {
    margin-left: auto;
  }

  .cart-label {
    display: none;
  }

  .nav {
    order: 3;
  }

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

  .product-modal-image {
    max-height: 46vh;
  }

  .product-modal-info {
    padding: 0;
  }

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

  .cart-drawer {
    width: min(430px, 100%);
  }

  .size-guide-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .cart-button {
    min-height: 38px;
    padding: 8px 10px;
  }

  .modal-overlay,
  .success-modal {
    padding: 10px;
  }

  .modal-card,
  .success-card {
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .product-modal-card,
  .checkout-card,
  .success-card {
    padding: 18px;
  }

  .product-modal-info h2,
  .checkout-copy h2,
  .drawer-head h2,
  .success-card h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

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

  .cart-drawer {
    padding: 18px;
  }

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

  .cart-item img {
    width: 74px;
    height: 92px;
  }

  .checkout-item {
    display: grid;
  }

  .size-page {
    padding-top: 96px;
  }
}

@media (max-width: 860px) {
  .size-page .site-header {
    flex-wrap: nowrap;
  }

  .size-page .nav {
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    margin-top: 0;
    padding: 0;
    background: transparent;
  }

  .size-page .nav a {
    padding: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .size-page .nav a[href$="#about"],
  .size-page .nav a[href$="#contacts"] {
    display: none;
  }
}

/* Targeted polish after shop flow */
.cart-button {
  gap: 10px;
  min-height: 42px;
  padding: 7px 9px 7px 16px;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -10px 22px rgba(0, 0, 0, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -10px 22px rgba(0, 0, 0, 0.05),
    0 16px 36px rgba(0, 0, 0, 0.16);
}

.cart-icon {
  position: relative;
  width: 17px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid #111;
  border-top: 0;
  border-radius: 4px 4px 5px 5px;
}

.cart-icon::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 9px;
  height: 7px;
  margin: 0;
  border-color: #111;
  transform: translateX(-50%);
}

.cart-count {
  min-width: 26px;
  height: 26px;
  font-size: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background:
    linear-gradient(45deg, transparent 50%, #171717 50%) calc(100% - 25px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #171717 50%, transparent 50%) calc(100% - 19px) 50% / 7px 7px no-repeat,
    rgba(235, 235, 235, 0.58);
}

.back-link {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: max-content;
  padding-inline: 22px;
}

@media (max-width: 560px) {
  .cart-button {
    min-height: 40px;
    padding: 7px 8px 7px 12px;
  }

  .cart-icon {
    width: 16px;
    height: 15px;
  }

  .cart-count {
    min-width: 24px;
    height: 24px;
  }

  .back-link {
    padding-inline: 18px;
    font-size: 14px;
  }
}

.product-composition {
  display: grid;
  gap: 10px;
  width: min(390px, 100%);
  margin: 0 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(0, 0, 0, 0.05);
}

.composition-label {
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.composition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.composition-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.composition-pill strong {
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 560px) {
  .product-composition {
    margin-bottom: 18px;
    padding: 12px;
  }

  .composition-pill {
    min-height: 32px;
    font-size: 12px;
  }
}

.faq {
  padding-bottom: 76px;
}

.faq-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 28px rgba(255, 255, 255, 0.26);
}

.faq-panel::before {
  position: absolute;
  right: -170px;
  bottom: -180px;
  width: clamp(260px, 34vw, 430px);
  height: clamp(260px, 34vw, 430px);
  content: "";
  background: url("images/star.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.faq-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(640px, 100%);
  margin-bottom: 28px;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.94;
  font-weight: 900;
}

.faq-head p:last-child {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  font-weight: 700;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 26px rgba(0, 0, 0, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 16px 34px rgba(0, 0, 0, 0.075);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 18px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 20px 22px;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.18);
  outline-offset: -5px;
}

.faq-plus {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  place-items: center;
  background: #111;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  content: "";
  transition: transform 0.18s ease;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  width: min(760px, 100%);
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

@media (max-width: 560px) {
  .faq {
    padding-bottom: 54px;
  }

  .faq-panel {
    border-radius: 26px;
    padding: 24px;
  }

  .faq-head {
    margin-bottom: 20px;
  }

  .faq-question {
    grid-template-columns: 1fr 32px;
    gap: 12px;
    padding: 17px 16px;
    font-size: 16px;
  }

  .faq-plus {
    width: 32px;
    height: 32px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 14px;
    line-height: 1.55;
  }
}

.faq-panel .faq-list:first-child {
  margin-top: 0;
}

.faq .faq-panel {
  padding-top: clamp(22px, 4vw, 38px);
}

@supports (content-visibility: auto) {
  .products,
  .contact,
  .faq {
    content-visibility: auto;
  }

  .products {
    contain-intrinsic-size: auto 760px;
  }

  .contact {
    contain-intrinsic-size: auto 620px;
  }

  .faq {
    contain-intrinsic-size: auto 520px;
  }
}

/* FAQ frame refinement */
.faq {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.faq::before {
  position: absolute;
  top: -110px;
  right: max(-150px, -8vw);
  z-index: 0;
  width: clamp(270px, 35vw, 460px);
  height: clamp(270px, 35vw, 460px);
  content: "";
  background: url("images/star.png") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.faq-panel {
  position: relative;
  z-index: 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: clamp(18px, 3vw, 30px) 0 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.faq-panel::before {
  display: none;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  backdrop-filter: blur(10px) saturate(1.05);
}

@media (max-width: 560px) {
  .faq::before {
    top: -78px;
    right: -130px;
    width: 260px;
    height: 260px;
  }

  .faq-panel {
    padding-top: 8px;
  }
}

/* Keep original contact star visible above FAQ */
.faq::before {
  display: none;
  content: none;
}

@supports (content-visibility: auto) {
  .contact {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

.contact-star-right {
  z-index: 1;
}

.faq {
  isolation: auto;
}

.brand-mark {
  background: url("images/logo.png") center / contain no-repeat;
  box-shadow: none;
}

.brand-mark {
  width: 24px;
  height: 24px;
}

.checkout-items {
  gap: 10px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  padding: 10px 12px 10px 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.045);
}

.checkout-item img {
  width: 64px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 18%;
  background: #efefef;
}

.checkout-item-info {
  min-width: 0;
}

.checkout-item-info h4 {
  margin: 0 0 6px;
  color: #111;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
}

.checkout-item-info p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.checkout-item strong {
  justify-self: end;
  white-space: nowrap;
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 560px) {
  .checkout-item {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .checkout-item img {
    width: 58px;
    height: 70px;
  }

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

.checkout-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-item {
  grid-template-columns: 56px minmax(0, 1fr);
  width: min(250px, 100%);
  align-items: center;
  padding: 10px;
}

.checkout-item img {
  width: 56px;
  height: 68px;
  border-radius: 13px;
}

.checkout-item strong {
  display: none;
}

.checkout-item-info h4 {
  margin-bottom: 7px;
  font-size: 14px;
}

.checkout-item-info p {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
}

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

  .checkout-item {
    width: 100%;
    grid-template-columns: 56px minmax(0, 1fr);
  }
}

.checkout-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.checkout-item-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
}

.checkout-item-meta span:last-child {
  background: #111;
  color: #fff;
}

.checkout-item-info > p {
  display: none;
}

.checkout-items {
  display: grid;
  grid-template-columns: 1fr;
}

.checkout-item {
  grid-template-columns: 86px 1fr;
  width: 100%;
  gap: 14px;
  align-items: center;
  padding: 10px;
}

.checkout-item img {
  width: 86px;
  height: 104px;
  border-radius: 14px;
}

.checkout-item-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.checkout-item-info p {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.checkout-item-meta {
  display: none;
}

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

  .checkout-item img {
    width: 74px;
    height: 92px;
  }
}

.back-link {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.back-link:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.back-link:active {
  transform: scale(0.98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.back-link:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.faq-title {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 0 clamp(28px, 5vw, 58px);
}

.faq-title .section-kicker {
  color: rgba(17, 17, 17, 0.6);
}

.faq-title h2 {
  margin: 0;
  color: #111;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 900;
}

@media (max-width: 560px) {
  .faq-title {
    margin-bottom: 26px;
  }

  .faq-title h2 {
    font-size: clamp(36px, 12vw, 52px);
  }
}

.faq-title {
  width: min(560px, 100%);
  margin-bottom: clamp(22px, 3vw, 34px);
}

.faq-title h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

@media (max-width: 560px) {
  .faq-title h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

.faq-title {
  width: min(1060px, 100%);
  margin: 0 auto 12px;
}

.faq-title .section-kicker {
  margin: 0;
  color: rgba(17, 17, 17, 0.56);
}

.faq-title h2 {
  display: none;
}

@media (max-width: 560px) {
  .faq-title {
    margin-bottom: 10px;
  }
}

.faq-plus::before,
.faq-plus::after {
  width: 10px;
  height: 2px;
  top: 50%;
  background: #fff;
}

.faq-plus::before {
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-plus::after {
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.is-open .faq-plus::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.is-open .faq-plus::after {
  transform: translateY(-50%) rotate(45deg);
}

.product-composition {
  gap: 12px;
  padding: 16px 18px;
}

.composition-list {
  display: grid;
  gap: 8px;
}

.composition-pill {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  min-height: auto;
  border-radius: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  font-weight: 800;
}

.composition-pill:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.composition-pill strong {
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.product-composition p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.composition-list,
.composition-pill {
  all: unset;
}

/* Product card shadow fix */
.product-card {
  position: relative;
  overflow: visible;
  box-shadow: none;
  isolation: isolate;
}

.product-card::before {
  position: absolute;
  inset: auto 18px -18px;
  z-index: -1;
  height: 44px;
  border-radius: 999px;
  content: "";
  background: rgba(0, 0, 0, 0.18);
  filter: blur(24px);
  opacity: 0.34;
  pointer-events: none;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-image {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-info {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: #fff;
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: none;
}

.product-card:hover::before,
.product-card:focus-visible::before {
  opacity: 0.44;
  transform: translateY(3px) scaleX(1.04);
}

@supports (content-visibility: auto) {
  .products {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

/* Runtime optimization hints */
.product-grid,
.faq-list,
.cart-items,
.checkout-items {
  contain: layout style;
}

.about-video video {
  backface-visibility: hidden;
  transform: translateZ(0);
}