@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #484544;
  --surface: #524f4d;
  --surface-2: #5c5957;
  --border: #5c5957;
  --border-2: #6e6b68;
  --text: #f0dcc9;
  --text-muted: #b0a090;
  --text-dim: #7a6e66;
  --white: #f0dcc9;
  --black: #484544;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 60px;
  --sidebar-w: 160px;
  --ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }

/* ─── HOMEPAGE FULLSCREEN ─────────── */
body.home-body {
  overflow: hidden;
  background: var(--bg);
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  pointer-events: none;
  -webkit-appearance: none;
}

/* Kill Safari's native play button overlay */
.home-video::-webkit-media-controls,
.home-video::-webkit-media-controls-panel,
.home-video::-webkit-media-controls-play-button,
.home-video::-webkit-media-controls-start-playback-button,
.home-video::-webkit-media-controls-overlay-play-button,
.home-video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none !important;
}
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
}

.home-bg-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  transition: opacity 0.4s ease;
  pointer-events: none;
}


.home-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 3;
  pointer-events: none;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.6rem 2.2rem;
  pointer-events: none;
}

.home-header a { pointer-events: all; }

.home-logo {
  text-decoration: none;
  display: inline-block;
}

.home-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.home-bag {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.home-bag .cart-badge {
  display: inline-flex;
  background: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  min-width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  vertical-align: baseline;
}

.home-main {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-shop-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 2rem 5.5rem;
  transition: opacity 0.25s;
}

.home-shop-link:hover { opacity: 0.7; }

.home-shop-text {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(16px, 2vw, 30px);
  letter-spacing: 5px;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.home-sidenav {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 2.5rem;
  left: 2.2rem;
  z-index: 30;
  height: auto;
  padding: 0;
  background: transparent;
  border-bottom: none;
  display: block;
  align-items: unset;
}

.home-sidenav ul {
  list-style: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.home-sidenav a {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
  line-height: 1.4;
}

.home-sidenav a:hover { opacity: 0.5; }

/* ─── SITE BANNER (other pages — left sidebar) ── */
.site-banner {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  z-index: 100;
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
}

.banner-logo {
  display: block;
  flex-shrink: 0;
}

.banner-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.banner-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  flex: 1;
}

.banner-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  transition: color var(--ease);
}

.banner-nav a:hover,
.banner-nav a.active { color: var(--white); }

.banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}

.banner-bag {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.banner-bag .cart-badge {
  display: inline-flex;
  background: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  min-width: auto;
  height: auto;
  border-radius: 0;
  border: none;
}

/* ─── INNER PAGE TOP BAR ─────────── */
.inner-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.inner-header-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.inner-header-bag {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.inner-header-bag .cart-badge {
  display: inline-flex;
  background: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  min-width: auto;
  height: auto;
  border-radius: 0;
}

body.inner-layout {
  padding-top: var(--nav-h);
}

/* ─── NAV ─────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 7px 18px;
  transition: all var(--ease);
}

.nav-links .nav-cta:hover {
  background: var(--text-muted);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.currency-toggle { display: flex; gap: 3px; }

.currency-btn {
  background: none;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 9px;
  cursor: pointer;
  transition: all var(--ease);
}

.currency-btn.active,
.currency-btn:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 600px) {
  .currency-toggle { gap: 2px; }
  .currency-btn { font-size: 9px; padding: 3px 6px; letter-spacing: 1px; }
}

/* ─── Currency dropdown (shop header) ──── */
.inner-header-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.currency-selector {
  position: relative;
}

.currency-current-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 0;
  transition: color var(--ease);
  text-transform: uppercase;
}
.currency-current-btn:hover { color: var(--white); }

.currency-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  min-width: 80px;
  z-index: 150;
}
.currency-selector.open .currency-dropdown { display: flex; }

