/* ===== TACTI-GHOUL — Dark Tactical Streetwear ===== */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --bg-hover: #1c1c1c;
  --border: #2a2a2a;
  --border-light: #333;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --green: #4a7c59;
  --green-bright: #5d9a6e;
  --green-dim: #2a4a32;
  --accent: #4a7c59;
  --white: #f5f5f5;
  --danger: #c44;
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-green { color: var(--green-bright); }

/* ===== INTRO ===== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  animation: introSpin 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(93, 154, 110, 0.4));
}

@keyframes introSpin {
  0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 12px rgba(93, 154, 110, 0.3)); }
  25% { transform: rotate(90deg) scale(1.05); filter: drop-shadow(0 0 24px rgba(93, 154, 110, 0.5)); }
  50% { transform: rotate(180deg) scale(1); filter: drop-shadow(0 0 12px rgba(93, 154, 110, 0.3)); }
  75% { transform: rotate(270deg) scale(1.05); filter: drop-shadow(0 0 24px rgba(93, 154, 110, 0.5)); }
  100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 12px rgba(93, 154, 110, 0.3)); }
}

.intro-logo-icon {
  color: var(--green-bright);
  margin-bottom: 24px;
  animation: introPulse 1.5s ease infinite;
}

.intro-diamond-inner {
  animation: fillIn 0.8s 0.3s forwards;
}

.intro-dot {
  animation: dotGrow 0.5s 0.6s forwards;
}

@keyframes fillIn { to { opacity: 0.4; } }
@keyframes dotGrow { to { r: 3; } }
@keyframes introPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.intro-text-reveal {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.intro-letter {
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn 0.4s calc(var(--i) * 0.05s + 0.2s) forwards;
}

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}

.intro-bar-track {
  width: 180px;
  height: 2px;
  background: var(--border);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
}

.intro-bar-fill {
  height: 100%;
  width: 0;
  background: var(--green-bright);
  transition: width 1.8s var(--ease);
}

.intro-bar-fill.active { width: 100%; }

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo-icon { color: var(--green-bright); display: flex; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-bright);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-btn:hover {
  color: var(--white);
  background: var(--bg-hover);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: 100%;
  max-width: 560px;
  position: relative;
  padding: 0 24px;
}

.search-box input {
  width: 100%;
  padding: 18px 56px 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus { border-color: var(--green); }
.search-box input::placeholder { color: var(--text-dim); }

.search-close {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: 8px;
}

.search-close:hover { color: var(--white); }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-elevated);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  border-left: 1px solid var(--border);
}

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

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.cart-close { color: var(--text-muted); padding: 4px; }
.cart-close:hover { color: var(--white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 48px 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e2a1e, #2a3a2a);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-size {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(74, 124, 89, 0.12);
  border: 1px solid rgba(74, 124, 89, 0.25);
  border-radius: 4px;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--green-bright);
  font-weight: 600;
}
.cart-item-remove {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 6px;
}
.cart-item-remove:hover { color: var(--danger); }

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

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.qty-btn:hover {
  border-color: var(--green);
  background: rgba(74, 124, 89, 0.1);
}

.qty-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}

.cart-checkout {
  width: 100%;
  justify-content: center;
}

.cart-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 124, 89, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 124, 89, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74, 124, 89, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.35);
}

.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-bright);
  background: rgba(74, 124, 89, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

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

/* ===== MARQUEE ===== */

.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;

  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== COLLECTIONS ===== */
.featured-collections {
  padding: 100px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.collection-card:hover {
  border-color: var(--green-dim);
  transform: translateY(-4px);
}

.collection-large { min-height: 420px; }

.collection-bg {
  position: absolute;
  inset: 0;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}

.collection-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255,255,255,0.15);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.collection-count {
  font-size: 0.75rem;
  color: var(--green-bright);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.collection-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin: 6px 0 8px;
  color: var(--white);
}

