/* EASTONLY ARCHIVE — shared styles */

:root {
  --bg: #fdf9f6;
  --bg-alt: #fff9f8;
  --black: #0a0a0a;
  --grey: #6b6b6b;
  --grey-light: #e8e4e0;
  --red: #7b1e23;
  --red-dark: #631619;
  --green: #4b5320;
  --pink: #f5e6e4;
  --pink-border: #e8c4c0;
  --white: #ffffff;
  --max-width: 1280px;
  --header-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --surface-shadow: 0 14px 38px rgba(10, 10, 10, 0.06);
  --motion-fast: 150ms;
  --motion-base: 260ms;
  --ease-spring: cubic-bezier(0.34, 1.36, 0.64, 1);
  --motion-reveal-distance: 14px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid #8f1d2c;
  outline-offset: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

@media (max-width: 640px) {
  .form-field input,
  .form-field select,
  .form-field textarea,
  .country-picker__search,
  .country-picker__trigger,
  .filters select,
  .search-bar input {
    font-size: 16px;
  }
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--grey-light);
  height: var(--header-h);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.header__logo img {
  width: 200px;
  height: auto;
  max-height: 68px;
  display: block;
  object-fit: contain;
}

.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.header__nav a:hover,
.header__nav a.active {
  border-bottom-color: var(--red);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.live-count {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

.live-count__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a559;
  box-shadow: 0 0 0 3px rgba(34, 165, 89, 0.2);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.product-card__stock {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  min-height: 16px;
  margin: 0;
}

.product-card__stock--low {
  color: var(--red);
}

.product-viewing {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  margin: -12px 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-viewing::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a559;
  flex-shrink: 0;
}

.product-info__scarcity--low {
  color: var(--red);
}

.header__cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.header__cta:hover {
  opacity: 0.85;
}

.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge[hidden] {
  display: none;
}

@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.4); }
}

.cart-badge--bump {
  animation: cart-bump var(--motion-base) var(--ease-spring);
}

.header__cart {
  color: var(--black);
  transition: border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

@media (hover: hover) {
  .header__cart:hover {
    border-color: var(--black);
    transform: translateY(-1px);
  }
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: #222;
}

.btn--outline {
  background: var(--white);
  color: var(--black);
}

.btn--outline:hover {
  background: var(--bg);
}

.btn--secondary {
  background: var(--bg);
  color: var(--black);
  border-color: var(--grey-light);
}

.btn--secondary:hover {
  border-color: var(--black);
  background: var(--white);
}

.btn:disabled,
.btn[disabled],
.product-spin-video__toggle:disabled,
.product-spin-video__restart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn:disabled:active,
.btn[disabled]:active {
  transform: none;
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 0.8rem;
}

/* ── Hero (Home) ── */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 48px);
  min-height: calc(100dvh - var(--header-h) - 48px);
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero__visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  background: var(--grey-light);
}

.hero__label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  color: var(--white);
  z-index: 2;
}

.hero__label--china {
  top: 12px;
  left: 28%;
  background: var(--black);
}

.hero__label--korea {
  bottom: 80px;
  left: 0;
  background: var(--green);
}

.hero__img-sneaker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 38%;
  object-fit: cover;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero__verified {
  position: absolute;
  bottom: 40px;
  right: 10%;
  width: 120px;
  z-index: 4;
}

