:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #0d0d0d;
  --text-soft: #5f5f5f;
  --text-inverse: #f7f7f7;
  --line: rgba(13, 13, 13, 0.12);
  --line-soft: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  --header-inline-pad: clamp(18px, 4vw, 36px);
  --header-bar-height: 78px;
  --catalog-gap: 16px;
  --card-width: clamp(220px, 18vw, 258px);
  --radius: 0px;
  color-scheme: light;
  font-family: "Jost", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.coming-soon-page {
  overflow: hidden;
  background: #070707;
  min-height: 100vh;
}

body.panel-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--text-inverse);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

body.header-dark .site-header {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(13, 13, 13, 0.08);
  backdrop-filter: blur(16px);
}

.header-bar,
.search-panel,
.catalog-toolbar,
.catalog-empty,
.site-footer {
  padding-inline: var(--header-inline-pad);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-bar-height);
  gap: 12px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-text-button,
.drawer-text-button {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  text-transform: lowercase;
}

.icon-button,
.rail-button,
.drawer-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.icon-button:hover,
.rail-button:hover,
.drawer-close:hover,
.icon-button:focus-visible,
.rail-button:focus-visible,
.drawer-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

body.header-dark .icon-button:hover,
body.header-dark .rail-button:hover,
body.header-dark .drawer-close:hover,
body.header-dark .icon-button:focus-visible,
body.header-dark .rail-button:focus-visible,
body.header-dark .drawer-close:focus-visible {
  background: rgba(13, 13, 13, 0.06);
}

.icon-button svg,
.rail-button svg,
.drawer-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(240px, 32vw);
  min-width: 0;
  margin-inline: auto;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

body.header-dark .brand-logo {
  filter: none;
}

.badge {
  position: absolute;
  top: 4px;
  right: 1px;
  display: inline-flex;
  min-width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  line-height: 1;
}

.badge--hidden {
  display: none;
}

body.header-dark .badge {
  background: #000000;
  color: #ffffff;
}

.search-panel {
  position: fixed;
  top: calc(var(--header-bar-height) + 18px);
  left: 0;
  right: 0;
  z-index: 38;
  display: grid;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  transform: translateY(calc(-100% - 16px));
  opacity: 0;
  visibility: hidden;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
  backdrop-filter: blur(16px);
}

body.search-open .search-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-field {
  display: grid;
  gap: 10px;
}

.search-field__label,
.catalog-label,
.footer-title,
.drawer-section__title {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 400;
}

.search-field input {
  width: min(520px, 100%);
  border: 0;
  border-bottom: 1px solid var(--text);
  border-radius: 0;
  padding: 0 0 10px;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  outline: none;
}

.search-field input::placeholder {
  color: var(--text-soft);
}

.search-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

body.panel-open .page-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .page-overlay {
  background: rgba(255, 255, 255, 0);
}

.menu-drawer,
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 50;
  width: min(460px, 100%);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-drawer {
  left: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  min-height: 168px;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(13, 13, 13, 0.08);
  transform: translateY(-105%);
}

.cart-drawer {
  right: 0;
  transform: translateX(105%);
}

body.menu-open .menu-drawer {
  transform: translateY(0);
}

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

.drawer-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: var(--header-bar-height);
  padding: 0 var(--header-inline-pad);
}

.drawer-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cart-drawer .drawer-head {
  border-bottom: 1px solid var(--line);
}

.drawer-brand {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.drawer-brand__logo {
  width: min(200px, 100%);
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}

.drawer-close {
  grid-column: 3;
  justify-self: end;
}

.drawer-content {
  padding: 0 var(--header-inline-pad) 22px;
  border-top: 1px solid var(--line);
}

.drawer-nav--catalog {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
}

.drawer-nav--catalog a {
  min-width: min(220px, 42vw);
  padding: 20px 18px 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.drawer-nav--catalog a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 7px;
}

.drawer-nav a,
.drawer-footer a,
.footer-links a,
.footer-details__body a,
.drawer-link {
  transition: opacity 180ms ease;
}

.drawer-nav a:hover,
.drawer-footer a:hover,
.footer-links a:hover,
.footer-details__body a:hover,
.drawer-link:hover {
  opacity: 0.64;
}

.drawer-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.cart-empty {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px var(--header-inline-pad);
}

.cart-empty p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.drawer-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-section {
  min-height: 100svh;
  background: #040404;
}

.coming-soon {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070707;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.42);
}

