/* =============================================
   METRO MOOD — style.css
   ============================================= */

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

:root {
  --bg:        #080808;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --text:      #f0f0f0;
  --text-muted:#888888;
  --accent:    #1E5CFF;
  --accent-h:  #4A7AFF;
  --border:    rgba(255,255,255,0.08);
  --ff-display:'Bebas Neue', sans-serif;
  --ff-graffiti:'Permanent Marker', cursive;
  --ff-body:   'Space Grotesk', sans-serif;
  --nav-h:     64px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}
.cursor.is-hovering {
  width: 36px; height: 36px;
}
@media (pointer: coarse) {
  .cursor { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* === DISCOUNT BAR === */
.discount-bar {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(30,92,255,0.4);
  transition: transform 0.4s var(--ease), opacity 0.4s;
  white-space: nowrap;
}
.discount-bar.hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}
.discount-bar__cta {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s;
}
.discount-bar__cta:hover { background: rgba(255,255,255,0.35); }
.discount-bar__close {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  cursor: none;
  padding: 2px;
  transition: color 0.2s;
}
.discount-bar__close:hover { color: #fff; }
@media (pointer: coarse) {
  .discount-bar__close { cursor: pointer; }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  height: var(--nav-h);
  z-index: 900;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
  overflow: hidden;
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav__logo:hover img {
  opacity: 0.75;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__account, .nav__cart {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  position: relative;
}
.nav__account:hover, .nav__cart:hover { opacity: 0.7; }
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { margin-bottom: 40px; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  font-family: var(--ff-display);
  font-size: 42px;
  letter-spacing: 2px;
  padding: 12px 0;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__currency {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.mobile-menu__currency > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-menu__currency .currency-toggle {
  border-color: rgba(255,255,255,0.15);
}
.mobile-menu__currency .currency-btn {
  padding: 7px 18px;
  font-size: 13px;
}
.mobile-menu__social {
  font-size: 13px;
  color: var(--text-muted);
}

/* === CART DRAWER === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 960;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 2px;
}
.cart-drawer__header button {
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s;
}
.cart-drawer__header button:hover { color: var(--text); }
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 80px; height: 80px;
  background: var(--bg-3);
  border-radius: 4px;
  object-fit: contain;
}
.cart-item__name { font-weight: 600; font-size: 14px; }
.cart-item__size { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item__price { font-size: 14px; font-weight: 600; color: var(--accent); }
.cart-item__remove {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  text-decoration: underline;
  cursor: pointer;
}
.cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}
.cart-shipping {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
  cursor: none;
  white-space: nowrap;
}
@media (pointer: coarse) { .btn { cursor: pointer; } }
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(30,92,255,0.35); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--text); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--bg); }
.btn--full { width: 100%; }

/* === LAYOUT HELPERS === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: 2px;
  line-height: 1.05;
}
.section-footer {
  text-align: center;
  margin-top: 56px;
}

/* === HERO === */
.hero-sticky-wrap {
  height: 200vh; /* scroll space — hero stays visible for this entire range */
  position: relative;
  z-index: 0;
}
.site-body {
  position: relative;
  z-index: 3;
  background: var(--bg);
}
.hero {
  position: fixed;   /* nailed to viewport — cannot move at all */
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.8) 80%,
    rgba(8,8,8,1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: opacity, transform;
  transform-origin: center center;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--ff-graffiti);
  font-size: clamp(72px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: block;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero__title-line { display: block; }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,240,240,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === TICKER === */
.ticker {
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 25s linear infinite;
}
.ticker__track span {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: #fff;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }

/* === PRODUCTS GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card { display: flex; flex-direction: column; gap: 16px; }
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s var(--ease);
}
.product-card__img-wrap:hover img { transform: scale(1.06); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.product-card__img-wrap:hover .product-card__overlay { opacity: 1; }
.product-card__overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  border-radius: 2px;
}
.product-card__info { padding: 0 4px; }
.product-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* === ABOUT TEASER === */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-teaser__img {
  position: relative;
  overflow: hidden;
}
.about-teaser__img img {
  width: 100%; height: 115%;  /* extra height gives parallax room to move */
  object-fit: cover;
  will-change: transform;
  margin-top: -7.5%;          /* center the taller image in the container */
}
.about-intro__img img {
  height: 115%;
  margin-top: -7.5%;
  will-change: transform;
}
.founder-parallax img {
  height: 115%;
  margin-top: -7.5%;
  will-change: transform;
}
.about-teaser__content {
  background: var(--bg-2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-teaser__content p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
}

/* === LOOKBOOK GRID === */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.lookbook-grid__item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
}
.lookbook-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.lookbook-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.lookbook-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.lookbook-grid__item:hover img { transform: scale(1.04); }

/* === REVIEWS === */
.reviews-avg {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.stars { color: #FFD700; font-size: 16px; letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.review-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.review-card footer strong { color: var(--text); }
.review-card footer span {
  color: var(--text-muted);
  font-size: 12px;
}
.review-card footer strong::after {
  content: '·';
  margin: 0 8px;
  color: var(--border);
}

/* === SHIPPING SECTION === */
.shipping-section { background: var(--bg-2); }
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.shipping-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.shipping-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.shipping-card__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.shipping-card__icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.shipping-card h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1px;
}
.shipping-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === NEWSLETTER === */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.newsletter__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.newsletter__text p { color: var(--text-muted); font-size: 14px; }
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.newsletter__form input {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  width: 280px;
  transition: border-color 0.2s;
  outline: none;
}
.newsletter__form input:focus { border-color: var(--accent); }
.newsletter__form input::placeholder { color: var(--text-muted); }

/* === FOOTER === */
.footer {
  background: var(--bg);
  padding: 56px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}
.footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__instagram:hover { color: var(--text); }
.footer__nav h4, .footer__contact h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__nav ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer__contact a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__payment-icons {
  display: flex;
  gap: 12px;
}
.footer__payment-icons span {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 1px;
}
.page-hero p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* === KOLEKCE PAGE === */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 64px 0;
}
.shop-filters h3 {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.shop-filters ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.shop-filters a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-filters a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.shop-filters a:hover, .shop-filters a.active { color: var(--text); }
.shop-filters a.active::before { background: var(--accent); }
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-content: start;
}
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.shop-header h2 {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 2px;
}
.shop-header span { font-size: 13px; color: var(--text-muted); }

/* === PRODUCT DETAIL PAGE === */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.product-gallery__main {
  background: var(--bg-2);
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 32px;
}
.product-info { padding-top: 16px; }
.product-info__breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-info__breadcrumb a:hover { color: var(--text); }
.product-info h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.product-info__price {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.product-info__desc {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.product-info__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.size-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.size-btn:hover { border-color: var(--text); color: var(--text); }
.size-btn.selected { border-color: var(--accent); color: var(--accent); }
.product-add {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.product-add .btn { flex: 1; padding: 18px; font-size: 14px; }
.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: 8px;
  margin-top: 24px;
}
.product-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.product-benefit svg { color: var(--accent); flex-shrink: 0; }

/* === ABOUT PAGE === */
.about-intro {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-intro__text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-intro__img {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}
.about-intro__img img {
  width: 100%;
  object-fit: cover;
}
.about-values {
  background: var(--bg-2);
  padding: 80px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.value-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.value-card__num {
  font-family: var(--ff-display);
  font-size: 72px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

/* === FAQ ACCORDION === */
details summary span {
  display: inline-block;
  transition: transform 0.25s ease;
}
details[open] summary span {
  transform: rotate(45deg);
}

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 40px; height: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { color: var(--accent); }
.contact-info__item h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__item a, .contact-info__item p {
  font-size: 15px;
  color: var(--text);
}
.contact-info__item a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  align-self: start;
}
.contact-form h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* === CURRENCY TOGGLE === */
.currency-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.currency-btn {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  cursor: none;
  font-family: var(--ff-body);
}
.currency-btn.active { background: var(--accent); color: #fff; }
.currency-btn:not(.active):hover { background: var(--bg-3); color: var(--text); }
@media (pointer: coarse) { .currency-btn { cursor: pointer; } }
@media (max-width: 768px) {
  .nav .currency-toggle { display: none; }
}

/* === PRODUCT THUMBNAILS === */
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 72px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
  flex-shrink: 0;
  cursor: none;
  background: var(--bg-3);
}
.product-thumb:hover { border-color: rgba(255,255,255,0.3); }
.product-thumb.active { border-color: var(--accent); }
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb--placeholder {
  position: relative;
  background: var(--bg-3);
}
.product-thumb--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
@media (pointer: coarse) { .product-thumb { cursor: pointer; } }

/* === TEXT MASK REVEAL === */
.split-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.split-line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-line__inner.visible {
  transform: translateY(0);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .products-grid       { grid-template-columns: repeat(2, 1fr); }
  .shipping-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer__top         { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .about-teaser        { grid-template-columns: 1fr; }
  .about-teaser__img   { height: 50vw; }
  .product-detail      { grid-template-columns: 1fr; }
  .product-gallery     { position: static; }
  .shop-layout         { grid-template-columns: 1fr; gap: 0; padding-top: 32px; }
  .shop-products-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Compact horizontal filter bar */
  .shop-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    width: 100%;
    overflow: hidden;        /* stop the scrollable ul from blowing out the parent */
  }
  .shop-filters h3 {
    font-size: 10px;
    letter-spacing: 2px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    color: var(--text-muted);
    flex-shrink: 0;
    align-self: flex-start;
  }
  .shop-filters ul {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    width: 100%;
  }
  .shop-filters ul::-webkit-scrollbar { display: none; }
  .shop-filters a {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    background: transparent;
    color: var(--text-muted);
    flex-shrink: 0;          /* prevent chips from being squashed */
  }
  .shop-filters a::before { display: none; }
  .shop-filters a:hover  { color: var(--text); border-color: rgba(255,255,255,0.25); }
  .shop-filters a.active { background: var(--accent); border-color: var(--accent); color: #fff; }

  /* Keep shop-layout children inside their grid track */
  .shop-layout > * { min-width: 0; }
  .shop-products-grid { width: 100%; }
}
@media (max-width: 768px) {
  .nav__links    { display: none; }
  .nav__account  { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner    { padding: 0 16px; gap: 0; justify-content: space-between; }
  .container    { padding: 0 20px; }
  .section      { padding: 64px 0; }
  .hero__content { padding: 0 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .shipping-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser__content { padding: 48px 24px; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lookbook-grid__item        { aspect-ratio: 3/4; }
  .lookbook-grid__item--tall  { grid-row: span 1; aspect-ratio: 3/4; }
  .lookbook-grid__item--wide  { grid-column: span 1; aspect-ratio: 3/4; }
  .footer__top   { grid-template-columns: 1fr; gap: 32px; }
  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form  { flex-direction: column; width: 100%; }
  .newsletter__form input { width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form   { padding: 32px 24px; }
  .about-intro    { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .discount-bar   { font-size: 12px; bottom: 16px; padding: 10px 16px; gap: 10px; white-space: normal; max-width: calc(100vw - 32px); text-align: center; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shipping-grid { grid-template-columns: 1fr; }
  .hero__title   { font-size: clamp(60px, 18vw, 80px); }
  .size-grid .size-btn { width: 44px; height: 44px; }
}

/* === MOBILE PRODUCT SWIPER === */
@media (max-width: 768px) {
  .products-swiper-wrap {
    position: relative;
  }
  .products-swiper-wrap .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .products-swiper-wrap .products-grid::-webkit-scrollbar { display: none; }
  .products-swiper-wrap .products-grid .product-card {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }
  .swiper-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }
  .swiper-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .swiper-dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }
}
@media (min-width: 769px) {
  .swiper-dots { display: none; }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
  pointer-events: none;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox__close:hover { opacity: 1; }
.lookbook-grid__item img { cursor: zoom-in; }
