/* ═══════════════════════════════════════════════════════════════
   FOR YOU BOUTIQUE — STYLESHEET
   Luxury editorial aesthetic, mobile-first
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Palette */
  --bg:          #FAFAF8;
  --surface:     #F3EDE5;
  --surface-2:   #EDE5DA;
  --text:        #0D0D0B;
  --text-muted:  #7A726A;
  --accent:      #C4A882;
  --accent-dark: #9E7E57;
  --border:      #E4DBD0;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1280px;
  --radius: 2px;

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:     0.35s;
  --dur-lg:  0.55s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-12); }
}

@media (min-width: 1200px) {
  .container { padding-inline: var(--sp-16); }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  transition: background var(--dur) var(--ease),
              color      var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform  var(--dur) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--white);
}

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

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  border-radius: 50%;
}
.icon-btn:hover { color: var(--text); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--dur) var(--ease),
              box-shadow  var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding-inline: var(--sp-6);
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .nav__inner { padding-inline: var(--sp-12); }
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__logo-main {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text);
}
.nav__logo-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--accent-dark);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width var(--dur) var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.lang-toggle {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: var(--sp-1) var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  background: transparent;
}
.lang-toggle:hover {
  color: var(--text);
  border-color: var(--text);
}

.cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}
.cart-btn:hover { color: var(--accent-dark); }
.cart-btn svg { width: 22px; height: 22px; }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--accent-dark);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform var(--dur) var(--ease),
              opacity   var(--dur) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-lg) var(--ease);
}
.nav__mobile.open { max-height: 320px; }
.nav__mobile ul {
  padding: var(--sp-4) var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.nav__mobile a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  padding: var(--sp-2) 0;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-16)) var(--sp-6) var(--sp-16);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero__content { padding-inline: var(--sp-12); }
}

@media (min-width: 1200px) {
  .hero__content { padding-left: calc((100vw - var(--max-w)) / 2 + var(--sp-16)); }
}

.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp var(--dur-lg) var(--ease) 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp var(--dur-lg) var(--ease) 0.2s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp var(--dur-lg) var(--ease) 0.3s forwards;
}

.hero__content .btn {
  align-self: flex-start;
  opacity: 0;
  animation: fadeUp var(--dur-lg) var(--ease) 0.4s forwards;
}

/* Hero visual placeholder */
.hero__visual {
  position: relative;
  background: var(--surface);
  min-height: 50svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero__visual { min-height: 100svh; }
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 60%, #D9CFC4 100%);
}

.hero__placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  opacity: 0;
  animation: fadeIn var(--dur-lg) var(--ease) 0.5s forwards;
}

.hero__placeholder-year {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 300;
  color: rgba(13, 13, 11, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__placeholder-line {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--accent);
}

.hero__placeholder-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 900px) {
  .hero__scroll-hint { left: var(--sp-12); transform: none; }
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin-inline: auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products {
  padding-block: var(--sp-24);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-4);
}

@media (min-width: 640px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
}

@media (min-width: 900px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .products__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-8) var(--sp-6); }
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-lg) var(--ease),
              transform var(--dur-lg) var(--ease);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--img-color, var(--surface));
  transition: transform var(--dur-lg) var(--ease);
}
.product-card__image:hover .product-card__placeholder {
  transform: scale(1.03);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--dur-lg) var(--ease);
}
.product-card__image:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__placeholder-glyph {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(13, 13, 11, 0.15);
  user-select: none;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--text);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
}

.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(13, 13, 11, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--sp-3);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease);
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
}
.product-card__image:hover .product-card__quick-add {
  transform: translateY(0);
}

/* Card info */
.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.product-card__category {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.product-card__price {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Size selector */
.product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.size-btn {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: var(--sp-1) var(--sp-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  min-width: 32px;
  text-align: center;
}
.size-btn:hover { border-color: var(--text); color: var(--text); }
.size-btn.selected {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.size-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Add to cart button on card */
.product-card__add {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.62rem;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  background: var(--surface);
  padding-block: var(--sp-24);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

.about__visual {
  aspect-ratio: 3 / 4;
  max-height: 600px;
}

@media (max-width: 767px) {
  .about__visual { max-height: 360px; }
}

.about__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--surface-2) 0%, #D9CFC4 100%);
  position: relative;
}

.about__placeholder::after {
  content: '';
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 80px;
  height: 80px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.about__content { max-width: 520px; }
.about__content .section-title { margin-bottom: var(--sp-6); }
.about__content p {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  font-size: 0.95rem;
}
.about__content .btn { margin-top: var(--sp-4); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding-block: var(--sp-24);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}

@media (min-width: 768px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact__item-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--sp-1);
}

.contact__item-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}

.contact__map {
  aspect-ratio: 1;
  max-height: 480px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact__map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  color: var(--text-muted);
}

.contact__map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.contact__map-placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.contact__map-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--sp-3);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}

.footer__heading {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__social a {
  font-size: 0.85rem;
  transition: color var(--dur) var(--ease);
}
.footer__social a:hover { color: var(--accent); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__nav a {
  font-size: 0.85rem;
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  font-size: 0.75rem;
}

/* ── OVERLAY ─────────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 11, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay--modal {
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-4);
  overflow-y: auto;
}

@media (min-width: 640px) {
  .overlay--modal { padding: var(--sp-12) var(--sp-6); align-items: center; }
}

/* ── CART DRAWER ─────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-lg) var(--ease);
  box-shadow: -4px 0 40px rgba(13,13,11,0.12);
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4) var(--sp-6);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-drawer__footer {
  padding: var(--sp-4) var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-16) var(--sp-4);
  text-align: center;
  color: var(--text-muted);
}
.cart-empty svg { width: 40px; height: 40px; opacity: 0.35; }
.cart-empty p { font-size: 0.85rem; }

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--sp-4);
  align-items: start;
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item__image {
  aspect-ratio: 3/4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(13,13,11,0.15);
}

.cart-item__info { min-width: 0; }
.cart-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: var(--sp-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__size {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: all var(--dur) var(--ease);
}
.qty-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }
.qty-value {
  font-size: 0.8rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item__price {
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
}

.cart-item__remove {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: var(--sp-2);
  transition: color var(--dur) var(--ease);
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}
.cart-item__remove:hover { color: var(--text); }

/* Cart footer */
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-4);
}
.cart-subtotal__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-subtotal__amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.cart-drawer__footer .btn { margin-bottom: var(--sp-2); }

.cart-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── CHECKOUT MODAL ──────────────────────────────────────────── */
.modal {
  background: var(--bg);
  width: 100%;
  max-width: 560px;
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(13,13,11,0.2);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity var(--dur-lg) var(--ease),
              transform var(--dur-lg) var(--ease);
}
.overlay--modal.active .modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8) var(--sp-4);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-8);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal__footer {
  padding: var(--sp-4) var(--sp-8) var(--sp-8);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Checkout summary */
.checkout-summary {
  background: var(--surface);
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-8);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.checkout-summary-row:last-child { border-bottom: none; }
.checkout-summary-row span:first-child { color: var(--text-muted); }

/* Checkout form */
.checkout-form h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: var(--sp-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}

.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--dur) var(--ease);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #b84040;
}

/* Checkout total */
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.checkout-total__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checkout-total__amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.checkout-note {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: var(--sp-3);
}

/* ── TOAST NOTIFICATION ──────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--text);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: var(--sp-3) var(--sp-6);
  white-space: nowrap;
  z-index: 2000;
  opacity: 0;
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

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