.currency-dropdown .currency-btn {
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 9px 16px;
  text-align: left;
  letter-spacing: 1.5px;
}
.currency-dropdown .currency-btn:last-child { border-bottom: none; }
.currency-dropdown .currency-btn.active { color: var(--white); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  transition: color var(--ease);
}

.nav-cart:hover { color: var(--white); }

.cart-badge {
  display: none;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.banner-bag .cart-badge,
.home-bag .cart-badge {
  display: inline-flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 1rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw calc(8vh + var(--nav-h));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transition: transform 10s ease;
  transform: scale(1.03);
}

.hero:hover .hero-bg img { transform: scale(1.07); }

.hero-inner { position: relative; z-index: 2; }

.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 13px 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--ease);
}

.hero-cta:hover {
  background: transparent;
  color: var(--white);
  outline: 1px solid var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 5vw;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--text-dim);
}

/* ─── SHOP PAGE HEADER ────────────── */
.shop-header {
  padding: 3rem 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.shop-header-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: 4px;
  color: var(--white);
}

.shop-header-meta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
}

/* ─── FILTERS ─────────────────────── */
.shop-filters {
  padding: 1rem 2.5rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  cursor: pointer;
  transition: color var(--ease);
}

.filter-btn.active,
.filter-btn:hover { color: var(--white); }

/* ─── PRODUCTS GRID ───────────────── */
.shop-grid-section { padding: 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

/* ─── PRODUCT CARD ────────────────── */
.product-card {
  cursor: pointer;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.product-card:focus,
.product-card:focus-visible {
  outline: none;
}

.product-new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}

.product-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ffffff;
}

.product-thumb-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}

.product-img-front {
  object-fit: contain;
  padding: 2.5rem;
}

.product-img-back {
  object-fit: cover;
  padding: 0;
}

.product-img-front { z-index: 1; }
.product-img-back  { z-index: 0; opacity: 0; }

.product-card:hover .product-img-front { opacity: 0; }
.product-card:hover .product-img-back  { opacity: 1; }

/* coming soon: blurred image + bottom tag */
.product-thumb-cs img { filter: blur(6px); transform: scale(1.08); }

.product-cs-overlay {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  text-align: center;
}

.product-cs-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--white);
}

.product-cs-sub { display: none; }

.product-info {
  padding: 0.85rem 1rem 1.2rem;
  background: var(--bg);
}

.product-collection {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.product-info p { display: none; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.product-view-link {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity var(--ease);
}

.product-card:hover .product-view-link { opacity: 1; color: var(--white); }

/* ─── SECTIONS ────────────────────── */
.featured-section { padding: 4rem 2.5rem 5rem; }

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.88;
  letter-spacing: 3px;
  margin-bottom: 2.5rem;
  color: var(--white);
}

/* ─── BRAND STATEMENT ─────────────── */
.brand-statement {
  background: var(--white);
  color: var(--black);
  padding: 7rem 5vw;
  text-align: center;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 150px);
  line-height: 0.88;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  color: var(--black);
}

.statement-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #555;
  max-width: 460px;
  margin: 0 auto;
}

/* ─── PAGE HERO ───────────────────── */
.page-hero {
  padding: 3rem 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ─── PRODUCT PAGE ────────────────── */
.pg-wrap { padding-top: 0; min-height: 100vh; }

.pg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.pg-gallery {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}

.pg-main-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

#pg-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}

.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.25s;
}
.pg-main-wrap:hover .pg-arrow { opacity: 1; }
.pg-arrow-prev { left: 10px; }
.pg-arrow-next { right: 10px; }

/* ─── YOU MAY ALSO LIKE ───────────────── */
.also-like-section {
  padding: 4rem 2.5rem 5rem;
  border-top: 1px solid var(--border);
}

.also-like-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 2rem;
}

.also-like-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

@media (max-width: 960px) {
  .also-like-grid { grid-template-columns: repeat(2, 1fr); }
}