.hero__verified img {
  width: 100%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero__verified span {
  display: block;
  background: var(--red);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 8px;
}

@keyframes hero-image-main-in {
  from {
    opacity: 0;
    transform: translate3d(24px, 16px, 0) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

@keyframes hero-image-secondary-in {
  from {
    opacity: 0;
    transform: translate3d(-28px, 24px, 0) scale(0.92);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

.has-motion .hero__img-main {
  animation: hero-image-main-in 720ms var(--ease-out) 80ms both;
}

.has-motion .hero__img-sneaker {
  animation: hero-image-secondary-in 640ms var(--ease-out) 260ms both;
}

.has-motion .hero__verified {
  animation: hero-image-secondary-in 540ms var(--ease-spring) both;
  animation-delay: 430ms;
}

.has-motion .hero__label--china {
  animation: hero-image-secondary-in 420ms var(--ease-out) 540ms both;
}

.has-motion .hero__label--korea {
  animation: hero-image-secondary-in 420ms var(--ease-out) 620ms both;
}

/* ── Shop page ── */

.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header__sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-top: 4px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto 24px;
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--grey-light);
}

.category-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-chip,
.view-toggle__button,
.shop-filter-toggle {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.category-chip:active,
.view-toggle__button:active,
.shop-filter-toggle:active {
  transform: scale(0.97);
}

.category-chip.is-active,
.view-toggle__button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.shop-toolbar__actions,
.view-toggle {
  display: flex;
  gap: 6px;
}

.shop-filter-toggle {
  display: none;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 0 16px;
  min-width: 260px;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 8px;
  width: 100%;
  font-size: 0.85rem;
}

.search-bar input:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: -2px;
}

.search-bar svg {
  flex-shrink: 0;
  opacity: 0.4;
}

.search-bar__clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--bg);
  color: var(--grey);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.search-bar__clear:hover {
  color: var(--black);
}

.shop-filter-toggle {
  position: relative;
}

.shop-filter-toggle__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  border: 0;
  padding: 0;
  background: rgba(10, 10, 10, 0.45);
  cursor: pointer;
}

.product-skeleton {
  background: var(--white);
  border: 1px solid var(--grey-light);
}

.product-skeleton__image,
.product-detail-skeleton__stage,
.product-detail-skeleton__thumb {
  background: linear-gradient(90deg, var(--bg) 0%, #ececec 50%, var(--bg) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.product-skeleton__image {
  aspect-ratio: 4 / 5;
}

.product-skeleton__body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-skeleton__line {
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bg) 0%, #ececec 50%, var(--bg) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.product-skeleton__line--title {
  width: 72%;
  height: 14px;
}

.product-skeleton__line--meta {
  width: 48%;
}

.product-skeleton__line--short {
  width: 36%;
}

.product-detail-skeleton {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: start;
}

.product-detail-skeleton__media {
  display: grid;
  gap: 12px;
}

.product-detail-skeleton__stage {
  aspect-ratio: 1;
}

.product-detail-skeleton__thumbs {
  display: flex;
  gap: 8px;
}

.product-detail-skeleton__thumb {
  width: 72px;
  height: 72px;
}

.product-detail-skeleton__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--pink-border);
  background: var(--white);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .product-skeleton__image,
  .product-skeleton__line,
  .product-detail-skeleton__stage,
  .product-detail-skeleton__thumb,
  .product-spin-video__loading-bar,
  .product-gallery__image {
    animation: none;
    transition: none;
  }
}

.shop-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar filters */
.filters {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters__close {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
}

.filters__group {
  margin-bottom: 24px;
}

.filters__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.filters select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
}

.filters__section {
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
  margin-bottom: 16px;
}

.filters__section-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filters__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  cursor: pointer;
}

.filters__checkbox input {
  accent-color: var(--black);
}

.filters__apply {
  width: 100%;
  margin-top: 8px;
}

/* Product grid */
.shop-main__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.shop-main__tags > div {
  display: grid;
  gap: 5px;
}

.shop-results {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.product-grid--editorial {
  --catalog-columns: repeat(3, minmax(0, 1fr));
  --catalog-gap: 32px 20px;
  --catalog-alignment: start;
}

.product-grid--editorial .product-card {
  height: auto;
}

.product-grid--editorial .product-card__body {
  padding: 15px 14px 17px;
  flex: 0 0 auto;
}

.product-grid--editorial .product-card__name {
  font-size: 0.82rem;
}

.product-grid--editorial .product-card__image-wrap {
  aspect-ratio: 1 / 1;
}

.product-grid--editorial .product-card__image {
  padding: clamp(20px, 2.5vw, 34px);
}

.product-grid--editorial .product-card__row {
  min-height: 2.7em;
}

.product-grid--editorial .product-card__meta {
  min-height: 0;
  margin-bottom: 0;
}

.product-grid--editorial .product-card__footer {
  display: none;
}

.product-grid--compact {
  --catalog-columns: repeat(4, minmax(0, 1fr));
  --catalog-gap: 24px 14px;
  --catalog-alignment: start;
}

.product-grid--compact .product-card {
  height: auto;
}

.product-grid--compact .product-card__body {
  padding: 12px;
  flex: 0 0 auto;
}

.product-grid--compact .product-card__name {
  font-size: 0.7rem;
}

.product-grid--compact .product-card__row {
  align-items: start;
  gap: 5px;
  min-height: 2.7em;
  margin-bottom: 6px;
}

.product-grid--compact .product-card__price,
.product-grid--compact .product-card__sale {
  font-size: 0.72rem;
}

.product-grid--compact .product-card__meta {
  margin-top: 4px;
  min-height: 0;
  margin-bottom: 0;
}

.product-grid--compact .product-card__ref,
.product-grid--compact .product-card__stock {
  font-size: 0.55rem;
}

.product-grid--compact .product-card__market {
  padding: 5px 7px;
  font-size: 0.6rem;
}

.product-grid--compact .product-card__badge {
  padding: 5px 7px;
  font-size: 0.55rem;
}

.product-grid--compact .product-card__footer {
  display: none;
}

.product-grid--compact .product-card__overlay {
  display: none;
}

.product-grid--compact .product-card__image-wrap {
  aspect-ratio: 1 / 1;
}

.product-grid--compact .product-card__image {
  padding: 14px;
}

.filter-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--grey-light);
  padding: 6px 12px;
  background: var(--white);
}

