/* ================ 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, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0a0a0a;
  border-bottom-color: rgb(0 0 0 / 30%);
}
.nav__logo {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.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: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 760px;
}
.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: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #555;
}

/* ================ 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: #0a0a0a; color: #c4c4c4; padding: 120px 40px 40px; font-size: 13px; }
.footer__inner { max-width: 1480px; margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 64px; padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__logo { font-weight: 700; font-size: 18px; letter-spacing: 0.1em; color: #fff; margin-bottom: 24px; }
.footer__about { color: #888; line-height: 1.8; max-width: 280px; font-size: 13px; }
.footer__col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: #888; font-size: 13px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__news p { color: #888; margin-bottom: 16px; line-height: 1.7; font-size: 13px; }
.footer__form { display: flex; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__form input { flex: 1; background: transparent; border: none; color: #fff; padding: 10px 0; font-size: 13px; outline: none; }
.footer__form input::placeholder { color: #555; }
.footer__form button { color: #fff; padding: 10px 6px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 36px; color: #666; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__legal { display: flex; gap: 28px; }
.footer__legal a:hover { color: #fff; }

/* ================ 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 { max-width: 1480px; margin: 0 auto; padding: 60px 40px 120px; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.checkout__form { display: flex; flex-direction: column; gap: 64px; }
.fieldset__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid #0a0a0a; }
.fieldset__num { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: #999; }
.fieldset__title { font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #999; }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  padding: 10px 0; font-size: 14px;
  outline: none; transition: border-color .2s;
  color: #0a0a0a;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: #0a0a0a; }
.field textarea { resize: vertical; min-height: 80px; }

.delivery-opts, .payment-opts { display: flex; flex-direction: column; gap: 10px; }
.opt {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  padding: 18px 22px;
  border: 1px solid #d4d4d4;
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
  align-items: center;
}
.opt:hover { border-color: #0a0a0a; }
.opt input { display: none; }
.opt:has(input:checked) { border-color: #0a0a0a; background: #fafafa; }
.opt__radio { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #999; position: relative; }
.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: 4px; display: block; }
.opt__price { font-size: 13px; font-weight: 500; }

.checkout__summary { background: #fafafa; border: 1px solid rgba(0,0,0,.08); padding: 32px; position: sticky; top: 100px; }
.checkout__summary h3 { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 26px; }
.checkout__items { display: flex; flex-direction: column; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 20px; max-height: 340px; overflow-y: auto; }
.checkout__item { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; }
.checkout__item-img { aspect-ratio: 4/5; background: #f4f3f0; overflow: hidden; }
.checkout__item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout__item-title { font-size: 13px; font-weight: 500; line-height: 1.4; }
.checkout__item-sub { font-size: 11px; color: #888; margin-top: 2px; }
.checkout__item-price { font-size: 13px; font-weight: 500; }

/* ================ CATEGORY PAGE HERO ================ */
.cat-hero {
  height: 64vh; min-height: 480px;
  position: relative; overflow: hidden;
  background: #0a0a0a; color: #fff;
}
.cat-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.cat-hero__inner {
  position: relative; z-index: 2;
  height: 100%; max-width: 1480px;
  margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 80px;
}
.cat-hero .crumbs { color: rgba(255,255,255,.7); }
.cat-hero .crumbs span { color: #fff; }
.cat-hero .crumbs a:hover { color: #fff; }
.cat-hero__title { font-weight: 700; font-size: clamp(64px, 9vw, 160px); letter-spacing: -0.02em; line-height: 0.95; }
.cat-hero__title em { font-style: italic; font-weight: 500; }
.cat-hero__sub { color: rgba(255,255,255,.85); margin-top: 20px; font-size: 14px; max-width: 540px; 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); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .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: 56px; }
  .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__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .footer__bottom { flex-direction: column; gap: 16px; padding-top: 24px; }
  footer { padding: 80px 24px 30px; }
  .product, .cart-page, .checkout, .product-related { padding-left: 24px; padding-right: 24px; }
  .field-grid { grid-template-columns: 1fr; }
  .page-head { padding: 60px 24px 40px; }
  .cat-hero__inner { padding: 0 24px 60px; }
  .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;
  }
  .cat-hero__title { font-weight: 700; font-size: clamp(24px, 9vw, 160px);}
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; gap: 72px; }
  .product__detail-row { grid-template-columns: 1fr; gap: 4px; }
}