.pg-cs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 2;
  text-align: center;
  gap: 0.5rem;
}

.pg-thumbs {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.pg-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity var(--ease);
  flex-shrink: 0;
}

.pg-thumb.active,
.pg-thumb:hover { opacity: 1; }

.pg-info {
  padding: 3.5rem 4vw 4rem;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.pg-back {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 2rem;
  transition: color var(--ease);
}

.pg-back:hover { color: var(--white); }

.pg-cat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.pg-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 1rem;
}

.pg-price {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.pg-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pg-field-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.pg-sizes-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pg-size-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--ease);
}

.pg-size-btn:hover { border-color: var(--white); color: var(--white); }

.pg-size-btn.selected {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: #111;
  color: #e4e3e0;
  width: 100%;
}

.btn-primary:hover {
  background: #444;
  color: #e4e3e0;
}

.btn-outline {
  background: none;
  color: #111;
  border: 1px solid var(--border-2);
}

.btn-outline:hover { border-color: #111; }

.pg-buy-btn { margin-bottom: 0.75rem; }

.pg-buy-btn-cs,
.btn-primary:disabled {
  background: var(--surface-2) !important;
  color: var(--text-dim) !important;
  cursor: not-allowed !important;
}

.pg-pay-note {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.pg-accordions { border-top: 1px solid var(--border); margin-top: 1rem; }
.pg-acc-item { border-bottom: 1px solid var(--border); }

.pg-acc-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease);
}

.pg-acc-trigger:hover { color: var(--text-muted); }

.pg-acc-icon {
  font-size: 18px;
  font-weight: 300;
  transition: transform var(--ease);
}

.pg-acc-item.open .pg-acc-icon { transform: rotate(45deg); }

.pg-acc-body { display: none; padding-bottom: 1.5rem; }
.pg-acc-item.open .pg-acc-body { display: block; }

.pg-acc-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pg-acc-body li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.pg-acc-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

.pg-main-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 80px;
}

/* ─── CART PAGE ───────────────────── */
.cart-wrap {
  padding: 3.5rem 5vw 6rem;
  max-width: 860px;
  margin: 0 auto;
}

.cart-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 100px);
  letter-spacing: 2px;
  margin-bottom: 3rem;
  line-height: 0.9;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto 36px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 86px;
  height: 105px;
  object-fit: cover;
  background: var(--surface);
  flex-shrink: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 3px;
  line-height: 1.1;
}

.cart-item-size {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-muted);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-2);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--ease);
}

.cart-qty-btn:hover { border-color: var(--white); }

.cart-qty-count {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--ease);
  line-height: 1;
  padding: 0;
  align-self: start;
}

.cart-remove:hover { color: var(--white); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
  gap: 1rem;
}

.cart-empty p {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.cart-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--ease);
}

.shipping-option:hover,
.shipping-option.selected { border-color: var(--white); }

.shipping-radio {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--ease);
}

.shipping-radio.checked { border-color: var(--white); background: var(--white); }

.shipping-option-info { flex: 1; }

.shipping-option-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}

.shipping-option-time {
  font-size: 11px;
  color: var(--text-muted);
}

.shipping-option-price {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
}

.shipping-highlight { outline: 1px solid var(--white); }

.cart-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  padding-top: 2rem;
}

.cart-total {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.cart-total #cart-total-price {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1px;
  color: var(--white);
}

.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--white);
  color: var(--black);
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  transition: all 0.35s;
  white-space: nowrap;
}

.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-toast a { margin-left: 12px; font-weight: 700; text-decoration: underline; color: inherit; }

/* ─── SUCCESS PAGE ────────────────── */
.success-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 5vw;
}

.success-box { max-width: 520px; width: 100%; }