.filter-tag__clear {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.product-grid {
  display: grid;
  grid-template-columns: var(--catalog-columns, repeat(3, 1fr));
  gap: var(--catalog-gap, 20px);
  align-items: var(--catalog-alignment, stretch);
}

.product-grid > .product-card {
  min-height: 0;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  box-sizing: border-box;
  display: block;
  background: #fff;
  transition: transform 0.3s;
}

.product-card__market {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 8px;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
}

.product-card__badge--soon {
  background: var(--black);
}

.product-card--incoming .product-card__image {
  opacity: 0.88;
}

.product-card__eta {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}

.product-info__badge--soon {
  background: var(--black);
}

.product-info__scarcity--incoming {
  color: var(--black);
}

.product-info__incoming-note {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--grey-light);
}

.incoming {
  background: var(--bg-alt);
  border-top: 1px solid var(--grey-light);
}

.product-card__body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 72px;
  margin-bottom: 10px;
}

.product-card__name {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
  margin: 0;
}

.product-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}

.product-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  min-width: 68px;
  line-height: 1.2;
}

.product-card__compare {
  font-size: 0.7rem;
  color: var(--grey);
  text-decoration: line-through;
  font-weight: 500;
}

.product-card__sale {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
}

.product-card__prices .product-card__sale {
  display: none;
}

.product-card__badge--sale {
  background: var(--red);
  color: var(--white);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.68);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.product-description__details div {
  padding: 14px 0;
  border-top: 1px solid var(--grey-light);
}

.product-description__details dt,
.product-description h3 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-description__details dd {
  margin: 7px 0 0;
  color: var(--grey);
  line-height: 1.6;
}

.product-description ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey);
  line-height: 1.7;
}

.product-description li {
  position: relative;
  padding-left: 17px;
}

.product-description li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: '';
}

.product-description__authenticity {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--pink-border);
  border-left: 3px solid var(--red);
}

.footer__cookie-settings {
  border: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 5000;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  max-width: 920px;
  margin: auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--black);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner__copy {
  max-width: 580px;
}

.cookie-banner__copy h2,
.cookie-modal h2 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.cookie-banner__copy p,
.cookie-option p {
  color: var(--grey);
  line-height: 1.55;
}

.cookie-banner__eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
}

.cookie-modal__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  background: var(--white);
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--grey-light);
}

.filters__section {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-spin-video__video {
    transition: none;
  }
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(var(--motion-reveal-distance));
  transition:
    opacity var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card:focus-visible .product-card__overlay,
.product-card:active .product-card__overlay {
  opacity: 1;
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  }

  .has-motion .product-card:hover .product-card__image {
    transform: scale(1.03);
  }

  .product-card:hover .product-card__overlay {
    opacity: 1;
  }
}

.shop-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 40px 0;
  color: var(--grey);
}

.product-card__ref {
  font-size: 0.7rem;
  color: var(--grey);
  margin: 0 0 4px;
}

.product-card__meta {
  min-height: 38px;
  margin-bottom: 12px;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--grey-light);
}

.product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 52px;
  align-content: flex-start;
}

.size-pill {
  font-size: 0.6rem;
  font-weight: 600;
  border: 1px solid var(--grey-light);
  padding: 3px 7px;
  min-width: 26px;
  text-align: center;
}

.size-pill--unavailable {
  color: var(--grey);
  border-color: var(--grey-light);
  background: var(--bg);
  opacity: 0.55;
  text-decoration: line-through;
}

.product-card__condition {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

.product-card__colors {
  display: flex;
  gap: 4px;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--grey-light);
}

/* ── Product detail ── */

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.breadcrumbs a:hover {
  color: var(--black);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__list > li {
  margin: 0;
  padding: 0;
}

.breadcrumbs__list > li::marker {
  content: '';
}

.breadcrumbs__separator {
  color: var(--grey);
  opacity: 0.6;
}

.product-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.product-not-found {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 80px 24px;
  text-align: center;
}

.product-not-found p {
  max-width: 480px;
  color: var(--grey);
}

.product-media {
  min-width: 0;
}

.product-spin-video {
  margin-bottom: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--pink-border);
}

