/* ═══════════════════════════════════════════
   Concrete Dreams — Alternative Redesign
   Palette: Black · Off-White · Orange (#ff9a48)
   Fonts: Cormorant Garamond · Oswald · Inter
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  /* Palette */
  --black:    #0D0D0D;
  --white:    #F8F5F0;   /* warm off-white matching brand cream */
  --cream:    #EDE8DF;
  --orange:   #ff9a48;   /* brand orange */
  --orange-d: #e07830;   /* darker hover variant */
  --orange-t: rgba(255, 154, 72, 0.12); /* tinted orange for backgrounds */

  --grey-100: #E2DDD5;
  --grey-200: #C8C3BB;
  --grey-500: #8A857D;
  --grey-800: #2A2620;

  /* Typography */
  --script:  'Cormorant Garamond', Georgia, serif;  /* brand name, quotes */
  --display: 'Oswald', 'Arial Narrow', sans-serif;  /* headlines */
  --body:    'Inter', system-ui, sans-serif;         /* body text */

  /* Layout */
  --nav-h:   62px;
  --max-w:   1380px;
  --gutter:  48px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img    { display: block; max-width: 100%; }
ul     { list-style: none; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
s      { text-decoration: line-through; }

/* ── Eyebrow / Label ── */
.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.eyebrow--dim { color: rgba(248, 245, 240, 0.4); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease,
              border-color 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.38; cursor: not-allowed; }

/* Dark / primary */
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover:not(:disabled) { background: var(--grey-800); }

/* Orange / accent */
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-d); }

/* Ghost white — used on dark backgrounds */
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248, 245, 240, 0.45);
}
.btn--ghost-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Outline on dark */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248, 245, 240, 0.3);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

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

/* ── Badges ── */
.badge {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--white);
  color: var(--black);
}
.badge--orange { background: var(--orange); color: var(--white); }


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 154, 72, 0.18);
  transition: border-color 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Script brand name in nav */
.nav__logo {
  font-family: var(--script);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--orange); }

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.55);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__utils {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__lang {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.45);
  transition: color 0.2s;
  padding: 4px 0;
}
.nav__lang:hover { color: var(--white); }

.nav__search-btn {
  color: rgba(248, 245, 240, 0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav__search-btn:hover { color: var(--white); }

.nav__cart-btn {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.nav__cart-btn:hover { color: var(--orange); }

.nav__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  transition: transform 0.2s var(--ease-out);
}
.nav__count.bump { transform: scale(1.45); }


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 36px) var(--gutter) 72px;
  overflow: hidden;
}

/* Background photo — hidden until JS confirms load */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  z-index: 0;
}

/* Gradient overlay always present (needed even without a photo) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 13, 13, 0.25) 0%,
    rgba(13, 13, 13, 0.55) 50%,
    rgba(13, 13, 13, 0.88) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
}

/* SS25 · Milano row */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__badge {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__rule {
  width: 40px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Headline block */
.hero__headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 52px;
}

/* "Concrete Dreams" in script above the bold lines */
.hero__hl-script {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  color: rgba(248, 245, 240, 0.5);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* Bold Oswald lines */
.hero__hl-block {
  font-family: var(--display);
  font-size: clamp(72px, 12.5vw, 180px);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* "the hunger." — in orange */
.hero__hl-block--accent { color: var(--orange); }

/* Footer row: CTA + tagline */
.hero__footer {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
}
.hero__sub {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.3);
}

/* Vertical scroll indicator */
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 72px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(248, 245, 240, 0.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scrollPulse 2.2s ease-in infinite;
}
@keyframes scrollPulse {
  from { top: -100%; }
  to   { top: 200%; }
}
.hero__scroll-label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.28);
  writing-mode: vertical-rl;
}


