/* =============================================
   LAUTUS — Premium Athletic
   ============================================= */

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

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --red: #c0392b;
  --grey-100: #f2f2f2;
  --grey-200: #e5e5e5;
  --grey-400: #a0a0a0;
  --grey-600: #5a5a5a;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

/* ---- Typography ---- */
.t-display {
  font-family: var(--font);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.t-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.t-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.t-body { font-size: 13px; line-height: 1.8; color: var(--grey-600); }

/* ---- Layout ---- */
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #222; }
.btn-outline { border: 1px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--grey-100); }
.btn-ghost-white {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-ghost-white:hover { color: var(--white); border-color: var(--white); }

/* =============================================
   LOCK SCREEN
   ============================================= */
.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Video BG */
.lock-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lock-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lock-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Lock Top Bar */
.lock-top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 56px 0;
}
.lock-nav-left {
  position: absolute;
  left: 56px;
  top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lock-nav-left a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.lock-nav-left a:hover { color: var(--white); }
.lock-nav-left a.unlocked-only { display: none; }
body.unlocked .lock-nav-left a.unlocked-only { display: block; }

.lock-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lock-logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
}
.lock-logo-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Lock Bottom */
.lock-bottom {
  position: relative;
  z-index: 10;
  padding: 0 56px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Lock actions */
.lock-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.lock-action-btn {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  font-family: var(--font);
}
.lock-action-btn:hover { color: var(--white); }
.lock-action-btn.active { color: var(--white); }

.lock-input-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.lock-input-wrap.open { max-height: 120px; }

.lock-input-inner {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lock-input-inner input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 6px 0;
  outline: none;
  width: 220px;
  transition: border-color var(--transition);
}
.lock-input-inner input::placeholder { color: rgba(255,255,255,0.35); }
.lock-input-inner input:focus { border-bottom-color: rgba(255,255,255,0.8); }
.lock-input-inner .input-submit {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  text-align: left;
  transition: color var(--transition);
}
.lock-input-inner .input-submit:hover { color: var(--white); }

.lock-error {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
  opacity: 0;
  transition: opacity 0.2s;
}
.lock-error.show { opacity: 1; }

/* Unlocked state */
.lock-unlock-btn .lock-text { display: block; }
.lock-unlock-btn .unlock-text { display: none; }
body.unlocked .lock-unlock-btn .lock-text { display: none; }
body.unlocked .lock-unlock-btn .unlock-text { display: block; }

/* Currency in lock screen */
.lock-currency-selector {
  position: absolute;
  right: 56px;
  bottom: 56px;
  z-index: 10;
}
.lock-currency-btn {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.lock-currency-btn:hover { color: rgba(255,255,255,0.9); }
.currency-dropdown {
  position: absolute;
  bottom: 28px;
  right: 0;
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 200px;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}
.currency-dropdown.open { display: block; }
.currency-dropdown::-webkit-scrollbar { width: 4px; }
.currency-dropdown::-webkit-scrollbar-track { background: transparent; }
.currency-dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }
.currency-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.currency-option:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.currency-option.active { color: var(--white); }
.currency-option .cur-code { font-weight: 700; }
.currency-option .cur-name { font-size: 9px; color: rgba(255,255,255,0.3); }

/* =============================================
   INNER SITE NAV
   ============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(250,250,250,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.site-nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-nav-left {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav-left a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
  position: relative;
}
.site-nav-left a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width var(--transition);
}
.site-nav-left a:hover::after,
.site-nav-left a.active::after { width: 100%; }
.site-nav-center a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.site-nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.site-nav-currency {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color var(--transition);
}
.site-nav-currency:hover { color: var(--black); }
.site-cart-btn {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.cart-icon {
  height: 62px;
  width: auto;
  display: block;
}
.cart-count {
  position: absolute;
  top: 12px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* Site nav currency dropdown */
.site-currency-wrap { position: relative; }
.site-currency-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.site-currency-dropdown.open { display: block; }
.site-currency-dropdown .currency-option {
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.site-currency-dropdown .currency-option:hover { background: var(--grey-100); color: var(--black); }
.site-currency-dropdown .currency-option .cur-name { color: var(--grey-400); }
.site-currency-dropdown .currency-option.active { color: var(--black); }

/* Mobile nav hamburger */
.site-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.site-nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--black);
}
.site-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 48px 40px;
  gap: 28px;
}
.site-mobile-menu.open { display: flex; }
.site-mobile-menu a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .site-nav-left,
  .site-nav-right > *:not(.site-nav-hamburger) { display: none; }
  .site-nav-hamburger { display: flex; }
  .site-nav-right { gap: 0; }
}

