/* NOCTIS MAIN CSS */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-dark: #111111;
  --gray-mid: #1a1a1a;
  --gray-light: #2a2a2a;
  --gray-text: #888888;
  --accent: #ffffff;
  --sand: #d4c5a9;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}

/* HEADER UNIT */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  transition: transform 0.3s ease;
}

nav {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s ease;
}

#masthead.scrolled nav {
  padding: 12px 48px;
}

#masthead.scrolled .promo-bar {
  display: none; /* Hide promo bar on scroll for more space */
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img, .nav-logo svg { 
  max-height: 40px; 
  width: auto; 
  max-width: 250px; 
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-icon {
  color: rgba(255,255,255,0.7);
  cursor: none;
  transition: color 0.2s;
  position: relative;
}
.nav-icon:hover { color: var(--white); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}

/* HERO SLIDER */
.hero {
  position: relative;
  height: calc(100vh - 125px);
  margin-top: 125px; /* Exact offset for promo (45px) + nav (80px) */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, transparent 30%), /* Top shadow for nav */
    linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 120px; /* Increased bottom padding */
  max-width: 1100px; /* Increased from 700px to avoid text stacking/overflow */
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 82px); /* Further reduced for safer fit */
  font-weight: 900;
  line-height: 1; /* Slackened slightly from 0.9 */
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
  max-width: 100%;
}
.hero-title em { font-style: normal; color: rgba(255,255,255,0.25); }

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: none;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.9); }

.btn-ghost {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: none;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: none;
  transition: background 0.3s, width 0.3s;
}
.slide-dot.active { background: var(--white); width: 48px; }

.slide-counter {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  z-index: 10;
}

/* TICKER */
.ticker {
  background: var(--white);
  color: var(--black);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 40px;
}
.ticker-sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 4px;
}

/* SECTIONS */
section { padding: 100px 48px; }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gray-text);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

/* CATEGORIES */
.categories { background: var(--gray-dark); padding: 80px 48px; }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cats-grid { grid-template-columns: 1fr; }
}

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: none;
  background: var(--gray-mid);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.cat-card:hover .cat-card-overlay { opacity: 0.7; }

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.cat-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.3s;
  text-decoration: none;
}
.cat-card:hover .cat-cta { color: var(--white); }
.cat-cta-arrow { transition: transform 0.3s; }
.cat-card:hover .cat-cta-arrow { transform: translateX(4px); }

/* FEATURED PRODUCTS */
.products-section { background: var(--black); }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.view-all {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: none;
}
.view-all:hover { color: var(--white); }

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

.product-card {
  position: relative;
  background: var(--gray-dark);
  cursor: none;
  overflow: hidden;
}

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-mid);
}

.product-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img-main { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--white);
  color: var(--black);
}
.product-badge.new { background: var(--white); color: var(--black); }
.product-badge.sale { background: #1a1a1a; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

.product-actions {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

.product-action-btn {
  width: 40px; height: 40px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: all 0.2s;
  color: var(--white);
}
.product-action-btn:hover { background: var(--white); color: var(--black); }

.add-to-cart-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: rgba(10,10,10,0.9);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.product-card:hover .add-to-cart-overlay { transform: translateY(0); }

.size-opt {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  cursor: none;
  transition: all 0.15s;
  letter-spacing: 0.1em;
}
.size-opt:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.product-info {
  padding: 18px 20px 24px;
}
.product-category {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.product-price-old {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-text);
  text-decoration: line-through;
}
.product-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.color-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: none;
  transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.3); }
.color-dot.active { border: 2px solid var(--white); }

/* BRAND STATEMENT */
.brand-statement {
  background: var(--white);
  color: var(--black);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.brand-statement::before {
  content: 'NOCTIS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.brand-statement-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}
.brand-statement-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* EDITORIAL SECTION */
.editorial {
  background: var(--gray-dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.editorial-image {
  background: var(--gray-mid);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.editorial-image-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.editorial-image:hover .editorial-image-inner { transform: scale(1); }

.editorial-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray-dark);
}
.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.editorial-quote em { font-style: normal; color: var(--gray-text); }

.editorial-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

/* PRODUCT DETAIL MODAL */
.pdp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.95);
  overflow-y: auto;
}
.pdp-modal.active { display: flex; }

.pdp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
  gap: 64px;
  align-items: start;
}

