:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #6b6a64;
  --paper: #f4f2ec;
  --white: #ffffff;
  --stone: #d8d0c2;
  --moss: #4d5a47;
  --clay: #a46d52;
  --line: rgba(17, 17, 15, 0.14);
  --shadow: 0 22px 60px rgba(17, 17, 15, 0.14);
}

@property --hero-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-solid {
  background: rgba(244, 242, 236, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
.site-header.is-solid .brand-logo {
  filter: invert(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(72px, 7vw, 104px);
}

.brand-logo {
  width: 100%;
  height: auto;
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-icon-link {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.cart-nav-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  display: none;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 10px;
  line-height: 1;
}

.cart-nav-count.is-visible {
  display: grid;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: #1f211d;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  opacity: 0;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 2600ms ease;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-desktop-video {
  display: block;
}

.hero-mobile-video {
  display: none;
}

@media (max-width: 860px) {
  .hero-desktop-video {
    display: none;
  }

  .hero-mobile-video {
    display: block;
  }
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.32));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin: 0;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}

.hero-countdown {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-countdown span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-countdown time {
  color: var(--white);
}

.hero-controls {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 58px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-dot {
  position: relative;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dot.is-active {
  transform: scale(1.12);
  background: var(--white);
}

.hero-dot.is-active::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(var(--white) var(--hero-progress, 0deg), rgba(255, 255, 255, 0.26) 0deg);
  mask: radial-gradient(circle, transparent 58%, #000 60%);
  animation: heroProgress 3s linear forwards;
}

@keyframes heroProgress {
  from {
    --hero-progress: 0deg;
  }

  to {
    --hero-progress: 360deg;
  }
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--moss);
}

.hero .eyebrow {
  color: #d8e2cf;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  font-size: clamp(54px, 10vw, 142px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.15;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.launch-strip,
.split-section,
.early-access,
.section-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.launch-image-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 60px auto 0;
  text-align: center;
}

.launch-strip-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  display: inline-block;
}

.launch-strip p:not(.eyebrow),
.split-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

.product-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 38px 0 82px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.home-strip-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 38px 0 82px;
}

.home-strip-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-strip-scroll::-webkit-scrollbar {
  display: none;
}

.home-strip {
  display: flex;
  gap: 10px;
  width: max-content;
}

.home-strip-item {
  flex: 0 0 auto;
  width: 200px;
  height: 266px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #e8e4da;
  transition: transform 180ms ease;
}

@media (max-width: 860px) {
  .home-strip-item {
    width: 160px;
    height: 213px;
  }
}

.home-strip-item:hover {
  transform: translateY(-4px);
}

.home-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 17, 15, 0.85);
}

.home-lightbox.is-hidden {
  display: none;
}

.home-lightbox-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 44px);
}

.home-lightbox-media {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: #e8e4da;
  border-radius: 12px;
  overflow: hidden;
}

.home-lightbox-media img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  object-fit: contain;
  display: block;
}

.home-lightbox-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card {
  min-height: 530px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.product-card.tall {
  min-height: 680px;
}

.product-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #e8e4da;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.025);
}

.product-meta {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.product-meta span,
.archive-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 90px);
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.split-copy h2 {
  max-width: 9ch;
  margin-bottom: 26px;
}

.archive-list {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
}

.archive-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.archive-list strong {
  font-size: clamp(20px, 3vw, 34px);
  text-transform: uppercase;
}

.lookbook {
  padding: 70px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.lookbook .eyebrow {
  color: #d8e2cf;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 11ch;
}

.lookbook-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  gap: 14px;
}

.lookbook figure {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #2c2b27;
}

.look-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.look-two div,
.look-three div {
  height: 100%;
}