/* =============================================
   SHOP — SINGLE PRODUCT
   ============================================= */
.shop-hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.shop-hero-gallery {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 6px;
  padding: 32px;
  background: var(--grey-100);
}
.shop-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.shop-gallery-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--transition);
  background: var(--grey-200);
  flex-shrink: 0;
}
.shop-gallery-thumb.active, .shop-gallery-thumb:hover { opacity: 1; }
.shop-gallery-main {
  overflow: hidden;
  background: var(--grey-200);
  position: relative;
}

.shop-info {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
  position: sticky;
  top: 64px;
}
.shop-info-label { font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 12px; }
.shop-info-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.shop-info-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 32px;
}
.shop-info-price {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.shop-divider { border: none; border-top: 1px solid var(--grey-200); margin: 32px 0; }

/* Size selector */
.size-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}
.size-guide-link {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1px;
}
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.size-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--grey-200);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: var(--transition);
  background: var(--white);
}
.size-btn:hover { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.size-btn.unavailable { opacity: 0.25; pointer-events: none; text-decoration: line-through; }

/* Add to bag */
.add-to-bag-btn {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 16px;
}
.add-to-bag-btn:hover { background: #222; }

/* Product details accordion */
.product-accordion { margin-top: 32px; }
.accordion-item { border-top: 1px solid var(--grey-200); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
}
.accordion-trigger .plus {
  font-size: 16px;
  font-weight: 300;
  transition: transform var(--transition);
  line-height: 1;
}
.accordion-item.open .accordion-trigger .plus { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 20px; }
.accordion-body p { font-size: 12px; color: var(--grey-600); line-height: 1.9; }
.accordion-item.open .accordion-body { display: block; }

/* Shop info sticky on scroll */
@media (max-width: 1000px) {
  .shop-hero { grid-template-columns: 1fr; }
  .shop-hero-gallery {
    position: relative;
    top: 0;
    height: auto;
    grid-template-columns: 56px 1fr;
    padding: 20px;
  }
  .shop-gallery-main { aspect-ratio: 3/4; }
  .shop-info {
    position: static;
    padding: 48px 24px;
    max-height: none;
    overflow-y: visible;
  }
}

/* =============================================
   GALLERY — COLLECTIONS
   ============================================= */
.gallery-page {
  padding-top: 64px;
  min-height: 100vh;
}
.gallery-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--grey-200);
}
.gallery-header .t-label { margin-bottom: 16px; }
.gallery-slogan {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.3;
}
.gallery-slogan em { font-style: italic; font-weight: 400; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2px;
  margin-top: 2px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--grey-100);
}
.collection-card img {
  transition: transform 0.7s ease;
}
.collection-card:hover img { transform: scale(1.04); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.collection-card-slogan {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.collection-card-name {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.collection-card-count {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* =============================================
   GALLERY — JAPAN COLLECTION
   ============================================= */
.collection-header {
  padding-top: 64px;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.collection-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.collection-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.collection-header-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 64px;
}
.collection-header-content .t-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.collection-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 0.9;
}
.collection-subtitle {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}
.collection-subtitle em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.6); }

.collection-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--white);
}
.cg-item {
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
  cursor: pointer;
}
.cg-item-portrait { aspect-ratio: 3/4; }
.cg-item-square { aspect-ratio: 1; }
.cg-item-wide { aspect-ratio: 16/9; grid-column: span 2; }
.cg-item-full { aspect-ratio: 16/6; grid-column: span 3; }
.cg-item img { transition: transform 0.6s ease; }
.cg-item:hover img { transform: scale(1.03); }
.cg-placeholder { width: 100%; height: 100%; }

