/* ================ FONTS ================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ================ RESET ================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* Display heading scale — Inter Bold, tight tracking */
.h-display {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.h-large {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-light, .nav.nav--solid {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  color: #0a0a0a;
  border-bottom-color: rgb(0 0 0 / 12%);
}
.nav__logo {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__items {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__items a { position: relative; padding: 6px 0; }
.nav__items a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav__items a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; }
.nav__right svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.nav__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.nav__cart-count {
  position: absolute;
  top: -7px; right: -9px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.nav:not(.is-light):not(.nav--solid) .nav__cart-count { background: #fff; color: #0a0a0a; }

/* ---- Mobile burger ---- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: currentColor;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.nav.is-menu-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-menu-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Mobile menu panel ---- */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav__mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.nav__mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: #0a0a0a;
  color: #fff;
  z-index: 101;
  padding: 88px 36px 60px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.nav__mobile-close:hover { color: #fff; }
.nav__mobile-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.nav__mobile-body { overflow-y: auto; flex: 1; }
.nav__mobile ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.nav__mobile ul li a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.nav__mobile ul li:last-child a { border-bottom: none; }

/* ================ FULLSCREEN CATEGORY BLOCK ================ */
.fs-block {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  display: block;
}
.fs-block + .fs-block { margin-top: 0; }
.fs-block__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.fs-block__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.fs-block:hover .fs-block__media img { transform: scale(1.04); }
.fs-block__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.45) 100%);
}
.fs-block__inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.fs-block__num {
  position: absolute;
  top: 32px; left: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: .85;
}
.fs-block__meta {
  position: absolute;
  top: 32px; right: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .85;
}
.fs-block__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .85;
}
.fs-block__title {
  font-weight: 700;
  font-size: clamp(64px, 11vw, 180px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 0;
}
.fs-block__sub {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
  max-width: 420px;
  opacity: .85;
}
.fs-block__cta {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.fs-block__cta:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.fs-block__cta::after { content: '→'; font-size: 14px; line-height: 1; }

/* ================ INTRO STRIP (between fullscreen blocks if needed) ================ */
.intro {
  padding: 200px 40px;
  text-align: center;
  background: #fff;
  color: #0a0a0a;
}
.intro__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 32px;
}
.intro__title {
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.intro__sub {
  margin: 32px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: #666;
  max-width: 540px;
}

/* ================ PILL BUTTONS ================ */
.pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  color: #fff;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.pill:hover { background: #fff; color: #0a0a0a; border-color: #fff; }
.pill--solid { background: #fff; color: #0a0a0a; border-color: #fff; }
.pill--solid:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.pill--dark { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.pill--dark:hover { background: transparent; color: #0a0a0a; border-color: #0a0a0a; }
.pill--ghost-dark { background: transparent; color: #0a0a0a; border-color: #0a0a0a; }
.pill--ghost-dark:hover { background: #0a0a0a; color: #fff; }
.pill--block { display: flex; width: 100%; justify-content: center; padding: 16px 28px; }

/* ================ SECTIONS / PAGES ================ */
section { padding: 120px 40px; }
.section__head {
  max-width: 1480px;
  margin: 0 auto 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
}
.section__eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #999; margin-bottom: 20px; }
.section__title {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.4;
}
.section__link { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid #0a0a0a; padding-bottom: 3px; white-space: nowrap; }

/* ================ CATALOG / FILTERS ================ */
.catalog { padding-top: 120px; }
.catalog__layout {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.filters { position: sticky; top: 100px; font-size: 13px; }
.filters__title {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0a0a0a; margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid #0a0a0a;
  display: flex; justify-content: space-between; align-items: center;
}
.filters__clear { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: #999; text-transform: uppercase; }
.filters__clear:hover { color: #0a0a0a; }
.filter-group { border-bottom: 1px solid rgba(0,0,0,.08); padding: 18px 0; }
.filter-group__head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 0;
}
.filter-group__head .chev { transition: transform .3s ease; font-size: 14px; line-height: 1; }
.filter-group.is-collapsed .chev { transform: rotate(-90deg); }
.filter-group__body { padding-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.filter-group.is-collapsed .filter-group__body { display: none; }

.check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #333; cursor: pointer; }
.check input { display: none; }
.check__box {
  width: 14px; height: 14px;
  border: 1px solid #999;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.check input:checked + .check__box { background: #0a0a0a; border-color: #0a0a0a; }
.check input:checked + .check__box::after {
  content: ''; width: 6px; height: 3px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.check__count { margin-left: auto; color: #bbb; font-size: 12px; }

.range { margin: 14px 0 6px; position: relative; height: 32px; }
.range__track { position: absolute; top: 14px; left: 0; right: 0; height: 1px; background: #d4d4d4; }
.range__fill { position: absolute; top: 13px; height: 3px; background: #0a0a0a; }
.range input[type=range] {
  position: absolute; top: 0; left: 0; width: 100%; height: 32px;
  -webkit-appearance: none; appearance: none; background: none; pointer-events: none;
}
.range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 1.5px solid #0a0a0a; cursor: pointer; pointer-events: auto;
}
.range input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 1.5px solid #0a0a0a; cursor: pointer; pointer-events: auto;
}
.range__values { display: flex; justify-content: space-between; font-size: 12px; color: #555; letter-spacing: 0.02em; }

.search-input {
  width: 100%; border: none; border-bottom: 1px solid #d0d0d0;
  padding: 8px 0; font-size: 13px;
  background: transparent; outline: none; transition: border-color .2s;
}
.search-input:focus { border-bottom-color: #0a0a0a; }
.artist-list { max-height: 160px; overflow-y: auto; margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.artist-list::-webkit-scrollbar { width: 4px; }
.artist-list::-webkit-scrollbar-thumb { background: #ccc; }

.size-toggle { display: flex; gap: 6px; margin-top: 4px; }
.size-toggle button {
  flex: 1; padding: 10px 0;
  border: 1px solid #d0d0d0; background: #fff;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all .2s;
}
.size-toggle button:hover { border-color: #0a0a0a; }
.size-toggle button.is-active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.chips { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; min-height: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 16px;
  background: #0a0a0a; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
}
.chip__close {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; line-height: 1;
  transition: background .2s;
}
.chip__close:hover { background: rgba(255,255,255,.4); }

.catalog__meta { display: none; }

/* ================ PRODUCT GRID + CARDS — minimal, 12px text ================ */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 96px 32px; }
.card { position: relative; transition: opacity .35s ease, transform .35s ease; }
.card.is-hidden { display: none; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), opacity .5s;
  opacity: 0;
}
.card__media img.is-loaded { opacity: 1; }
.card:hover .card__media img { transform: scale(1.04); }
.card__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.0);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0 24px;
  opacity: 0; transition: opacity .35s ease, background-color .35s ease;
}
.card:hover .card__overlay { opacity: 1; background-color: rgba(10,10,10,.12); }
.card__cta {
  padding: 11px 26px;
  background: #fff; color: #0a0a0a;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transform: translateY(8px); transition: transform .35s ease;
}
.card:hover .card__cta { transform: translateY(0); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  padding: 5px 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.card__artist { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.card__title {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #0a0a0a;
}
.card__title em { font-style: italic; }
.card__title a:hover { opacity: .65; }
.card__meta { display: flex; justify-content: space-between; font-size: 12px; color: #888; }
.card__price { color: #0a0a0a; font-weight: 500; }

.grid-empty { grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: #888; }
.grid-empty__title { font-weight: 700; font-size: 36px; letter-spacing: -0.02em; margin-bottom: 16px; color: #0a0a0a; }

/* ================ FOOTER ================ */
footer { background: #f4f3f0; border-top: 1px solid rgba(0,0,0,.08); font-size: 12px; color: #0a0a0a; }
.footer__inner { max-width: 1480px; margin: 0 auto; padding: 0 10px; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer__nav .footer__menu { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin: 0; padding: 0; }
.footer__nav li { margin: 0; padding: 0; }
.footer__nav a { color: inherit; text-decoration: none; transition: opacity .2s; }
.footer__nav a:hover { opacity: .45; }
.footer__nav-empty { font-size: 12px; color: #888; }
.footer__nav-empty a { color: #0a0a0a; }
.footer__copy { white-space: nowrap; }

/* ================ MOBILE FILTER TOGGLE ================ */
.filters-toggle {
  display: none; width: 100%; padding: 14px;
  border: 1px solid #0a0a0a; margin-bottom: 24px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ================ MINI-CART DRAWER ================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.minicart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 460px; max-width: 92vw;
  background: #fff; color: #0a0a0a;
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.minicart.is-open { transform: translateX(0); }
.minicart__head {
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.minicart__title { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.minicart__close { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 0; border-bottom: 1px solid #0a0a0a; }
.minicart__body { flex: 1; overflow-y: auto; padding: 8px 32px; }
.minicart__items { display: flex; flex-direction: column; }
.mc-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mc-item__img { aspect-ratio: 4/5; background: #f4f3f0; overflow: hidden; }
.mc-item__img img { width: 100%; height: 100%; object-fit: cover; }
.mc-item__meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mc-item__artist { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
.mc-item__title { font-size: 13px; font-weight: 500; line-height: 1.4; color: #0a0a0a; }
.mc-item__sub { font-size: 11px; color: #888; margin-top: 2px; }
.mc-item__qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; border: 1px solid #d4d4d4; align-self: flex-start; }
.mc-item__qty button { width: 24px; height: 24px; font-size: 14px; line-height: 1; }
.mc-item__qty span { width: 22px; text-align: center; font-size: 12px; }
.mc-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 6px; }
.mc-item__price { font-size: 13px; font-weight: 500; }
.mc-item__remove { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: #999; text-transform: uppercase; }
.mc-item__remove:hover { color: #0a0a0a; }
.minicart__empty { padding: 60px 0; text-align: center; color: #888; }
.minicart__empty h4 { font-weight: 700; font-size: 28px; letter-spacing: -0.02em; color: #0a0a0a; margin-bottom: 12px; }
.minicart__foot {
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fafafa;
}
.minicart__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; margin-bottom: 8px; color: #555; }
.minicart__row--total { font-size: 13px; color: #0a0a0a; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,.08); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.minicart__row--total .v { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; text-transform: none; }
.minicart__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.minicart__hint { font-size: 11px; color: #888; text-align: center; margin-top: 14px; letter-spacing: 0.02em; }

/* ================ PAGES — SHARED ================ */

.page-head {
  background: #fff;
  padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.page-head__inner { max-width: 1480px; margin: 0 auto; }
.crumbs { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs a:hover { color: #0a0a0a; }
.crumbs span { color: #0a0a0a; }
.page-head__title {
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.02em; line-height: 0.95;
}
.page-head__title em { font-style: italic; font-weight: 500; }
.page-head__sub { max-width: 580px; margin-top: 24px; color: #666; line-height: 1.8; font-size: 14px; }

/* ================ PRODUCT PAGE ================ */
.product { padding: 60px 40px 120px; max-width: 1480px; margin: 0 auto; }
.product__layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.product__gallery { display: flex; flex-direction: column; gap: 12px; }
.product__main {
  position: relative;
  aspect-ratio: 4/5;
  background: #f4f3f0;
  overflow: hidden;
}
.product__main img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product__thumb { aspect-ratio: 1; overflow: hidden; background: #f4f3f0; cursor: pointer; opacity: .55; transition: opacity .25s; }
.product__thumb.is-active { opacity: 1; outline: 1px solid #0a0a0a; }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__info { position: sticky; top: 100px; }
.product__artist { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 16px; }
.product__title { font-weight: 700; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.02em; line-height: 1; margin-bottom: 28px; }
.product__title em { font-style: italic; font-weight: 500; }
.product__price { font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 8px; }
.product__avail { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #2c7a3a; margin-bottom: 36px; }
.product__avail::before { content: '●'; margin-right: 8px; }
.product__details { border-top: 1px solid rgba(0,0,0,.08); padding-top: 28px; margin-top: 28px; }
.product__detail-row { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 13px; }
.product__detail-row dt { color: #888; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; font-weight: 500; }
.product__detail-row dd { color: #0a0a0a; }
.product__desc { margin: 32px 0; line-height: 1.85; color: #555; font-size: 14px; }
.product__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.product__qty {
  display: inline-flex; align-items: center;
  border: 1px solid #d4d4d4;
  margin-bottom: 16px;
}
.product__qty button { width: 44px; height: 44px; font-size: 16px; }
.product__qty span { width: 44px; text-align: center; }

.product-related { padding: 120px 40px; max-width: 1480px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,.06); }

/* ================ CART PAGE ================ */
.cart-page { max-width: 1480px; margin: 0 auto; padding: 60px 40px 120px; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.cart-list { display: flex; flex-direction: column; }
.cart-list__head { display: grid; grid-template-columns: 120px 1fr 140px 120px 100px 40px; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid #0a0a0a; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; align-items: end; }
.cart-row { display: grid; grid-template-columns: 120px 1fr 140px 120px 100px 40px; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,.08); align-items: center; }
.cart-row__img { aspect-ratio: 4/5; background: #f4f3f0; overflow: hidden; }
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__title { font-size: 14px; font-weight: 500; line-height: 1.4; margin-bottom: 6px; color: #0a0a0a; display: block; }
.cart-row__artist { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 6px; }
.cart-row__sub { font-size: 12px; color: #888; }
.cart-row__price { font-size: 14px; }
.cart-row__total { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.cart-row__remove { font-size: 20px; color: #aaa; line-height: 1; }
.cart-row__remove:hover { color: #0a0a0a; }
.qty-input { display: inline-flex; align-items: center; border: 1px solid #d4d4d4; }
.qty-input button { width: 32px; height: 32px; font-size: 14px; padding: 0; display: flex; align-items: center; justify-content: center; line-height: 1; }
.qty-input span { width: 32px; text-align: center; font-size: 13px; }

.summary { background: #0a0a0a; color: #fff; padding: 36px; position: sticky; top: 100px; }
.summary h3 { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 26px; }
.summary__row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13px; color: rgba(255,255,255,.75); }
.summary__row--total { padding-top: 18px; margin-top: 14px; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.summary__row--total .v { font-weight: 700; font-size: 24px; letter-spacing: -0.02em; text-transform: none; color: #fff; }
.summary__promo { margin: 22px 0 14px; display: flex; gap: 8px; }
.summary__promo input { flex: 1; background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 10px 14px; font-size: 12px; outline: none; }
.summary__promo input::placeholder { color: rgba(255,255,255,.4); }
.summary__promo button { padding: 0 18px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); transition: all .2s; }
.summary__promo button:hover { background: #fff; color: #0a0a0a; }
.summary .pill { width: 100%; justify-content: center; padding: 16px 28px; margin-top: 10px; }

.cart-empty { text-align: center; padding: 120px 20px; }
.cart-empty h2 { font-weight: 700; font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.02em; margin-bottom: 20px; }
.cart-empty h2 em { font-style: italic; font-weight: 500; }
.cart-empty p { color: #777; margin-bottom: 32px; }

/* ================ CHECKOUT ================ */
.checkout-page { background: #fff; }
.checkout-head {
  padding: 44px 40px 28px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.checkout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 120px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.checkout__form { display: flex; flex-direction: column; }

/* Express checkout */
.express-co { padding: 20px 0 8px; border-bottom: 1px solid rgba(0,0,0,.12); }
.express-co__label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.express-co__note { font-size: 13px; color: #555; margin-bottom: 12px; }
.paypal-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; background: #0a0a0a; color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: none; cursor: pointer; font-family: inherit; transition: background .2s;
}
.paypal-btn:hover { background: #1a1a1a; }
.paypal-btn svg { height: 18px; width: auto; fill: #fff; flex-shrink: 0; }
.or-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 16px 0 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #999;
}
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,.12); }

/* Section rows */
.co-section { border-bottom: 1px solid rgba(0,0,0,.12); }
.co-section__head {
  display: flex; align-items: center;
  padding: 18px 0;
}
.co-section__num { font-size: 12px; font-weight: 500; color: #0a0a0a; margin-right: 14px; min-width: 14px; }
.co-section__title { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; flex: 1; }
.co-section__edit {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0a0a0a; text-decoration: underline; text-underline-offset: 3px;
}
.co-section__info { padding: 0 0 16px 28px; font-size: 13px; color: #555; }
.co-section__body { padding: 4px 0 24px; }

/* Floating label fields */
.float-field {
  position: relative;
  border: 1px solid #d4d4d4;
  background: #fff;
  margin-bottom: 6px;
  transition: border-color .2s;
}
.float-field:focus-within { border-color: #888; }
.float-field label {
  position: absolute; top: 10px; left: 14px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.02em; color: #888;
  pointer-events: none; text-transform: none;
}
.float-field input,
.float-field select {
  display: block; width: 100%;
  padding: 28px 14px 10px;
  border: none; background: transparent;
  font-size: 14px; font-weight: 500; color: #0a0a0a;
  outline: none; font-family: inherit;
}
.float-field input::placeholder { color: transparent; }
.float-field select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.float-field--select::after {
  content: '';
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}
.req-note { font-size: 11px; color: #888; text-align: right; margin-bottom: 10px; }

/* Save address checkbox */
.co-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #444; cursor: pointer; margin: 14px 0; }
.co-check input { display: none; }
.co-check__box {
  width: 16px; height: 16px; border: 1.5px solid #999; background: #fff;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.co-check input:checked + .co-check__box { border-color: #b85c38; }
.co-check input:checked + .co-check__box::after {
  content: ''; width: 9px; height: 5px;
  border-left: 1.5px solid #b85c38; border-bottom: 1.5px solid #b85c38;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Save & Continue / place order */
/* Shipping method options */
.iw-shipping-methods { margin: 16px 0; display: flex; flex-direction: column; gap: 6px; }
.iw-ship-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border: 1px solid #d4d4d4; cursor: pointer;
  font-size: 13px; transition: border-color .2s;
}
.iw-ship-opt:has(input:checked) { border-color: #0a0a0a; }
.iw-ship-opt input[type="radio"] { width: 16px; height: 16px; accent-color: #0a0a0a; flex-shrink: 0; cursor: pointer; }
.iw-ship-name { flex: 1; font-weight: 400; color: #0a0a0a; }
.iw-ship-price { font-size: 12px; font-weight: 500; color: #0a0a0a; white-space: nowrap; }

.save-continue, #place_order {
  width: 100%; padding: 16px;
  background: #4a4a4a; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: inherit; transition: background .2s; margin-top: 6px;
}
.save-continue:hover, #place_order:hover { background: #0a0a0a; }

/* Legacy field / fieldset (WC payment area) */
.fieldset__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.12); }
.fieldset__num { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: #999; text-transform: uppercase; }
.fieldset__title { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.field { display: flex; flex-direction: column; gap: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: none; }
.field input, .field select, .field textarea {
  background: #fff; border: 1px solid #d4d4d4;
  padding: 14px; font-size: 14px;
  outline: none; transition: border-color .2s; color: #0a0a0a; font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: #888; }
.field textarea { resize: vertical; min-height: 80px; }

.delivery-opts, .payment-opts { display: flex; flex-direction: column; gap: 8px; }
.opt {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 16px 18px; border: 1px solid #d4d4d4; background: #fff;
  cursor: pointer; transition: border-color .2s; align-items: center;
}
.opt:hover { border-color: #888; }
.opt input { display: none; }
.opt:has(input:checked) { border-color: #0a0a0a; }
.opt__radio { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #999; position: relative; flex-shrink: 0; }
.opt:has(input:checked) .opt__radio { border-color: #0a0a0a; }
.opt:has(input:checked) .opt__radio::after { content: ''; position: absolute; inset: 3px; background: #0a0a0a; border-radius: 50%; }
.opt__title { font-size: 13px; font-weight: 500; }
.opt__sub { font-size: 11px; color: #888; margin-top: 3px; display: block; }
.opt__price { font-size: 13px; font-weight: 500; }

/* Order summary sidebar */
.checkout__summary { background: transparent; border: none; padding: 0; position: sticky; top: 100px; }
.co-sum-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.15); margin-bottom: 12px;
}
.co-sum-header__title { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.co-sum-header__toggle {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none; font-family: inherit; color: inherit;
}
.co-sum-header__toggle svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }
.checkout__items {
  display: flex; flex-direction: column; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.1); margin-bottom: 12px;
  max-height: 280px; overflow-y: auto;
}
.checkout__item { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; }
.checkout__item-img { aspect-ratio: 4/5; background: #d8d8d8; overflow: hidden; }
.checkout__item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout__item-title { font-size: 12px; font-weight: 500; line-height: 1.4; }
.checkout__item-sub { font-size: 11px; color: #666; margin-top: 2px; }
.checkout__item-price { font-size: 12px; font-weight: 500; }
.co-sum-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0; font-size: 13px; color: #444;
}
.co-sum-row span:last-child { text-align: right; font-size: 12px; }
.co-sum-row--total {
  padding: 12px 0 8px; margin-top: 6px; border-top: 1px solid rgba(0,0,0,.12);
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #0a0a0a;
}
.co-sum-row--total .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; text-transform: none; }
.co-accord { margin-top: 18px; border-top: 1px solid rgba(0,0,0,.12); }
.co-accord__item { border-bottom: 1px solid rgba(0,0,0,.12); }
.co-accord__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 0; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; gap: 10px; line-height: 1.5;
}
.co-accord__icon { font-size: 18px; font-weight: 300; line-height: 1; flex-shrink: 0; color: #555; margin-top: 1px; }
.co-accord__body { padding-bottom: 14px; font-size: 13px; line-height: 1.75; color: #555; }
.co-accord__item.is-collapsed .co-accord__body { display: none; }

/* ── Thank-you page: WC order-details & customer-details ── */
.woocommerce-order-details,
.woocommerce-order-details section,
.woocommerce-customer-details,
.woocommerce-customer-details section { padding: 0; margin: 0; }

/* Section headings */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 0; margin: 0; border-bottom: 1px solid rgba(0,0,0,.12);
}

/* Order items table */
.woocommerce-table--order-details {
  width: 100%; border-collapse: collapse; text-align: left; margin-bottom: 20px;
}
.woocommerce-table--order-details thead th {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: #888; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.12);
}
.woocommerce-table--order-details thead th.product-total { text-align: right; }
.woocommerce-table--order-details tbody tr { border-bottom: 1px solid rgba(0,0,0,.07); }
.woocommerce-table--order-details tbody td {
  padding: 12px 0; font-size: 13px; color: #0a0a0a; vertical-align: middle;
}
.woocommerce-table--order-details tbody td.product-total { text-align: right; font-weight: 500; }
.woocommerce-table--order-details tbody td.product-name a {
  color: #0a0a0a; text-decoration: none; font-weight: 400;
}
.woocommerce-table--order-details tbody td.product-name a:hover { text-decoration: underline; }
.woocommerce-table--order-details tbody td.product-name .variation { font-size: 11px; color: #888; margin-top: 2px; }

/* Tfoot totals — mirror .co-sum-row */
.woocommerce-table--order-details tfoot tr th,
.woocommerce-table--order-details tfoot tr td {
  padding: 6px 0; font-size: 13px; font-weight: 400; color: #444; border: none;
}
.woocommerce-table--order-details tfoot tr td { text-align: right; }
.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  padding-top: 12px; border-top: 1px solid rgba(0,0,0,.12);
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.woocommerce-table--order-details tfoot tr:last-child td { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; text-transform: none; }

/* Customer details — address blocks */
.woocommerce-customer-details { margin-top: 8px; }
.woocommerce-columns--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.woocommerce-customer-details address {
  font-style: normal; font-size: 13px; color: #555; line-height: 1.75; padding: 12px 0;
}
.woocommerce-customer-details--phone,
.woocommerce-customer-details--email { margin: 0; }

/* ================ CATEGORY PAGE HERO ================ */
.cat-hero {padding: 100px 40px 72px; text-align: center; }
.cat-hero img { display: none; }
.cat-hero__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.cat-hero .crumbs { color: #aaa; margin-bottom: 28px; }
.cat-hero .crumbs span { color: #0a0a0a; }
.cat-hero .crumbs a:hover { color: #0a0a0a; }
.cat-hero__title { font-weight: 700; font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.4; color: #0a0a0a; }
.cat-hero__title em { font-style: normal; }
.cat-hero__sub { color: #777; margin-top: 16px; font-size: 13px; max-width: 480px; line-height: 1.8; }
#cartRoot,#checkoutRoot{
	padding: 20px 40px;
}
/* ================ SEARCH OVERLAY ================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-overlay__close {
  position: fixed;
  top: 28px; right: 36px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  transition: opacity .2s ease;
  z-index: 201;
}
.search-overlay__close:hover { opacity: .4; }
.search-overlay__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.search-overlay__inner { max-width: 1200px; margin: 0 auto; padding: 110px 40px 80px; width: 100%; }
.search-overlay__eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: #aaa; margin-bottom: 28px;
}
.search-overlay__field {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 20px; margin-bottom: 56px;
}
.search-overlay__input {
  flex: 1;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700; letter-spacing: -0.02em;
  border: none; outline: none; background: transparent;
  color: #0a0a0a; font-family: inherit;
  -webkit-appearance: none;
}
.search-overlay__input::placeholder { color: #ddd; }
.search-overlay__input::-webkit-search-cancel-button { display: none; }
.search-overlay__count {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #aaa; margin-bottom: 32px;
}
.search-results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 24px; }
.search-result { display: block; }
.search-result__img { aspect-ratio: 3/4; overflow: hidden; background: #f2f2f2; margin-bottom: 14px; }
.search-result__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.search-result:hover .search-result__img img { transform: scale(1.05); }
.search-result__artist { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #999; margin-bottom: 5px; }
.search-result__title { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 5px; }
.search-result__price { font-size: 13px; color: #888; }
.search-empty { font-size: 15px; color: #888; padding: 8px 0; }

/* ================ RESPONSIVE ================ */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .product__layout { grid-template-columns: 1fr; gap: 56px; }
  .product__info { position: static; }
  .cart-page { grid-template-columns: 1fr; gap: 56px; }
  .checkout { grid-template-columns: 1fr; gap: 40px; }
  .cart-list__head { display: none; }
  .cart-row { grid-template-columns: 100px 1fr auto; gap: 18px; row-gap: 14px; }
  .cart-row__price, .cart-row__total { grid-column: 2 / 3; font-size: 14px; }
  .cart-row__remove { grid-column: 3 / 4; align-self: start; }
  .qty-input { grid-column: 2 / 3; }
  .fs-block { min-height: 640px; }
}
@media (max-width: 880px) {
  section { padding: 100px 24px; }
  .nav { padding: 18px 24px; }
  .nav__items { display: none; }
  .nav__burger { display: flex; }
  .search-overlay__inner { padding: 90px 24px 60px; }
  .search-overlay__close { right: 20px; top: 22px; }
  .search-results-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .nav__right span { display: none; }
  .catalog__layout { grid-template-columns: 1fr; gap: 24px; }
  .filters { position: static; display: none; padding: 24px; background: #fff; border: 1px solid #eee; }
  .filters.is-open { display: block; }
  .filters-toggle { display: block; }
  .chips { grid-column: 1; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  footer .footer__inner { padding: 0 24px; height: auto; min-height: 56px; flex-wrap: wrap; gap: 12px; }
  .footer__nav .footer__menu { gap: 16px; }
  .product, .cart-page, .checkout, .product-related { padding-left: 24px; padding-right: 24px; }
  .checkout-head { padding: 32px 24px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .page-head { padding: 60px 24px 40px; }
  .cat-hero { padding: 80px 24px 56px; }
  .fs-block__num, .fs-block__meta { top: 24px; }
  .fs-block__num { left: 24px; }
  .fs-block__meta { right: 24px; }
  .intro { padding: 120px 24px; }
  .admin-bar .nav,.admin-bar .nav__mobile{
	  top: 46px;
  }
  .nav__right{
	  margin-left: auto;
	  margin-right: 22px;
  }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; gap: 72px; }
  .product__detail-row { grid-template-columns: 1fr; gap: 4px; }
}