.collection-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-bright);
  transition: gap 0.2s;
}

.collection-link:hover { gap: 12px; }

/* ===== PRODUCTS ===== */
.products-section {
  padding: 100px 0;
  background: var(--bg-elevated);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.product-card:hover {
  border-color: var(--green-dim);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(93, 154, 110, 0.12);
}

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

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Product image flip (front/back) */
.product-image[data-flippable] {
  cursor: pointer;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-img-wrap .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.5s var(--ease);
}

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

.product-img-wrap .product-img.front {
  opacity: 1;
  z-index: 2;
}

.product-img-wrap.show-back .product-img.front {
  opacity: 0;
}

.product-img-wrap.show-back .product-img.back {
  opacity: 1;
}

.product-img-wrap.show-back .product-img.back {
  transform: scale(1.05);
}

.product-card:hover .product-img-wrap .product-img {
  transform: scale(1.05);
}

.product-card:hover .product-img-wrap.show-back .product-img {
  transform: scale(1.05);
}

/* Front/Back label */
.product-side-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  border-radius: 4px;
  z-index: 2;
}

.badge-hot { background: #b45309; }
.badge-sale { background: var(--danger); }

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.product-action-btn:hover {
  background: var(--green);
  color: var(--white);
}

.product-action-btn.liked {
  color: #e74c3c;
}

.product-add-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  z-index: 2;
}

.product-card:hover .product-add-cart {
  transform: translateY(0);
}

.product-add-cart:hover {
  background: var(--green);
}

.product-info {
  padding: 18px 20px 22px;
  text-align: center;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 6px 0 10px;
  color: var(--white);
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price-current {
  font-weight: 600;
  color: var(--green-bright);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-colors {
  display: flex;
  gap: 6px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.color-dot:hover,
.color-dot.active {
  border-color: var(--white);
  transform: scale(1.15);
}

.stars {
  display: flex;
  gap: 2px;
  color: #d4a017;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ===== BANNER ===== */
.vault-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.vault-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1510 0%, #0a0a0a 50%, #0d1015 100%);
}

.vault-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 124, 89, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 124, 89, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.vault-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vault-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--white);
}

.vault-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
}

.vault-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.vault-timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
}

.vault-timer-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}

.vault-timer-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.vault-timer-sep {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--green-bright);
  opacity: 0.5;
  padding-bottom: 18px;
}

.vault-btn svg {
  vertical-align: middle;
  margin-left: 4px;
}

.vault-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-door-wrap {
  position: relative;
  width: 300px;
  height: 360px;
  perspective: 800px;
}

.vault-door {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, #1a2a1a, #111);
  border: 2px solid rgba(74, 124, 89, 0.3);
  box-shadow:
    0 0 40px rgba(74, 124, 89, 0.08),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  transform-origin: left center;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-door-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(74, 124, 89, 0.4);
  position: relative;
}

.vault-door-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--green-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(74, 124, 89, 0.6);
}

.vault-door-handle {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 40px;
  background: rgba(74, 124, 89, 0.3);
  border-radius: 5px;
}

.vault-door-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: transparent;
  transition: box-shadow 0.8s ease;
}

.vault-door-wrap.open .vault-door {
  transform: rotateY(-110deg);
  opacity: 0.3;
}

.vault-door-wrap.open .vault-door-glow {
  box-shadow: 0 0 60px rgba(74, 124, 89, 0.3), 0 0 120px rgba(74, 124, 89, 0.1);
}

.vault-item-reveal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  z-index: 1;
}

.vault-door-wrap.open .vault-item-reveal {
  opacity: 1;
  transform: scale(1);
}