.pdp-close {
  position: fixed;
  top: 28px; right: 36px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 201;
  transition: color 0.2s;
}
.pdp-close:hover { color: var(--white); }
.pdp-close-x {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.pdp-close:hover .pdp-close-x { background: var(--white); color: var(--black); border-color: var(--white); }

.pdp-gallery { position: sticky; top: 80px; }

.pdp-main-img {
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--gray-mid);
  background-size: cover;
  background-position: center;
  cursor: none;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pdp-thumb.active { border-color: var(--white); }

.pdp-info { padding-top: 20px; }

.pdp-brand {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}

.pdp-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pdp-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.pdp-price-old { font-family: var(--font-display); font-size: 20px; color: var(--gray-text); text-decoration: line-through; }
.pdp-discount-badge {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.pdp-section-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.color-options { display: flex; gap: 10px; margin-bottom: 24px; }
.color-swatch {
  width: 36px; height: 36px;
  cursor: none;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.color-swatch.active { border-color: var(--white); }
.color-swatch:hover { transform: scale(1.1); }

.size-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.size-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: transparent;
  cursor: none;
  transition: all 0.15s;
  min-width: 54px;
  text-align: center;
}
.size-btn:hover { border-color: var(--white); color: var(--white); }
.size-btn.active { background: var(--white); color: var(--black); border-color: var(--white); }
.size-btn.oos { opacity: 0.3; pointer-events: none; text-decoration: line-through; }

.pdp-add-btn {
  width: 100%;
  padding: 20px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: all 0.2s;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pdp-add-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.pdp-wishlist-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: none;
  transition: all 0.2s;
  margin-bottom: 32px;
}
.pdp-wishlist-btn:hover { border-color: var(--white); }

.pdp-details { border-top: 1px solid rgba(255,255,255,0.08); }
.pdp-detail-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
}
.pdp-detail-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pdp-detail-arrow { color: var(--gray-text); transition: transform 0.2s; }
.pdp-detail-row:hover .pdp-detail-arrow { transform: translateX(4px); }

/* SOCIAL PROOF */
.social-proof {
  background: var(--black);
  padding: 80px 48px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 60px 0;
}
.stat-card {
  background: var(--gray-dark);
  padding: 40px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* FOOTER */
footer {
  background: var(--gray-dark);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-links { display: flex; gap: 14px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
  font-size: 14px;
}
.social-link:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.05); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

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

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NAV MENU MOBILE */
/* NAV MENU MOBILE */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  padding: 5px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 40px;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.5s;
}
.mobile-nav.active { 
  visibility: visible;
  transform: translateX(0); 
  transition-delay: 0s;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.close-btn {
  font-size: 24px;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
}
.mobile-links li { margin-bottom: 30px; }
.mobile-links a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
}

/* RESPONSIVE QUERIES */
@media (max-width: 991px) {
  nav { padding: 15px 24px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  
  .nav-logo { font-size: 22px; }
  .nav-logo img, .nav-logo svg { max-height: 28px; }
  
  .hero-title { font-size: 40px; }
  .hero-content { padding: 0 24px 60px; }
  
  .promo-bar { padding: 0 20px; gap: 15px; }
  .promo-item { font-size: 9px; text-align: center; }
  
  #masthead.scrolled nav { padding: 10px 24px; }
  
  .hero { height: 80vh; min-height: 500px; margin-top: 110px; }
}

/* SECTION DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

/* PROMO BANNER */
.promo-bar {
  height: 45px;
  background: var(--black);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.promo-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* WooCommerce compatibility styles */
.woocommerce-page { padding: 120px 48px; background: var(--black); color: var(--white); }
.woocommerce-product-gallery { margin-bottom: 40px; }
.woocommerce-loop-product__title { font-family: var(--font-display); color: var(--white); text-transform: uppercase; }
.price { color: var(--white); font-weight: bold; }
.button.alt { background: var(--white); color: var(--black); font-family: var(--font-display); text-transform: uppercase; border: none; padding: 15px 30px; letter-spacing: 0.2em; font-weight: 800; cursor: pointer; }
.button.alt:hover { background: rgba(255,255,255,0.9); }

/* High-Res Zoom Effect */
.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    background: var(--gray-dark);
}

.zoom-image {
    transition: transform 0.3s ease-out;
    transform-origin: center center;
    width: 100%;
    height: auto;
    display: block;
}

.zoom-container:hover .zoom-image {
    transform: scale(2);
    cursor: crosshair;
}

/* NEWSLETTER POPUP */
.newsletter-popup {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.85);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}
.newsletter-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.newsletter-popup-inner {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 900px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: row;
}
.newsletter-popup.active .newsletter-popup-inner {
  transform: translateY(0);
}
.newsletter-popup-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.newsletter-popup-close {
  position: absolute;
  top: 20px; right: 20px;
  cursor: pointer;
  color: var(--gray-text);
  transition: color 0.2s;
  z-index: 10;
}
.newsletter-popup-close:hover { color: var(--white); }
.newsletter-popup-content {
  flex: 1.1;
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .newsletter-popup-inner {
    flex-direction: column;
    max-width: 480px;
  }
  .newsletter-popup-image {
    min-height: 250px;
  }
  .newsletter-popup-content {
    padding: 40px 32px;
  }
}
.newsletter-popup-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.newsletter-popup-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.newsletter-popup-desc strong {
  color: var(--white);
  font-weight: 700;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newsletter-form input {
  padding: 18px 24px;
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  cursor: text;
}
.newsletter-form input:focus { border-color: var(--white); }
.newsletter-form button {
  width: 100%;
  cursor: pointer;
}

/* CF7 support in Newsletter popup */
.newsletter-popup .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 16px;
}
.newsletter-popup .wpcf7-form-control {
  width: 100%;
  padding: 18px 24px;
  background: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.newsletter-popup .wpcf7-form-control:focus { border-color: var(--white); }
.newsletter-popup .wpcf7-submit {
  width: 100%;
  padding: 20px 36px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-popup .wpcf7-submit:hover {
  background: rgba(255,255,255,0.9);
}
.newsletter-popup .wpcf7-response-output {
  margin: 16px 0 0 0;
  padding: 12px;
  font-size: 13px;
}