.product-spin-video__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.product-spin-video__eyebrow {
  margin-bottom: 3px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-spin-video__header h2 {
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-spin-video__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-spin-video__toggle,
.product-spin-video__restart {
  min-height: 44px;
  padding: 7px 12px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.product-spin-video__toggle:hover,
.product-spin-video__toggle[aria-pressed='true'],
.product-spin-video__restart:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.product-spin-video__toggle:active,
.product-spin-video__restart:active {
  transform: scale(0.97);
}

.product-spin-video__viewer {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 3;
  max-height: min(72vh, 720px);
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--grey-light);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-spin-video__viewer:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.product-spin-video__viewer--dragging {
  cursor: grabbing;
  touch-action: none;
}

.product-spin-video__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  pointer-events: none;
  will-change: transform;
  transform: scale(var(--spin-video-scale, 1));
  transform-origin: center center;
}

.product-spin-video__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
}

.product-spin-video__loading[hidden] {
  display: none;
}

.product-spin-video__loading-bar {
  width: min(220px, 60%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bg) 0%, #d8d8d8 50%, var(--bg) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.product-spin-video__hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(26, 26, 26, 0.78);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.product-spin-video__viewer--interacted .product-spin-video__hint {
  opacity: 0;
}

.product-spin-video__viewer--dragging .product-spin-video__hint {
  opacity: 0;
}

.product-spin-video__note {
  margin-top: 10px;
  color: var(--grey);
  font-size: 0.62rem;
  line-height: 1.5;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--white);
  border: 1px solid var(--pink-border);
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.product-gallery__stage:focus-visible {
  z-index: 1;
}

.product-gallery__frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  opacity: 0;
  transition:
    opacity 0.32s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.product-gallery__image.is-visible {
  opacity: 1;
}

.product-gallery__controls {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 2px;
}

.product-gallery__thumb {
  flex: 0 0 64px;
  aspect-ratio: 1;
  padding: 4px;
  border: 1px solid var(--pink-border);
  background: var(--white);
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumb.is-active {
  border-color: var(--black);
  opacity: 1;
}

.product-gallery__thumb--tag {
  position: relative;
  border-color: var(--red);
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgb(139 41 66 / 0.12);
}

.product-gallery__thumb--tag::after {
  content: 'TAG';
  position: absolute;
  right: 2px;
  bottom: 2px;
  padding: 1px 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  pointer-events: none;
}

.category-chip:focus-visible,
.view-toggle__button:focus-visible,
.shop-filter-toggle:focus-visible,
.product-gallery__thumb:focus-visible,
.size-option:focus-visible,
.faq__item summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.product-gallery__nav,
.product-gallery__zoom {
  display: grid;
  place-items: center;
  border: 1px solid var(--grey-light);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
}

.product-gallery__nav {
  width: 44px;
  height: 44px;
}

.product-gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  line-height: 1;
}

.product-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
}

.product-gallery__index {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-panel__inner {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 24px;
  background: var(--white);
  background: color-mix(in srgb, var(--white) 76%, transparent);
  border: 1px solid var(--pink-border);
  box-shadow: var(--surface-shadow);
}

.product-info__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.product-info__badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--white);
  background: var(--red);
}

.product-info__badge--verified {
  background: var(--green);
}

.market-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--white);
}

.market-badge--china { background: var(--black); }
.market-badge--korea { background: var(--red); }
.market-badge--japan { background: var(--green); }
.market-badge--global { background: #48617e; }

.product-info__ref {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-left: auto;
}

.product-info__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.product-info__price {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-info__price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
}

.product-info__scarcity {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.product-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-light);
}

.product-trust li {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey);
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--grey-light);
  margin-bottom: 24px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(10, 10, 10, 0.025);
}

.product-specs__item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-light);
  border-right: 1px solid var(--grey-light);
}

.product-specs__item:nth-child(2n) {
  border-right: none;
}

.product-specs__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.product-specs__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.product-specs__value {
  font-size: 0.9rem;
  font-weight: 600;
}