.coming-soon__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  filter: grayscale(1);
  object-fit: cover;
  object-position: center;
}

.coming-soon__copy {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(720px, calc(100vw - 32px));
  height: 100%;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.coming-soon__content {
  display: grid;
  justify-items: center;
  width: min(760px, calc(100vw - 32px));
  margin-top: clamp(28px, 7vh, 86px);
  color: #ffffff;
  text-align: center;
  text-shadow: none;
}

.coming-soon__content.visually-hidden {
  width: 1px;
  height: 1px;
  margin: -1px;
}

.coming-soon__title {
  position: absolute;
  top: calc(50% - 124px);
  left: 50%;
  width: clamp(310px, 34vw, 610px);
  max-height: 116px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translateX(-50%);
}

.coming-soon__cities,
.coming-soon__note {
  margin: 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: none;
}

.coming-soon__title::before,
.coming-soon__title::after,
.coming-soon__cities::before,
.coming-soon__cities::after,
.coming-soon__note::before,
.coming-soon__note::after {
  content: none;
}

.coming-soon__cities {
  position: absolute;
  top: calc(50% + 34px);
  left: 0;
  width: 100%;
  font-size: clamp(20px, 1.95vw, 31px);
}

.coming-soon__note {
  position: absolute;
  bottom: clamp(44px, 8vh, 72px);
  left: 0;
  width: 100%;
  margin-top: 0;
  font-size: clamp(24px, 2.45vw, 38px);
}

.hero-link {
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
}

.hero-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-link img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  transform: scale(1.012);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease;
}

.hero-link:hover img,
.hero-link:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

.hero-meta {
  position: absolute;
  left: var(--header-inline-pad);
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero-meta__index {
  color: rgba(255, 255, 255, 0.48);
}

.hero-link:hover .hero-meta,
.hero-link:focus-visible .hero-meta {
  opacity: 1;
  transform: translateY(0);
}

.home-showcase {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-top: 1px solid #f3f3f3;
  padding-bottom: clamp(44px, 6vw, 84px);
}

.home-showcase__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid #f3f3f3;
}

.home-showcase__categories a {
  display: flex;
  min-height: clamp(88px, 10vw, 132px);
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f3f3f3;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    opacity 180ms ease;
}

.home-showcase__categories a:last-child {
  border-right: 0;
}

.home-showcase__categories a:hover,
.home-showcase__categories a:focus-visible {
  background: #f8f8f8;
}

.home-showcase__rail {
  display: grid;
  grid-auto-columns: minmax(220px, 18vw);
  grid-auto-flow: column;
  gap: clamp(22px, 3vw, 44px);
  overflow-x: auto;
  padding: clamp(44px, 6vw, 86px) var(--header-inline-pad) 8px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.home-showcase__rail::-webkit-scrollbar {
  display: none;
}

.home-showcase__rail .product-card {
  scroll-snap-align: start;
}

.catalog-section {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.collection-main {
  padding-top: var(--header-bar-height);
}

.collection-page .catalog-section {
  padding-top: clamp(64px, 9vw, 128px);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.catalog-controls {
  display: none;
  align-items: center;
  gap: 6px;
}

.rail-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.rail-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.rail-button:disabled:hover {
  background: transparent;
}

.catalog-empty {
  display: none;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.catalog-section.is-empty .catalog-empty {
  display: block;
}

.catalog-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 18vw, 272px), 1fr));
  gap: clamp(38px, 5vw, 72px) clamp(18px, 3vw, 34px);
  padding-inline: var(--header-inline-pad);
  overflow: visible;
}

.product-card {
  position: relative;
  min-width: 0;
}

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

.product-link {
  display: grid;
  gap: 14px;
  color: inherit;
}

.product-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ffffff;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease;
}