/* =============================================
   ABOUT PAGE — DARK
   ============================================= */
.about-page {
  padding-top: 64px;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
}
.about-hero-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.about-hero-section .t-label { color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.about-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
  max-width: 900px;
}
.about-title span { color: var(--red); }
.about-intro {
  max-width: 560px;
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}
.about-values-dark {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 120px 0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.about-value-item {
  background: var(--black);
  padding: 60px 48px;
}
.about-value-num {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.about-value-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.about-value-body { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.9; }
.about-stats {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.about-stat-num {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.about-stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* =============================================
   CART
   ============================================= */
.cart-page {
  padding-top: calc(64px + 60px);
  padding-bottom: 120px;
  min-height: 100vh;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.cart-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-200);
}
.cart-item-image { aspect-ratio: 3/4; background: var(--grey-100); overflow: hidden; }
.cart-item-name { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.cart-item-meta { font-size: 11px; color: var(--grey-400); letter-spacing: 0.08em; margin-bottom: 16px; }
.cart-item-price { font-size: 13px; font-weight: 400; }
.cart-item-actions { display: flex; align-items: center; gap: 20px; margin-top: auto; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--grey-200); }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background var(--transition); }
.qty-btn:hover { background: var(--grey-100); }
.qty-value { width: 36px; text-align: center; font-size: 12px; font-weight: 400; }
.remove-btn { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-400); border-bottom: 1px solid var(--grey-300); padding-bottom: 1px; font-family: var(--font); background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; }

.cart-summary { background: var(--grey-100); padding: 36px; position: sticky; top: calc(64px + 24px); }
.cart-summary h3 { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 28px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 12px; }
.summary-row.total { font-size: 14px; font-weight: 700; padding-top: 14px; border-top: 1px solid var(--grey-200); margin-top: 8px; }
.checkout-btn {
  display: block; width: 100%; padding: 16px;
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; text-align: center;
  margin-top: 20px; transition: background var(--transition);
}
.checkout-btn:hover { background: #222; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }

/* =============================================
   CHECKOUT
   ============================================= */
.checkout-page {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px;
}
.checkout-form-side { padding: 56px 72px 80px; border-right: 1px solid var(--grey-200); }
.checkout-summary-side { background: var(--grey-100); padding: 56px 56px; }
.checkout-logo { font-size: 11px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 48px; display: block; }
.checkout-steps { display: flex; gap: 10px; align-items: center; margin-bottom: 48px; }
.step { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-400); }
.step.active { color: var(--black); }
.step-sep { color: var(--grey-300); font-size: 10px; }
.checkout-section-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-400); }
.form-group input, .form-group select {
  padding: 13px 14px; border: 1px solid var(--grey-200);
  font-family: var(--font); font-size: 13px; outline: none;
  background: var(--white); transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.place-order-btn {
  width: 100%; padding: 17px; background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-top: 14px; transition: background var(--transition);
}
.place-order-btn:hover { background: #222; }
.checkout-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: center; }
.checkout-item-img { width: 64px; flex-shrink: 0; aspect-ratio: 3/4; background: var(--grey-200); overflow: hidden; position: relative; }
.checkout-item-badge { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; background: var(--grey-400); color: var(--white); border-radius: 50%; font-size: 9px; display: flex; align-items: center; justify-content: center; }
.checkout-item-name { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; flex: 1; }
.checkout-item-price { font-size: 12px; font-weight: 400; }
@media (max-width: 900px) { .checkout-page { grid-template-columns: 1fr; } .checkout-form-side { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--grey-200); } .checkout-summary-side { padding: 40px 24px; } }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.footer-logo { font-size: 11px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 16px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); max-width: 240px; line-height: 1.8; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 12px; color: rgba(255,255,255,0.6); transition: color var(--transition); letter-spacing: 0.05em; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-socials a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* =============================================
   UTILITIES / TOAST
   ============================================= */