.success-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.success-product {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.success-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-actions .btn { width: auto; }

/* ─── FOOTER ──────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5vw;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--white);
}

.footer-social { display: flex; gap: 1.25rem; }

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--ease);
}

.social-icon:hover { color: var(--white); }
.social-icon svg { width: 17px; height: 17px; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dim);
}

/* ─── UTILITIES ───────────────────── */
.currency-sym { font-size: 0.75em; vertical-align: 0.1em; }

/* ─── ANIMATIONS ──────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-inner { grid-template-columns: 1fr; }
  .pg-gallery { position: static; height: 60vw; min-height: 320px; }
  .pg-info { border-left: none; border-top: 1px solid var(--border); }
  .product-img-front { padding: 2.5rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 4.5vw; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.25rem;
    margin: 0;
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .featured-section,
  .shop-grid-section { padding: 3.5rem 4.5vw 4rem; }

  .brand-statement { padding: 5rem 4.5vw; }

  .cart-item {
    grid-template-columns: 70px 1fr auto 28px;
    gap: 0.75rem;
  }

  .hero-title { font-size: clamp(64px, 20vw, 160px); }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ─── CART DRAWER ─────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--white);
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--ease);
}
.cart-drawer-close:hover { color: var(--white); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
}

.drawer-empty {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.drawer-item:last-child { border-bottom: none; }

.drawer-item-img {
  width: 88px;
  height: 108px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface, #1a1a1a);
  display: block;
}

.drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.drawer-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer-item-meta { font-size: 0.75rem; color: var(--text-muted); }
.drawer-item-price { font-size: 0.82rem; color: var(--white); }

.drawer-item-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.4rem;
}
.drawer-qty {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.drawer-qty-btn {
  background: none;
  border: 1px solid var(--border-2);
  color: var(--white);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  transition: border-color var(--ease);
}
.drawer-qty-btn:hover { border-color: var(--white); }
.drawer-qty-num {
  font-size: 0.82rem;
  color: var(--white);
  min-width: 14px;
  text-align: center;
}
.drawer-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.73rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color var(--ease);
}
.drawer-remove-btn:hover { color: var(--white); }

.cart-drawer-footer {
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.1rem 1.5rem 1.4rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-shipping-row { display: flex; flex-direction: column; gap: 6px; }

.drawer-shipping-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.drawer-shipping-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--ease), color var(--ease);
}
.drawer-shipping-opt.selected { border-color: var(--white); color: var(--white); }
.drawer-shipping-opt:hover { border-color: var(--border-2); }

.drawer-shipping-radio {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  flex-shrink: 0;
  transition: all var(--ease);
}
.drawer-shipping-opt.selected .drawer-shipping-radio {
  border-color: var(--white);
  background: var(--white);
}
.drawer-shipping-opt-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.drawer-shipping-name { font-size: 0.8rem; color: var(--white); }
.drawer-shipping-time { font-size: 0.72rem; color: var(--text-muted); }

.drawer-totals {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.drawer-totals-labels,
.drawer-totals-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-totals-labels {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.drawer-totals-values {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.drawer-discount-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.drawer-discount-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 2px;
}

.drawer-discount-input::placeholder {
  color: var(--text-muted);
}

.drawer-discount-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity var(--ease);
  border-radius: 2px;
}

.drawer-discount-btn:hover {
  opacity: 0.88;
}

.drawer-checkout-btn {
  width: 100%;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: opacity var(--ease);
  margin-top: 0.15rem;
}
.drawer-checkout-btn:hover:not(:disabled) { opacity: 0.88; }
.drawer-checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Drawer also-like ───────────────── */
.drawer-also-like {
  border-top: 1px solid var(--border);
  padding: 1rem 0 0.5rem;
  margin-top: 0.5rem;
}

.drawer-also-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.drawer-also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-items: start;
}

.drawer-also-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  overflow: hidden;
}

.drawer-also-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}

.drawer-also-img-wrap img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  display: block;
}

.drawer-also-info { padding: 0 2px; }

.drawer-also-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.drawer-also-price {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.drawer-checkout-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