.product-card:hover .product-photo img,
.product-card:focus-within .product-photo img {
  transform: scale(1.025);
}

.product-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  opacity: 0;
  transform: translate3d(6px, 0, 0);
  backdrop-filter: blur(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
  cursor: pointer;
}

.product-heart svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 180ms ease;
}

.product-heart.is-active svg {
  fill: currentColor;
}

.product-card:hover .product-heart,
.product-card:focus-within .product-heart {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-info {
  display: grid;
  gap: 7px;
  min-height: 94px;
}

.product-status {
  min-height: 13px;
  color: #9b9b9b;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 9px;
}

.product-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9c9c9;
}

.product-dots span.is-active {
  background: #242424;
}

.product-name {
  margin: 9px 0 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.18;
  font-weight: 400;
}

.product-price {
  color: #555555;
  font-size: 14px;
  line-height: 1.3;
}

.product-dialog {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  overflow-y: auto;
  background: #ffffff;
  color: var(--text);
}

body.product-open .product-dialog {
  display: block;
}

.product-dialog__close {
  position: fixed;
  top: 22px;
  right: var(--header-inline-pad);
  z-index: 2;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.product-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.2;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 100svh;
  gap: clamp(36px, 6vw, 96px);
  padding: clamp(96px, 12vw, 160px) var(--header-inline-pad) 56px;
}

.product-detail__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 560px;
}

.product-detail__media img {
  width: min(620px, 100%);
  max-height: 74svh;
  object-fit: contain;
}

.product-detail__content {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: 620px;
  padding-top: clamp(28px, 5vw, 88px);
}