.look-two div {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, #d4ccbd 0 18%, transparent 19%),
    linear-gradient(150deg, #3c4037, #191916);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.look-three div {
  background:
    linear-gradient(90deg, var(--paper) 0 25%, var(--stone) 25% 50%, var(--moss) 50% 75%, var(--clay) 75% 100%);
}

.early-access {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  padding: 82px 0;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signup-form input {
  flex: 1 1 240px;
  min-height: 52px;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 15px;
  color: var(--ink);
  font: inherit;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--moss);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-social-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    padding: 4px 18px;
  }

  .brand {
    width: 80px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    margin: 0;
  }

  .hero-controls {
    right: 18px;
    bottom: 20px;
  }

  h1 {
    font-size: clamp(52px, 18vw, 86px);
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .launch-strip,
  .split-section,
  .early-access,
  .product-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .launch-strip {
    padding-top: 52px;
  }

  .product-card,
  .product-card.tall {
    min-height: 520px;
  }

  .lookbook figure {
    min-height: 420px;
  }

  .early-access {
    align-items: start;
  }

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

.collection-page {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  padding: 120px 0 60px;
}

.collection-heading {
  margin-bottom: 28px;
}

.collection-heading h2 {
  margin-top: 0;
}

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

.product-grid-status {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 15px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  min-height: 0;
}

.collection-product-card {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
  border-radius: 12px;
}

.product-card-brand {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.product-card-name {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}

.product-card-price {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.lang-switcher button {
  background: none;
  border: none;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: inherit;
  color: inherit;
  opacity: 0.65;
  cursor: pointer;
  padding: 4px 3px;
  transition: opacity 180ms ease;
  text-decoration: none;
}

.lang-switcher button.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-switcher button:not(.is-active):hover {
  opacity: 1;
}

@media (max-width: 860px) {
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    margin-top: 8px;
  }

  .lang-switcher button {
    padding: 8px 6px;
  }
}

body.is-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 17, 15, 0.48);
}

.product-modal.is-hidden {
  display: none;
}

.product-modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.product-modal-media {
  position: relative;
  min-height: 520px;
  background: #e8e4da;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease;
}

.product-modal-nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.product-modal-nav--prev {
  left: 12px;
}

.product-modal-nav--next {
  right: 12px;
}

.product-modal-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-modal-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.product-modal-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.product-modal-info {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.product-modal-info h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 56px);
}

.product-modal-price {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 800;
}

.product-modal-copy,
.product-modal-note {
  color: var(--muted);
  line-height: 1.55;
}

.product-modal-showmore {
  background: none;
  border: none;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  text-align: left;
  margin-top: 4px;
}

.product-modal-showmore:hover {
  opacity: 0.7;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.size-button {
  width: 48px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.size-button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.size-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-add-button {
  width: 100%;
  margin-top: 12px;
}

.checkout-page {
  width: min(1180px, calc(100% - 24px));
  min-height: 80vh;
  margin: 0 auto;
  padding: 120px 0 72px;
}

.checkout-heading {
  margin-bottom: 28px;
}

.order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.order-tab {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.order-tab.is-active {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.order-panel {
  display: none;
}

.order-panel.is-active {
  display: block;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.cart-surface,
.checkout-form {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px);
}

.checkout-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-section-heading h3 {
  margin: 0;
}

.checkout-section-heading a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-items,
.orders-list,
.checkout-fields {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.cart-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #e8e4da;
}

.cart-item-info h3 {
  margin: 0 0 6px;
}

.cart-item-info p {
  margin: 0 0 8px;
  color: var(--muted);
}

.quantity-control {
  display: grid;
  grid-template-columns: 38px 34px 38px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button {
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.quantity-control span {
  text-align: center;
  font-weight: 800;
}

.checkout-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-fields input {
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.delivery-toggle {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
}

.delivery-toggle input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--ink);
}

.delivery-fields {
  display: grid;
  gap: 12px;
}

.delivery-fields.is-hidden {
  display: none;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 12px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

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

.checkout-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout-submit {
  width: 100%;
  margin-top: 18px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.payment-icons img {
  width: auto;
  height: 28px;
  max-width: 88px;
  object-fit: contain;
}

.checkout-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--moss);
  font-weight: 700;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state p {
  color: var(--muted);
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.order-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-card h3,
.order-card p {
  margin: 0;
}

.order-card p {
  margin-top: 6px;
  color: var(--muted);
}

.order-card-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.order-card-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .nav-icon-link {
    width: auto;
    height: auto;
    justify-self: start;
    border: 0;
    border-radius: 0;
  }

  .checkout-layout,
  .product-modal-panel {
    grid-template-columns: 1fr;
  }

  .product-modal-media {
    min-height: auto;
  }

  .product-modal-media img {
    aspect-ratio: 3 / 4;
  }

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

  .cart-item img {
    width: 76px;
  }

  .quantity-control {
    grid-column: 1 / -1;
    width: max-content;
  }

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

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .button,
  .form-row .button {
    width: 100%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.34));
  }

  .hero-dot {
    width: 13px;
    height: 13px;
  }

  .hero-dot.is-active {
    transform: scale(1.12);
  }
}
