:root {
  --ink: #141414;
  --muted: #65605b;
  --paper: #f7f5f0;
  --soft: #ece8df;
  --line: #d9d2c6;
  --dark: #090909;
  --white: #ffffff;
  --accent: #be7b2a;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
.container { width: min(92%, var(--max)); margin: 0 auto; }

.announcement {
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announcement span {
  display: inline-flex;
  min-width: 100%;
  padding: .58rem 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #000000;
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 950;
  line-height: .9;
  text-decoration: none;
}
.logo img {
  width: min(120px, 34vw);
  height: auto;
  object-fit: contain;
}
.logo span {
  display: block;
  margin-top: .24rem;
  color: var(--accent);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .26rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .85rem;
  list-style: none;
}
.nav-links a,
.cart-open {
  color: var(--white);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--accent); }
.cart-open {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: #000000;
  padding: .62rem .9rem;
  cursor: pointer;
}

.hero,
.look-hero {
  min-height: min(82vh, 790px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 7vw, 5.2rem);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .22) 58%, rgba(0, 0, 0, .08)),
    var(--hero-image, url("style/style-01.webp")) center 38%/cover;
  color: var(--white);
}
.look-hero { --hero-image: url("style/style-04.webp"); }
.hero-copy,
.look-hero-copy { max-width: 760px; }
.kicker {
  margin-bottom: .75rem;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .kicker,
.look-hero .kicker,
.bottom-banner .kicker { color: #f6d7a8; }
.hero h1,
.look-hero h1,
.section-title {
  font-size: clamp(2.7rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .88;
}
.hero p:not(.kicker),
.look-hero p:not(.kicker) {
  max-width: 630px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.45rem;
}
.btn,
.ghost-btn,
.add-btn,
.send-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 0;
  padding: .78rem 1rem;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.btn,
.add-btn,
.send-btn { background: var(--accent); color: var(--white); }
.btn:hover,
.btn:focus-visible,
.add-btn:hover,
.add-btn:focus-visible,
.send-btn:hover,
.send-btn:focus-visible { background: var(--dark); }
.ghost-btn {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, .12);
  color: inherit;
}

.style-band { border-bottom: 1px solid var(--line); background: var(--dark); }
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}
.style-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #161616;
}
.style-media { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: #222; }
.style-media img { width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.style-copy { display: grid; gap: .4rem; padding: .75rem .8rem .9rem; }
.style-index {
  color: var(--accent);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.style-ref-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  padding: .42rem .55rem;
  font-size: .74rem;
  border-radius: 4px;
}
.style-ref-input::placeholder { color: rgba(255, 255, 255, .4); }
.style-ref-input:focus { outline: none; border-color: var(--accent); background: rgba(255, 255, 255, .1); }

.outfit-shortcut {
  display: flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}
.outfit-shortcut-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 55%;
  min-width: 0;
}
.outfit-shortcut-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  opacity: .94;
}
.outfit-shortcut-copy {
  flex: 1 1 45%;
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.outfit-shortcut-badge {
  align-self: flex-start;
  background: var(--accent);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .8rem;
  border-radius: 999px;
}
.outfit-shortcut-copy h2 {
  margin: .25rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 950;
}
.outfit-shortcut-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
  font-size: .92rem;
}
.outfit-shortcut-cta {
  margin-top: .3rem;
  font-weight: 800;
  color: var(--accent);
}
@media (max-width: 720px) {
  .outfit-shortcut { flex-direction: column; }
  .outfit-shortcut-media { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .outfit-shortcut-media img { min-height: 110px; }
  .outfit-shortcut-copy { padding: 1.3rem 1.2rem 1.6rem; }
}
.style-ref-result { min-height: 1.1rem; font-size: .74rem; }
.style-ref-link { color: var(--accent); font-weight: 800; text-decoration: none; }
.style-ref-link:hover { text-decoration: underline; }
.style-ref-missing { color: rgba(255, 255, 255, .45); }

.section { padding: clamp(3.8rem, 7vw, 6rem) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head p:last-child {
  max-width: 560px;
  color: var(--muted);
}
.section-dark .section-head p:last-child { color: rgba(255, 255, 255, .72); }
.catalogue-head { align-items: start; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.brand-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-accent, var(--accent)) 40%, var(--line));
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
}
.brand-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--soft);
}
.brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.brand-panel:hover .brand-media img,
.brand-panel:focus-visible .brand-media img { transform: scale(1.035); }
.brand-copy { display: grid; gap: .45rem; padding: .9rem; }
.brand-copy h3 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 950;
  line-height: 1.05;
}
.brand-copy p { color: rgba(255, 255, 255, .74); font-size: .84rem; }
.brand-tags { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.brand-count {
  color: var(--brand-accent, var(--accent));
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-new {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brand-accent, var(--accent));
  color: var(--white);
  padding: .2rem .55rem;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, .25fr) minmax(170px, .25fr);
  gap: .75rem;
  margin-bottom: 1rem;
}
.search-input,
.filter-select,
.product-select,
.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: .72rem .8rem;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.25rem;
}
.tab-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: .58rem .78rem;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.tab-btn.is-active { border-color: var(--brand-accent, var(--accent)); background: var(--brand-accent, var(--accent)); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.universe-empty {
  grid-column: 1 / -1;
  padding: 2.4rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: .92rem;
}
.section-dark .universe-empty { border-color: rgba(255, 255, 255, .22); color: rgba(255, 255, 255, .7); }
.product-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-accent, var(--accent)) 40%, var(--line));
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.section-dark .product-card { border-color: rgba(255, 255, 255, .18); }
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.product-card:hover .product-media img { transform: scale(1.035); }
.product-name-link { color: inherit; text-decoration: none; }
.product-name-link:hover .product-name { color: var(--brand-accent, var(--accent)); }
.product-body {
  display: grid;
  gap: .72rem;
  padding: .9rem;
}
.product-name { font-size: .96rem; font-weight: 950; line-height: 1.12; }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  margin-top: .38rem;
  color: var(--brand-accent, var(--accent));
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-note { color: var(--muted); font-size: .78rem; }
.product-price { color: var(--brand-accent, var(--accent)); font-size: .82rem; font-weight: 950; }
.product-controls { display: grid; gap: .5rem; }
.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.look-card {
  display: block;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark);
}
.look-card:nth-child(2),
.look-card:nth-child(4) { transform: translateY(2rem); }
.look-card img { width: 100%; height: 100%; object-fit: cover; }