.product-colorway {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.product-colorway__label {
  color: var(--grey);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-colorway__value {
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.size-selector {
  margin-bottom: 20px;
}

.size-selector__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.size-selector__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.size-selector__guide {
  font-size: 0.7rem;
  color: var(--grey);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.size-guide {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--grey-light);
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option {
  min-height: 44px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.size-option.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

@media (hover: hover) {
  .product-gallery__stage:hover {
    border-color: var(--black);
    box-shadow: var(--surface-shadow);
  }

  .product-gallery__stage:hover .product-gallery__image.is-visible {
    transform: scale(1.025);
  }

  .product-gallery__thumb:hover {
    opacity: 1;
    border-color: var(--black);
    transform: translateY(-1px);
  }

  .size-option:hover:not(.selected):not(.size-option--unavailable) {
    border-color: var(--black);
    transform: translateY(-1px);
  }
}

.size-option--unavailable {
  color: var(--grey);
  background: var(--bg);
  border-color: var(--grey-light);
  opacity: 0.55;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-selector__note {
  margin-top: 8px;
  font-size: 0.68rem;
  color: var(--grey);
  line-height: 1.5;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.product-info__shipping {
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-light);
}

.product-description__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.product-description__heading {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.product-description__eyebrow,
.product-description__authenticity-label {
  margin: 0;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-description p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.product-description__lede {
  color: var(--black) !important;
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
}

.product-description__details-section {
  margin-top: 24px;
}

.product-description__details-section h3 {
  margin-bottom: 10px;
}

.product-description__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
}

.product-description__link:hover {
  color: var(--red);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 900px);
  max-height: 78vh;
}

.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  object-fit: contain;
}

.lightbox__img--cutout {
  mix-blend-mode: multiply;
}

.lightbox__caption {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 16px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 8px 16px;
  opacity: 0.8;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 2.5rem;
}

.lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
}

/* Related products */
.product-related {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
  border-top: 1px solid var(--grey-light);
  padding-top: 48px;
}

.product-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.product-related__title {
  font-size: 1.4rem;
  font-weight: 800;
}

/* Mobile buy bar */
.product-mobile-bar {
  display: none;
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 210;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.product-mobile-bar__price {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.product-mobile-bar__meta {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-mobile-bar .btn {
  padding: 14px 28px;
  flex-shrink: 0;
}

.checkout-mobile-bar {
  display: none;
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 210;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.checkout-mobile-bar[hidden] {
  display: none;
}

.checkout-mobile-bar__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.checkout-mobile-bar__price {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-mobile-bar .btn {
  padding: 14px 20px;
  flex-shrink: 0;
}

.add-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ── Checkout ── */

.checkout-preview {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border: 1px solid var(--pink-border);
  background: var(--pink);
  color: var(--red-dark);
  font-size: 0.8rem;
  line-height: 1.5;
}

.checkout-preview strong {
  flex-shrink: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-steps {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin: 36px auto 0;
  padding: 0 24px;
}

.checkout-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-steps__item::first-letter {
  display: inline-grid;
  place-items: center;
}

.checkout-steps__item--active,
.checkout-steps__item--complete {
  color: var(--black);
}

.checkout-steps__item--complete::before {
  content: '✓';
  color: var(--green);
  margin-right: -4px;
}

.checkout-steps__line {
  height: 1px;
  flex: 1;
  min-width: 24px;
  margin: 0 12px;
  background: var(--grey-light);
}

.checkout-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.checkout-form__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.checkout-form__sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 32px;
}

.checkout-form {
  min-width: 0;
}

.form-section {
  margin-bottom: 32px;
}

.form-section__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-light);
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--black);
}

.form-field select:disabled {
  cursor: not-allowed;
  color: var(--grey);
  background: var(--bg);
}

.form-field input[aria-invalid='true'],
.form-field select[aria-invalid='true'] {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(123, 30, 35, 0.1);
}

.form-error {
  margin-top: 6px;
  color: var(--red-dark);
  font-size: 0.7rem;
  line-height: 1.45;
}

.shipping-estimate {
  margin-top: 8px;
  color: var(--grey);
  font-size: 0.72rem;
  line-height: 1.55;
}

.country-picker {
  position: relative;
}

.country-picker__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition-property: border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.country-picker__trigger:hover,
.country-picker__trigger[aria-expanded='true'] {
  border-color: var(--black);
}

.country-picker__trigger[aria-invalid='true'] {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(123, 30, 35, 0.1);
}

.country-picker__panel {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 10px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.14);
}

.country-picker__panel[hidden] {
  display: none;
}

.country-picker__search {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--grey-light);
  background: var(--bg);
}

.country-picker__options {
  display: grid;
  max-height: 260px;
  margin-top: 8px;
  overflow-y: auto;
}

.country-picker__option {
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  background: var(--white);
  cursor: pointer;
  text-align: left;
}

.country-picker__option:hover,
.country-picker__option:focus-visible {
  background: var(--bg);
}

.country-picker__empty,
.shipping-options__empty {
  padding: 12px;
  color: var(--grey);
  font-size: 0.78rem;
}

.shipping-picker {
  padding: 0;
  border: 0;
}

.shipping-picker legend {
  margin-bottom: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shipping-options {
  display: grid;
  gap: 10px;
}

.shipping-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0 12px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  transition-property: border-color, background-color, transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.shipping-option:has(input:checked) {
  border-color: var(--black);
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.07);
}

.shipping-option input {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.shipping-option__brand {
  justify-self: start;
  min-width: 48px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0ae;
  color: #b11d12;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.shipping-option__brand--ups {
  background: #f4e1b7;
  color: #3d2515;
}

.shipping-option__body {
  grid-column: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 11px;
}

.shipping-option__copy {
  display: grid;
  gap: 4px;
  font-size: 0.8rem;
}

.shipping-option__copy strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.shipping-option__copy span {
  color: var(--grey);
  font-size: 0.68rem;
}

.shipping-option__estimate {
  display: grid;
  flex-shrink: 0;
  gap: 1px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.shipping-option__estimate strong {
  font-size: 0.85rem;
}

.shipping-option__estimate span {
  color: var(--grey);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shipping-option__check {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.shipping-option:has(input:checked) .shipping-option__check {
  opacity: 1;
  transform: scale(1);
}

.summary-fee-note {
  margin: 8px 0 12px;
  color: var(--grey);
  font-size: 0.66rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.checkout-gift__intro {
  margin: -4px 0 14px;
  color: var(--grey);
  font-size: 0.8rem;
}

.gift-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gift-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s var(--ease-out), background 0.18s var(--ease-out);
}

.gift-option:has(input:checked) {
  border-color: var(--black);
  background: var(--bg-alt);
}

.gift-option input {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--black);
}

.gift-option__content {
  display: grid;
  gap: 2px;
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.45;
}

.gift-option__content span {
  color: var(--grey);
  font-size: 0.72rem;
}

.gift-option__image {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112px;
  overflow: hidden;
  background: #f0eeec;
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gift-option__image::before,
.gift-option__image::after {
  display: none;
}

.gift-option__image span {
  display: none;
}

.gift-option__image--nike-white {
  background-image: url('../images/products/nike-everyday-white.png');
  background-color: #dedddb;
}

.gift-option__image--nike-royal {
  background-image: url('../images/products/nike-dri-fit-royal.png');
  background-color: #e9edf5;
}

.gift-option__image--adidas-white {
  background-image: url('../images/products/adidas-trefoil-white.png');
  background-color: #dedddb;
}

.gift-option__image--adidas-black {
  background-image: url('../images/products/adidas-trefoil-black.png');
  background-color: #e4e1df;
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--grey);
  font-size: 0.78rem;
  line-height: 1.6;
}

.checkout-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--black);
}

.checkout-checkbox a {
  color: var(--black);
  text-decoration: underline;
}

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

.payment-placeholder {
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
}

.payment-placeholder svg {
  margin: 0 auto 12px;
  opacity: 0.3;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: 24px;
  box-shadow: var(--surface-shadow);
}

.order-summary__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-light);
}

.summary-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--grey-light);
}

.summary-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0ece8;
}