/* ══════════════════════════════════════════
   TICKER — orange band
══════════════════════════════════════════ */
.ticker {
  background: var(--orange);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker__dot { opacity: 0.45 !important; letter-spacing: 0 !important; font-size: 16px !important; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════
   DROP / PRODUCTS
   Alternating asymmetric two-column layout
══════════════════════════════════════════ */
.drop {
  padding: 96px var(--gutter) 112px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.drop__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 72px;
}
.drop__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* ── Product block ── */
.product {
  display: grid;
  margin-bottom: 100px;
  align-items: stretch;
}
.product:last-child { margin-bottom: 0; }

.product--img-left  { grid-template-columns: 52fr 48fr; }
.product--img-right { grid-template-columns: 48fr 52fr; }

/* On img-right, body comes first in DOM (for mobile) but visually second */
.product--img-right .product__body { order: -1; }

/* ── Media panel ── */
.product__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #0D0D0D;
  overflow: hidden;
  border: 1px solid rgba(255, 154, 72, 0.18);
}

/* Real photo — hidden until JS confirms load */
.product__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: none;
  padding: 24px;
  transition: transform 0.55s var(--ease-out);
}
.product__media:hover .product__photo { transform: scale(1.02); }

/* Text placeholder (shown when photo missing) */
.product__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-align: center;
  color: var(--grey-200);
  padding: 20px;
}
.product__ph--light { background: var(--grey-100); }

/* Large ghost number */
.product__num {
  display: none;
}

.product__badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Info panel ── */
.product__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 52px 56px;
  background: var(--white);
  border-top: 3px solid var(--orange);
}

.product__name {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-old {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-200);
}
.price-now {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* Sizes */
.sizes__label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-200);
  margin-bottom: 10px;
}
.sizes__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.sz {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--grey-100);
  color: var(--black);
  background: transparent;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.sz:hover:not(:disabled) { border-color: var(--black); }
.sz.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.sz--out {
  color: var(--grey-200);
  border-color: var(--grey-100);
  text-decoration: line-through;
  cursor: not-allowed;
}

.sizes__note {
  font-size: 12px;
  font-style: italic;
  color: var(--grey-500);
}
.sizes__waitlist {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-style: normal;
}


/* ══════════════════════════════════════════
   LOOKBOOK
══════════════════════════════════════════ */
.lookbook {
  padding: 96px var(--gutter) 112px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.lookbook__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
}
.lookbook__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grid: left cell spans 2 rows */
.lookbook__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 660px;
}
.lookbook__cell {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.lookbook__cell--main { grid-row: span 2; }

.lookbook__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* revealed by JS on load */
  transition: transform 0.55s var(--ease-out);
}
.lookbook__cell:hover .lookbook__img { transform: scale(1.04); }

.lookbook__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  user-select: none;
}


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  background: var(--black);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Orange top stripe */
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

/* Ghost "CD" watermark */
.about::after {
  content: 'CD';
  position: absolute;
  right: -1%;
  bottom: -10%;
  font-family: var(--script);
  font-style: italic;
  font-size: clamp(180px, 28vw, 400px);
  color: rgba(248, 245, 240, 0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: script quote */
.about__left { padding-right: 20px; }
.about__left .eyebrow { margin-bottom: 20px; }
.about__quote {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  color: var(--white);
}

/* Right: body copy */
.about__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 28px;
}
.about__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(248, 245, 240, 0.5);
  margin-bottom: 16px;
}
.about__slogan {
  font-family: var(--display);
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 154, 72, 0.22);
  border-bottom: 1px solid rgba(255, 154, 72, 0.22);
  margin: 20px 0 28px;
}


/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
  background: var(--cream);
  padding: 120px var(--gutter);
}

.newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__inner .eyebrow { margin-bottom: 14px; }

.newsletter__title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.newsletter__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 44px;
}

.newsletter__field {
  display: flex;
  border: 1.5px solid var(--black);
}
.newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  background: transparent;
  border: none;
  font-family: var(--body);
  font-size: 14px;
  color: var(--black);
  outline: none;
}
.newsletter__input::placeholder { color: var(--grey-200); }
.newsletter__field .btn--orange { border-radius: 0; flex-shrink: 0; }

.newsletter__msg {
  margin-top: 12px;
  font-size: 12px;
  min-height: 18px;
  font-style: italic;
  color: var(--grey-500);
}
.newsletter__msg--ok  { color: #4A8A4A; }
.newsletter__msg--err { color: #B04040; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px var(--gutter) 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 245, 240, 0.07);
  margin-bottom: 36px;
}

/* Script logo in footer */
.footer__logo {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  color: var(--white);
}

.footer__cols {
  display: flex;
  gap: 56px;
  flex-shrink: 0;
}

.footer__col-head {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.45);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 20px;
}
.footer__copy {
  font-size: 11px;
  color: rgba(248, 245, 240, 0.22);
}
.footer__pay {
  display: flex;
  gap: 14px;
}
.footer__pay li {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.2);
}