.inspi-grid {
  display: grid;
  gap: 1.2rem;
}
.inspi-card {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.inspi-visual {
  min-height: 720px;
  background: var(--white);
}
.inspi-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inspi-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  background: var(--dark);
  color: var(--white);
  padding: clamp(1.4rem, 4vw, 3rem);
}
.inspi-copy h3 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: .92;
}
.inspi-copy p:not(.kicker) {
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
}
.inspi-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: .5rem;
}
.inspi-products .product-card {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}
.inspi-products .product-media {
  aspect-ratio: 1 / .82;
}
.inspi-products .product-body {
  padding: .75rem;
}
.inspi-products .product-name {
  font-size: .88rem;
}
.inspi-products .product-note,
.inspi-products .product-price {
  font-size: .72rem;
}
.inspi-products .product-controls {
  grid-template-columns: 1fr;
}
.inspi-products .product-select,
.inspi-products .add-btn {
  min-height: 38px;
  font-size: .68rem;
}

.universe-hero {
  min-height: min(72vh, 680px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(2.8rem, 6vw, 4.8rem);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .24) 58%, rgba(0, 0, 0, .08)),
    var(--hero-image, url("style/style-01.webp")) center/cover;
  color: var(--white);
}
.universe-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
}
.universe-hero p:not(.kicker) {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.banner-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-accent, var(--accent)) 50%, var(--line));
  background: var(--dark);
}
.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-card span {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .36);
  color: var(--white);
  padding: .36rem .58rem;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.universe-note {
  border-left: 5px solid var(--brand-accent, var(--accent));
  background: var(--white);
  padding: 1.2rem;
  color: var(--muted);
}
.universe-bottom {
  min-height: 360px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18)),
    var(--hero-image, url("banners/louis-vuitton-01.webp")) center/cover;
  color: var(--white);
}
.universe-bottom h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 950;
  line-height: .9;
}
.universe-bottom p {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .88);
}

.bottom-banner {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(190, 123, 42, .16)),
    url("banners/louis-vuitton-01.webp") center/cover;
  color: var(--white);
}
.bottom-banner h2 {
  max-width: 780px;
  font-size: clamp(2.5rem, 8vw, 6.6rem);
  font-weight: 950;
  line-height: .9;
}
.bottom-banner p:not(.kicker) {
  max-width: 780px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
  font-size: .86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.footer-grid strong { color: var(--ink); }

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(0, 0, 0, .55);
}
.cart-backdrop.is-open { display: block; }
.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(100%, 560px);
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .28);
  transform: translateX(105%);
  transition: transform .22s ease;
}
.cart-panel.is-open { transform: translateX(0); }
.cart-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}
.cart-head h2 { font-size: 1.1rem; font-weight: 950; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}
.cart-scroll { overflow: auto; padding: 1rem; }
.cart-items {
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: .75rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: .7rem;
}
.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}
.cart-item h3 { font-size: .9rem; }
.cart-item p { color: var(--muted); font-size: .78rem; }
.qty-row { display: flex; align-items: center; gap: .35rem; margin-top: .45rem; }
.qty-row button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.remove-btn {
  border: 0;
  background: transparent;
  color: #9a1b1b;
  font-size: .75rem;
  font-weight: 900;
  cursor: pointer;
}
.receipt {
  border: 1px dashed var(--accent);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}