.summary-item__info {
  flex: 1;
  min-width: 0;
}

.summary-item__header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.summary-item__name {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.summary-item__price {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.summary-item__meta {
  font-size: 0.65rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 6px;
}

.summary-item__remove,
.summary-item__change {
  font-size: 0.65rem;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.summary-item__change {
  display: inline-block;
  margin-top: 4px;
}

.summary-totals {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 6px 0;
  color: var(--grey);
}

.summary-row--total {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--grey-light);
}

.summary-row--discount span:last-child {
  color: #227846;
  font-weight: 700;
}

.promo-code {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-light);
}

.promo-code__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-code__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.promo-code__input {
  width: 100%;
  border: 1px solid var(--grey-light);
  padding: 10px 12px;
  font-size: 0.85rem;
  background: var(--white);
}

.promo-code__input[aria-invalid='true'] {
  border-color: var(--red);
}

.promo-code__apply {
  min-height: 44px;
  padding-inline: 16px;
}

.promo-code__hint {
  margin: 8px 0 0;
  font-size: 0.65rem;
  color: var(--grey);
  line-height: 1.5;
}

.promo-code__hint [data-promo-countdown] {
  font-variant-numeric: tabular-nums;
}

.promo-code__status {
  margin: 8px 0 0;
  font-size: 0.7rem;
  line-height: 1.45;
}

.promo-code__status--error {
  color: var(--red);
}

.promo-code__status--success {
  color: #227846;
}

.promo-code--applied {
  display: grid;
  gap: 8px;
}

.promo-code__applied {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.8rem;
}

.promo-code__applied-label {
  color: var(--grey);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-code__applied-code {
  letter-spacing: 0.08em;
}

.promo-code__applied-save {
  margin-left: auto;
  color: #227846;
  font-weight: 700;
}

.promo-code__remove {
  justify-self: start;
  padding: 0;
  border: none;
  background: none;
  color: var(--grey);
  font-size: 0.65rem;
  text-decoration: underline;
  cursor: pointer;
}

.announcement-bar--launch {
  display: grid;
  gap: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.announcement-bar__default {
  display: none;
}

.announcement-bar__launch {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
}

.announcement-bar__launch strong {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.announcement-bar__launch [data-promo-countdown] {
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.68);
}

.empty-cart {
  font-size: 0.85rem;
  color: var(--grey);
  padding: 20px 0;
}

.empty-cart a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

.bag-lines {
  display: grid;
  border-top: 1px solid var(--grey-light);
}

.bag-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
}

.bag-line__image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--pink-border);
}

.bag-line__content {
  min-width: 0;
}

.bag-line__header,
.bag-line__controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bag-line__title {
  max-width: 460px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.bag-line__header strong {
  white-space: nowrap;
  font-size: 0.9rem;
}

.checkout-payment-note {
  margin-top: 8px;
  color: var(--grey);
  font-size: 0.75rem;
  line-height: 1.55;
}

.payment-redirect {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(253, 249, 246, 0.92);
  backdrop-filter: blur(2px);
}

.payment-redirect__title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.payment-redirect__sub {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
}

.bag-line__meta,
.checkout-payment-note {
  margin-top: 8px;
  color: var(--grey);
  font-size: 0.75rem;
  line-height: 1.55;
}

.bag-line__controls {
  align-items: center;
  margin-top: 16px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 44px 44px;
  align-items: center;
  border: 1px solid var(--grey-light);
}

.quantity-control button {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
}

.quantity-control span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.bag-line__remove {
  border: 0;
  background: none;
  color: var(--grey);
  cursor: pointer;
  font-size: 0.7rem;
  text-decoration: underline;
}

.bag-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 36px 0;
  color: var(--grey);
}

.bag-empty h2 {
  color: var(--black);
  font-size: 1.25rem;
}

.checkout-payment-note {
  text-align: center;
}

@media (hover: hover) {
  .gift-option:hover {
    border-color: var(--black);
  }

  .quantity-control button:hover {
    background: var(--bg);
  }
}

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5200;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 18px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.22);
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-spring);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-toast__message {
  flex: 1;
}