.hidden { display: none !important; }
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black); color: var(--white);
  padding: 13px 28px; font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 9000; transition: transform 0.3s ease; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.page-fade { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =============================================
   MINI CART DRAWER
   ============================================= */
#mini-cart {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
#mini-cart.open { pointer-events: all; }

.mcd-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}
#mini-cart.open .mcd-overlay { background: rgba(0,0,0,0.45); }

.mcd-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
#mini-cart.open .mcd-panel { transform: translateX(0); }

.mcd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--grey-200);
  flex-shrink: 0;
}
.mcd-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.mcd-close {
  font-size: 14px;
  color: var(--grey-400);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
  font-family: var(--font);
}
.mcd-close:hover { color: var(--black); }

.mcd-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mcd-items::-webkit-scrollbar { width: 3px; }
.mcd-items::-webkit-scrollbar-thumb { background: var(--grey-200); }

.mcd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 20px;
}
.mcd-empty p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.mcd-shop-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

.mcd-item {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 16px;
  align-items: start;
  padding: 20px 28px;
  border-bottom: 1px solid var(--grey-100);
}
.mcd-item-img {
  aspect-ratio: 3/4;
  background: var(--grey-100);
  overflow: hidden;
}
.mcd-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mcd-item-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mcd-item-meta {
  font-size: 10px;
  color: var(--grey-400);
  letter-spacing: 0.06em;
}
.mcd-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.mcd-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-200);
}
.mcd-qty button {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
}
.mcd-qty button:hover { background: var(--grey-100); }
.mcd-qty span {
  width: 32px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}
.mcd-item-price {
  font-size: 12px;
  font-weight: 500;
}
.mcd-remove {
  font-size: 11px;
  color: var(--grey-300);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  font-family: var(--font);
  transition: color var(--transition);
  margin-top: 2px;
}
.mcd-remove:hover { color: var(--black); }

.mcd-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--grey-200);
  flex-shrink: 0;
}
.mcd-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mcd-subtotal span:first-child {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
}
.mcd-subtotal span:last-child {
  font-size: 14px;
  font-weight: 700;
}
.mcd-shipping-note {
  font-size: 10px;
  color: var(--grey-400);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.mcd-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  transition: background var(--transition);
}
.mcd-checkout-btn:hover { background: #222; }
.mcd-view-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--grey-200);
  color: var(--black);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transition: border-color var(--transition);
}
.mcd-view-btn:hover { border-color: var(--black); }

/* =============================================
   GALLERY — EDITORIAL SPLIT
   ============================================= */
.gallery-page-dark {
  padding-top: 64px;
  background: var(--black);
  color: var(--white);
}

.gallery-split {
  display: grid;
  grid-template-columns: 55% 45%;
  height: calc(100vh - 64px);
  min-height: 500px;
}
.gallery-split-img {
  overflow: hidden;
  position: relative;
}
.gallery-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  display: block;
}
.gallery-split:hover .gallery-split-img img { transform: scale(1.04); }

.gallery-split-info {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.gallery-split-num {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.gallery-split-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.gallery-split-name {
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 0.9;
}
.gallery-split-desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 360px;
  margin-top: 20px;
}
.gallery-split-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.gallery-split:hover .gallery-split-cta { color: rgba(255,255,255,0.85); }
.gallery-split-cta::after {
  content: '→';
  transition: transform var(--transition);
}
.gallery-split:hover .gallery-split-cta::after { transform: translateX(8px); }

@media (max-width: 768px) {
  .gallery-split {
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
    height: calc(100svh - 64px);
  }
  .gallery-split-info { padding: 40px; }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.97);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition);
  z-index: 10;
  line-height: 1;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 16px;
  transition: color var(--transition);
  z-index: 10;
  line-height: 1;
  user-select: none;
}
.lightbox-arrow:hover { color: var(--white); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