.receipt h3 { margin-bottom: .65rem; font-size: .98rem; font-weight: 950; }
.receipt-line,
.receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .42rem 0;
  border-bottom: 1px solid #e8dfd2;
  font-size: .84rem;
}
.receipt-line span { max-width: 72%; }
.receipt-total { border-bottom: 0; font-size: 1rem; font-weight: 950; }
.receipt-note { margin-top: .75rem; color: var(--muted); font-size: .78rem; }
.checkout-form { display: grid; gap: .85rem; margin-top: 1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 120;
  max-width: min(92%, 460px);
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  padding: .78rem 1rem;
  font-size: .86rem;
  transform: translate(-50%, 120%);
  transition: transform .2s ease;
}
.toast.is-visible { transform: translate(-50%, 0); }

.back-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.back-link:hover { color: var(--accent); }
.style-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.style-detail-count { font-size: .78rem; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.style-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}
.style-detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}
.style-detail-media img { display: block; width: 100%; height: auto; }
.style-detail-refs h2 { font-size: 1.3rem; font-weight: 950; margin-bottom: .5rem; }
.style-detail-hint { color: var(--muted); font-size: .84rem; line-height: 1.5; margin-bottom: 1rem; }
.style-ref-list { display: grid; gap: .5rem; }
.style-ref-empty { color: var(--muted); font-size: .84rem; }
.style-ref-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .65rem .8rem;
}
.style-ref-link { color: var(--ink); font-weight: 850; font-size: .86rem; text-decoration: none; }
.style-ref-link:hover { color: var(--accent); text-decoration: underline; }
.style-ref-missing { color: var(--muted); font-size: .86rem; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}
.detail-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { display: grid; gap: .9rem; align-content: start; }
.detail-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 950; line-height: 1.05; }
.detail-ref { color: var(--muted); font-size: .9rem; }
.detail-ref strong { color: var(--ink); }
.detail-price { font-size: 1.3rem; font-weight: 950; color: var(--accent); }
.detail-description { color: var(--muted); line-height: 1.7; }
.detail-label { font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem; }
.size-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.size-chip { border: 1px solid var(--line); border-radius: 999px; padding: .35rem .7rem; font-size: .76rem; font-weight: 800; }
.detail-controls { grid-template-columns: 1fr auto; gap: .6rem; margin-top: .4rem; }
.detail-controls .product-select { min-width: 140px; }
.ghost-link {
  margin-top: .4rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ghost-link:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .product-detail { grid-template-columns: 1fr; gap: 1.2rem; }
  .style-detail { grid-template-columns: 1fr; gap: 1.2rem; }
  .style-detail-nav { font-size: .8rem; }
  .detail-controls { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .look-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .navbar { min-height: 48px; padding: .36rem 0; gap: .38rem; flex-wrap: nowrap; }
  .logo { flex: 0 0 auto; }
  .logo img { width: min(76px, 22vw); }
  .navbar nav { flex: 1 1 auto; min-width: 0; }
  .nav-links { width: 100%; justify-content: flex-end; flex-wrap: nowrap; overflow: visible; gap: .32rem; scrollbar-width: none; -ms-overflow-style: none; }
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2) { display: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a, .cart-open { font-size: .56rem; letter-spacing: .025em; white-space: nowrap; }
  .cart-open { min-height: 28px; padding: .32rem .46rem; }
  .nav-links a { display: inline-flex; min-height: 28px; align-items: center; }
  .section-head,
  .toolbar,
  .footer-grid { display: block; }
  .filter-select { margin-top: .65rem; }
  .product-grid,
  .product-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .45rem; }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .45rem; }
  .look-grid,
  .banner-grid,
  .inspi-card { grid-template-columns: 1fr; }
  .product-body,
  .product-info { padding: .5rem; gap: .3rem; }
  .product-name { font-size: .68rem; line-height: 1.15; }
  .product-meta { display: grid; gap: .1rem; font-size: .5rem; line-height: 1.2; }
  .product-note { font-size: .54rem; line-height: 1.2; }
  .product-price { font-size: .66rem; }
  .product-controls { gap: .32rem; }
  .product-controls .add-btn { font-size: .52rem; padding: .42rem .2rem; min-height: 34px; }
  .product-select { min-height: 34px; padding: .3rem .35rem; font-size: .6rem; }
  .brand-media { aspect-ratio: 1 / 1; }
  .brand-copy { padding: .55rem; gap: .3rem; }
  .brand-copy h3 { font-size: .78rem; line-height: 1.1; }
  .brand-copy p { font-size: .6rem; }
  .brand-tags { gap: .3rem; }
  .brand-count { font-size: .5rem; }
  .brand-new { font-size: .5rem; padding: .16rem .4rem; }
  .style-copy { padding: .5rem .55rem .6rem; gap: .3rem; }
  .style-index { font-size: .54rem; }
  .style-ref-input { padding: .32rem .45rem; font-size: .62rem; }
  .style-ref-result { font-size: .62rem; }
  .look-card { min-height: 470px; }
  .inspi-visual { min-height: 420px; }
  .inspi-products { grid-template-columns: 1fr; }
  .look-card:nth-child(2),
  .look-card:nth-child(4) { transform: none; }
  .cart-item { grid-template-columns: 62px 1fr; }
  .cart-item img { width: 62px; height: 62px; }
  .remove-btn { grid-column: 2; justify-self: start; }
  .form-grid { grid-template-columns: 1fr; }
}