.cart-toast__action {
  flex-shrink: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.cart-toast__action:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.cart-toast--error {
  background: var(--red-dark);
}

.cart-toast--info {
  background: #48617e;
}

/* ── Trust bar (Home) ── */

.trust-bar {
  border-top: 1px solid var(--grey-light);
  padding: 40px 24px;
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-bar__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.trust-bar__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trust-bar__item p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ── Info pages (About, Authenticity, Contact) ── */

.info-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.info-page__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.info-page__tag::before {
  content: '● ';
}

.info-page__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.info-page__lead {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Payment result (success / failed) ── */

.payment-result__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.payment-result__icon--success {
  background: rgba(34, 120, 70, 0.12);
  color: #227846;
  border: 1px solid rgba(34, 120, 70, 0.25);
}

.payment-result__icon--failed {
  background: rgba(196, 32, 32, 0.1);
  color: var(--red);
  border: 1px solid rgba(196, 32, 32, 0.25);
}

.payment-result__card {
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 24px;
  margin-bottom: 32px;
}

.payment-result__card--failed {
  border-color: rgba(196, 32, 32, 0.2);
}

.payment-result__meta {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-light);
}

.payment-result__meta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 0.85rem;
}

.payment-result__meta span {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.65rem;
  font-weight: 700;
}

.payment-result__meta strong {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.payment-result__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.payment-result__line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px 16px;
  align-items: center;
}

.payment-result__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--grey-light);
}

.payment-result__line-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.payment-result__line-copy strong {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.payment-result__line-copy span {
  font-size: 0.8rem;
  color: var(--grey);
}

.payment-result__line-price {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.payment-result__empty-lines {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

.payment-result__steps {
  margin-bottom: 40px;
}

.payment-result__steps-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.payment-result__steps-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  display: grid;
  gap: 8px;
}

.payment-result__actions {
  margin-top: 8px;
}

@media (max-width: 560px) {
  .payment-result__line {
    grid-template-columns: 56px 1fr;
  }

  .payment-result__line-price {
    grid-column: 2;
    justify-self: start;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.info-card {
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 24px;
}

.info-card__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.info-card__title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-card__text {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

.info-block {
  border-top: 1px solid var(--grey-light);
  padding-top: 40px;
}

.info-block--highlight {
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: 32px;
  margin-top: 16px;
}

.info-block__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-block__text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.discount-explainer div {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--grey-light);
  background: var(--bg);
}

.discount-explainer strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.discount-explainer span,
.info-block__note {
  color: var(--grey);
  font-size: 0.76rem;
  line-height: 1.55;
}

.info-block__note {
  padding-left: 14px;
  border-left: 3px solid var(--red);
}

.info-list {
  list-style: none;
  margin-bottom: 24px;
}

.info-list li {
  font-size: 0.9rem;
  color: var(--grey);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--grey-light);
}

.info-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

.verify-steps {
  margin-bottom: 48px;
}

.verify-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-light);
}

.verify-step__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.verify-step__title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.verify-step__text {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 24px;
}

.contact-card__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.contact-card__link {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
}

.contact-card__link:hover {
  color: var(--red);
}

.contact-card__value {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card__note {
  font-size: 0.8rem;
  color: var(--grey);
}

.faq__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.faq__item {
  border-bottom: 1px solid var(--grey-light);
  padding: 16px 0;
}

.faq__item summary {
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--grey);
  transition: transform var(--motion-fast) var(--ease-out);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  margin-top: 12px;
  padding-right: 24px;
}

.faq__item a {
  text-decoration: underline;
  font-weight: 600;
}

/* ── Promo bar ── */

.promo-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.promo-bar strong {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.promo-bar__sep {
  opacity: 0.6;
  margin: 0 4px;
}

/* ── Announcement bar ── */

.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Featured (Home) ── */

.featured {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 80px;
  border-top: 1px solid var(--grey-light);
}

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

.featured__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.featured__sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-top: 4px;
}

.featured__view-all {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
}

.featured__view-all:hover {
  color: var(--red);
}

.category-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.category-section + .category-section {
  border-top: none;
  padding-top: 0;
}

/* ── Product page sale price ── */

.product-info__compare {
  font-size: 0.85rem;
  color: var(--grey);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 8px;
}

.product-info__sale {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red);
  margin-left: 8px;
}

/* ── Track order ── */

.track-form {
  max-width: 420px;
  margin-top: 32px;
}

.track-result {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--grey-light);
  background: var(--white);
}

.track-result__status {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.track-result__text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Mobile bottom nav ── */

.mobile-nav {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

body.filters-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 1px solid var(--grey-light);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 2px;
    padding: 8px 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
  }

  .mobile-nav__item--active {
    color: var(--red);
  }

  .mobile-nav__icon {
    position: relative;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    line-height: 1;
  }

  .mobile-nav__badge {
    position: absolute;
    top: -7px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 0.55rem;
  }

  .mobile-nav__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .promo-bar__sep {
    display: none;
  }

  .promo-bar {
    font-size: 0.62rem;
    padding: 8px 16px;
  }
}