.vault-item-card {
  background: linear-gradient(145deg, #1a2a1a, #111);
  border: 1px solid rgba(74, 124, 89, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 30px rgba(74, 124, 89, 0.1);
}

.vault-item-card .vi-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.vault-item-card .vi-price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.vault-item-card .vi-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
}

.vault-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes vaultPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.1); }
  50% { box-shadow: 0 0 40px 10px rgba(74, 124, 89, 0.08); }
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-elevated);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--green-dim);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #d4a017;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.review-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 420px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-img-1 {
  width: 70%;
  height: 320px;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #1a2a1a, #2a3a2a);
}

.about-img-2 {
  width: 55%;
  height: 240px;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2a, #2a2a3a);
  box-shadow: var(--shadow);
}

.about-badge-float {
  position: absolute;
  bottom: 60px;
  left: 20%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-number {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-bright);
  letter-spacing: 0.05em;
}

.about-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 124, 89, 0.12);
  border-radius: 10px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0 100px;
}

.newsletter-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
}

.newsletter-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(74, 124, 89, 0.15), transparent 70%);
  pointer-events: none;
}

.newsletter-content { position: relative; z-index: 1; }

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--white);
}

.newsletter-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.newsletter-form { max-width: 480px; margin: 0 auto; }

.newsletter-input-wrap {
  display: flex;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  transition: border-color 0.2s;
}

.newsletter-input-wrap:focus-within {
  border-color: var(--green);
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input::placeholder { color: var(--text-dim); }

.newsletter-btn {
  flex-shrink: 0;
  padding: 12px 20px;
}

.newsletter-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-link:hover {
  color: var(--green-bright);
  border-color: var(--green);
  background: rgba(74, 124, 89, 0.1);
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover { color: var(--text-muted); }

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
}

.product-modal-overlay.open .product-modal {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.product-modal-close:hover {
  color: var(--white);
  background: rgba(0, 0, 0, 0.7);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.product-modal-images {
  position: relative;
  background: #111;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-modal-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
}

.product-modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}

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

.product-modal-img.front {
  opacity: 1;
  z-index: 2;
}

.product-modal-img-wrap.show-back .product-modal-img.front {
  opacity: 0;
}

.product-modal-img-wrap.show-back .product-modal-img.back {
  opacity: 1;
}

.product-modal-side-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
}

.product-modal-flip-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 5;
  transition: background 0.2s, border-color 0.2s;
}

.product-modal-flip-btn:hover {
  background: rgba(74, 124, 89, 0.4);
  border-color: var(--green);
}

.product-modal-flip-btn svg {
  transition: transform 0.4s var(--ease);
}

.product-modal-img-wrap.show-back ~ .product-modal-flip-btn svg,
.product-modal-flip-btn.flipped svg {
  transform: rotate(180deg);
}

.product-modal-details {
  padding: 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.product-modal-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.product-modal-price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.product-modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.product-modal-sizes {
  margin-bottom: 20px;
}

.size-group {
  margin-bottom: 16px;
}

.size-group-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 48px;
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}

.size-btn:hover {
  border-color: var(--green-dim);
  color: var(--white);
  background: rgba(74, 124, 89, 0.08);
}

.size-btn.active {
  border-color: var(--green-bright);
  background: rgba(74, 124, 89, 0.18);
  color: var(--green-bright);
  box-shadow: 0 0 12px rgba(93, 154, 110, 0.2);
}

.size-btn.kid-size {
  font-size: 0.78rem;
}

.size-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.size-error.visible {
  opacity: 1;
}

.product-modal-add {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 16px 28px;
  font-size: 0.95rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-large {
    grid-column: 1 / -1;
    min-height: 300px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
  }
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-link.active::after { display: none; }

  .hamburger { display: flex; }

  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.3rem; }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .vault-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vault-desc { margin-left: auto; margin-right: auto; }

  .vault-visual { order: -1; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual { order: -1; }

  .about-title { text-align: center; }

  .about-content .section-tag {
    display: block;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .newsletter-input-wrap {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Modal responsive */
  .product-modal-body {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .product-modal-images {
    aspect-ratio: 4/3;
  }

  .product-modal-details {
    padding: 24px;
  }
}