.product-detail__back {
  width: fit-content;
  color: var(--text-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.product-detail__content h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 400;
}

.product-detail__price {
  color: #4f4f4f;
  font-size: 22px;
  line-height: 1.2;
}

.product-options {
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.product-option {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
}

.product-option > span {
  font-size: 14px;
  font-weight: 500;
}

.color-options,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.color-options button {
  width: 22px;
  height: 22px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--swatch);
  cursor: pointer;
}

.color-options button.is-selected {
  border-color: #000000;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.size-options button {
  min-width: 28px;
  border: 0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.size-options button.is-selected {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-add-button {
  height: 52px;
  margin-top: 24px;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.product-add-button:hover,
.product-add-button:focus-visible {
  background: #ffffff;
  color: #000000;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  border-bottom: 1px solid var(--line);
}

.product-tabs button {
  border: 0;
  background: transparent;
  padding: 0 0 10px;
  font-size: 15px;
  cursor: pointer;
}

.product-tabs button.is-active {
  box-shadow: inset 0 -1px 0 #000000;
}

.product-tab-text {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.45;
}

.product-meta-inline {
  display: none;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding-top: 52px;
  padding-bottom: 18px;
  background: #ffffff;
  border-top: 1px solid #f3f3f3;
}

.footer-desktop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-desktop .footer-column:not(:first-child),
.footer-mobile details:not(:first-child),
.footer-mobile__subscribe {
  display: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-details__body a {
  width: fit-content;
  font-size: 14px;
  line-height: 1.25;
}

.subscribe-form {
  display: grid;
  gap: 14px;
}

.subscribe-label {
  display: block;
}

.subscribe-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--text);
  border-radius: 0;
  padding: 0 0 8px;
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 14px;
}

.subscribe-input::placeholder {
  color: var(--text);
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 10px;
  line-height: 1.45;
}

.checkbox-line input {
  margin-top: 3px;
  accent-color: var(--text);
}

.checkbox-line a {
  border-bottom: 1px solid rgba(13, 13, 13, 0.28);
}

.subscribe-button {
  justify-self: start;
  min-width: 168px;
  height: 32px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.subscribe-button:hover:enabled,
.subscribe-button:focus-visible:enabled {
  background: var(--text);
  color: var(--bg);
}

.subscribe-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.subscribe-success {
  display: none;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.subscribe-form.is-success .subscribe-success {
  display: block;
}

.footer-mobile {
  display: none;
}

.footer-details {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 12px;
}

.footer-details summary {
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.footer-details summary::-webkit-details-marker {
  display: none;
}

.footer-details__body {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.footer-mobile__subscribe {
  padding-top: 6px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: #9a9a9a;
  font-size: 13px;
}

.footer-meta span {
  font-size: 0;
}

.footer-meta span::before {
  content: "\00a9  Amour Argent 2026";
  font-size: 13px;
}

.footer-meta a {
  color: inherit;
}

.icon-button:focus-visible,
.rail-button:focus-visible,
.drawer-close:focus-visible,
.header-text-button:focus-visible,
.drawer-text-button:focus-visible,
.subscribe-button:focus-visible,
.product-heart:focus-visible,
.product-dialog__close:focus-visible,
.product-add-button:focus-visible,
.product-tabs button:focus-visible,
.hero-link:focus-visible,
.product-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-meta {
    opacity: 1;
    transform: none;
  }

  .product-meta-inline {
    display: grid;
    gap: 4px;
  }

  .product-overlay {
    display: none;
  }

  .product-heart {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-bar-height: 72px;
    --header-inline-pad: 18px;
    --card-width: 168px;
  }

  .header-bar {
    min-height: 72px;
  }

  .search-panel {
    top: 72px;
  }

  .brand {
    width: min(144px, 42vw);
  }

  .header-text-button,
  .drawer-text-button {
    font-size: 15px;
  }

  .icon-button,
  .rail-button {
    width: 34px;
    height: 34px;
  }

  .hero-section,
  .hero-link,
  .hero-link img {
    min-height: 100svh;
  }

  .hero-meta {
    left: 18px;
    bottom: 22px;
    letter-spacing: 0.18em;
  }

  .catalog-section {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .home-showcase__categories a {
    min-height: 86px;
  }

  .home-showcase__rail {
    grid-auto-columns: minmax(172px, 42vw);
    gap: 18px;
    padding-top: 34px;
  }

  .collection-page .catalog-section {
    padding-top: 44px;
  }

  .catalog-toolbar {
    margin-bottom: 24px;
  }

  .product-name {
    font-size: 14px;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: grid;
    gap: 14px;
  }

  .footer-meta {
    gap: 8px;
    font-size: 12px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 82px;
  }

  .product-detail__media {
    min-height: 0;
  }

  .product-detail__media img {
    max-height: 58svh;
  }

  .product-detail__content {
    max-width: none;
    padding-top: 0;
  }

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

@media (max-width: 560px) {
  .header-actions {
    gap: 2px;
  }

  .search-field input {
    font-size: 16px;
  }

  .menu-drawer,
  .cart-drawer {
    width: 100%;
  }

  .catalog-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 14px;
  }

  .home-showcase__categories {
    grid-template-columns: 1fr;
  }

  .home-showcase__categories a {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 17px;
  }

  .home-showcase__categories a:last-child {
    border-bottom: 0;
  }

  .product-link {
    gap: 10px;
  }

  .product-info {
    gap: 5px;
    min-height: 82px;
  }

  .product-status {
    font-size: 10px;
  }

  .product-dots {
    gap: 6px;
  }

  .product-dots span {
    width: 6px;
    height: 6px;
  }

  .product-name {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.22;
  }

  .product-price {
    font-size: 12px;
  }

  .product-heart {
    opacity: 1;
    transform: none;
  }

  .drawer-nav--catalog {
    gap: 28px;
  }

  .drawer-nav--catalog a {
    min-width: 0;
    width: 100%;
    padding-inline: 0;
    font-size: 16px;
  }

  .product-detail {
    padding-inline: 18px;
  }

  .product-detail__content h2 {
    font-size: 26px;
  }

  .coming-soon__content {
    width: min(560px, calc(100vw - 28px));
    margin-top: clamp(18px, 6vh, 52px);
  }

  .coming-soon__title {
    top: calc(50% - 106px);
    width: min(78vw, 340px);
  }

  .coming-soon__cities {
    top: calc(50% + 8px);
  }

  .coming-soon__note {
    bottom: auto;
    top: calc(50% + 168px);
  }

  .product-tabs {
    gap: 14px;
  }

  .product-tabs button {
    font-size: 14px;
  }
}