/* ══════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: all; }

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-drawer.open .cart-drawer__backdrop { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s var(--ease-out);
}
.cart-drawer.open .cart-drawer__panel { transform: none; }

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px 20px;
  border-bottom: 3px solid var(--orange);
}
.cart-drawer__title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-drawer__close {
  font-size: 20px;
  line-height: 1;
  color: var(--grey-500);
  transition: color 0.2s;
}
.cart-drawer__close:hover { color: var(--black); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-drawer__empty {
  font-size: 14px;
  color: var(--grey-500);
  text-align: center;
  margin-top: 40px;
}

/* Cart item row */
.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-100);
}

.cart-item__thumb {
  width: 68px;
  height: 84px;
  background: #0D0D0D;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-item__thumb span {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-200);
  text-align: center;
  padding: 4px;
}

.cart-item__info { flex: 1; }

.cart-item__name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cart-item__meta {
  font-size: 12px;
  color: var(--grey-500);
}
.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.cart-item__price {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.cart-item__remove {
  font-size: 13px;
  line-height: 1;
  color: var(--grey-200);
  transition: color 0.15s;
  padding: 2px;
}
.cart-item__remove:hover { color: var(--black); }

.cart-drawer__foot {
  padding: 20px 28px 32px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-drawer__total span:last-child { color: var(--orange); }


/* ══════════════════════════════════════════
   SCROLL REVEAL (injected by JS)
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1080px)
══════════════════════════════════════════ */
@media (max-width: 1080px) {
  :root { --gutter: 32px; }

  /* Stack products vertically */
  .product--img-left,
  .product--img-right { grid-template-columns: 1fr; }

  /* Restore natural order */
  .product--img-right .product__body { order: 0; }

  /* Wider aspect on stacked layout */
  .product__media { aspect-ratio: 4 / 3; }
  .product__body  { padding: 36px 32px; }
  .product        { margin-bottom: 72px; }

  /* About stacks */
  .about__inner { grid-template-columns: 1fr; gap: 44px; }

  /* Shorter lookbook */
  .lookbook__grid { height: 480px; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 720px)
══════════════════════════════════════════ */
@media (max-width: 720px) {
  :root {
    --nav-h:    54px;
    --gutter:   20px;
  }

  /* Nav: hide links, keep logo + cart */
  .nav__links { display: none; }
  .nav__search-btn { display: none; }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 28px) var(--gutter) 60px;
    justify-content: flex-end;
  }
  .hero__hl-block { font-size: clamp(60px, 16vw, 100px); }
  .hero__hl-script { font-size: clamp(22px, 5vw, 36px); }
  .hero__scroll { display: none; }
  .hero__footer { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Products */
  .product__media { aspect-ratio: 3 / 4; }
  .product__body  { padding: 24px var(--gutter); border-top-width: 2px; }
  .product__name  { font-size: clamp(36px, 10vw, 60px); }
  .product        { margin-bottom: 56px; }

  /* Lookbook: single column */
  .lookbook__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .lookbook__cell        { aspect-ratio: 4 / 3; }
  .lookbook__cell--main  { grid-row: span 1; aspect-ratio: 3 / 4; }

  /* About */
  .about { padding: 80px var(--gutter); }
  .about__inner { gap: 36px; }

  /* Newsletter: stacked form */
  .newsletter { padding: 80px var(--gutter); }
  .newsletter__field {
    flex-direction: column;
    border: none;
    gap: 10px;
  }
  .newsletter__input {
    border: 1.5px solid var(--black);
    padding: 14px 16px;
    width: 100%;
  }
  .newsletter__field .btn--orange { width: 100%; }

  /* Footer */
  .footer { padding: 60px var(--gutter) 36px; }
  .footer__top { flex-direction: column; gap: 40px; padding-bottom: 40px; }
  .footer__cols { flex-wrap: wrap; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .hero__scroll-line::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