/* ── Policy pages ── */

.policy-content h2 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 32px 0 12px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-content a {
  font-weight: 600;
  text-decoration: underline;
}

.policy-updated {
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--grey);
}

/* ── Footer ── */

.footer {
  border-top: 1px solid var(--grey-light);
  background: var(--white);
}

.footer__newsletter {
  border-bottom: 1px solid var(--grey-light);
  padding: 48px 24px;
  background: var(--bg);
}

.footer__newsletter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__newsletter-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer__newsletter-text p {
  font-size: 0.85rem;
  color: var(--grey);
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
  min-width: 320px;
  flex: 1;
  max-width: 440px;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--grey-light);
  border-right: none;
  background: var(--white);
  font-size: 0.85rem;
  outline: none;
}

.footer__newsletter-form input:focus {
  border-color: var(--black);
}

.footer__newsletter-form .btn {
  padding: 14px 24px;
  white-space: nowrap;
}

.footer__newsletter-success {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.footer__main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}

.footer__logo img {
  height: 72px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
}

.footer__brand {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__social a {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
}

.footer__social a:hover {
  color: var(--red);
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col-links {
  list-style: none;
}

.footer__col-links li {
  margin-bottom: 10px;
}

.footer__col-links a {
  font-size: 0.8rem;
  color: var(--grey);
}

.footer__col-links a:hover {
  color: var(--black);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer__pay {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--grey-light);
  background: var(--bg);
  color: var(--grey);
}

.footer__copy {
  font-size: 0.65rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

/* ── Mobile menu toggle ── */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ── Responsive ── */

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

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

  .product-grid--compact {
    --catalog-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    height: 400px;
    order: -1;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .product-panel__inner {
    position: static;
  }

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

  .order-summary {
    position: static;
  }

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

@media (max-width: 768px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 74px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .checkout-steps {
    margin-top: 24px;
  }

  .checkout-steps__item {
    font-size: 0.58rem;
    gap: 4px;
  }

  .checkout-steps__line {
    margin: 0 7px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1 1 130px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--grey-light);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .header__nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .live-count {
    display: none;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1000;
    display: block;
    width: min(390px, 92vw);
    padding: 22px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(10, 10, 10, 0.16);
    transform: translateX(105%);
    transition: transform 220ms var(--ease-out);
  }

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

  .filters__header {
    position: sticky;
    top: -22px;
    z-index: 1;
    margin: -22px -22px 22px;
    padding: 16px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
  }

  .filters__close {
    display: grid;
    place-items: center;
  }

  .shop-toolbar {
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .shop-toolbar__actions {
    flex-shrink: 0;
  }

  .shop-filter-toggle {
    display: block;
  }

  .category-chips {
    margin-right: -12px;
  }

  .product-grid--editorial {
    --catalog-columns: 1fr;
  }

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

  .filters__apply {
    grid-column: 1 / -1;
  }

  .product-grid:not(.product-grid--compact) {
    --catalog-columns: 1fr;
  }

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

  .bag-line {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .bag-line__image {
    width: 88px;
    height: 88px;
  }

  .bag-line__header {
    flex-direction: column;
    gap: 6px;
  }

  .gift-options {
    grid-template-columns: 1fr;
  }

  .gift-option {
    grid-template-columns: 18px 112px minmax(0, 1fr);
    align-items: center;
  }

  .gift-option__image {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 82px;
  }

  .gift-option__content {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .shipping-option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .shipping-option__body {
    grid-column: 2;
    align-items: start;
  }

  .shipping-option__estimate {
    text-align: right;
  }

  .cart-toast {
    right: 12px;
    bottom: calc(84px + env(safe-area-inset-bottom));
  }

  body:has(.product-mobile-bar) .cart-toast {
    bottom: calc(156px + env(safe-area-inset-bottom));
  }

  .add-toast {
    right: 12px;
    bottom: calc(156px + env(safe-area-inset-bottom));
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-bar {
    width: 100%;
    min-width: unset;
  }

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

  .trust-bar__inner,
  .info-grid,
  .contact-grid,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .discount-explainer {
    grid-template-columns: 1fr;
  }

  .footer__newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__newsletter-form {
    width: 100%;
    max-width: none;
  }

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

  .header__nav a {
    font-size: 0.75rem;
  }

  .product-mobile-bar {
    display: flex;
  }

  .checkout-mobile-bar:not([hidden]) {
    display: flex;
  }

  body:has(.checkout-mobile-bar:not([hidden])) {
    padding-bottom: calc(144px + env(safe-area-inset-bottom));
  }

  body:has(.checkout-mobile-bar:not([hidden])) .cart-toast {
    bottom: calc(156px + env(safe-area-inset-bottom));
  }

  .checkout-layout {
    padding-bottom: 24px;
  }

  .product-related {
    padding-bottom: 100px;
  }

  .header__logo img {
    width: 160px;
    max-height: 54px;
  }
}
