/*
 Theme Name:   Kadence Child — Nine Brand
 Theme URI:    https://theixbrand.co
 Description:  Kadence child theme for Nine Brand / IX Brand
 Author:       Nine Brand
 Author URI:   https://theixbrand.co
 Template:     kadence
 Version:      1.0.0
 Text Domain:  kadence-child-nine-brand
*/

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #F5F3F0;
  color: #14181C;
  font-family: 'Roboto Mono', monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ─── TOKENS ─── */
:root {
  --black:   #14181C;
  --red:     #C02026;
  --white:   #FFFFFF;
  --bg:      #F5F3F0;
  --bg2:     #EDEBE8;
  --muted:   #888888;
  --border:  #E0DEDB;
  --mono:    'Roboto Mono', monospace;
  --display: 'Anton', sans-serif;
  --tap:     44px;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

/* ═══════════════════════════════════════
   ANNOUNCE BAR
═══════════════════════════════════════ */
.announce {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
}
.announce span { color: var(--red); margin: 0 6px; }

@media (max-width: 500px) {
  .announce .sep { display: none; }
  .announce .seg { display: block; }
}

/* ═══════════════════════════════════════
   HIDE KADENCE DEFAULT HEADER + FOOTER
═══════════════════════════════════════ */
.site-header,
.site-footer,
#masthead,
#colophon {
  display: none !important;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nb-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
}

.nb-nav-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nb-nav-left a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  transition: opacity 0.2s;
  min-height: var(--tap);
  display: flex;
  align-items: center;
}
.nb-nav-left a:hover { opacity: 1; }

.nb-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
}
.nb-nav-logo img {
  display: block;
  width: 110px;
  height: auto;
  max-width: 100%;
}

.nb-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nb-nav-icon {
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.nb-nav-icon:hover, .nb-nav-icon:focus { opacity: 1; outline: none; }
.nb-nav-icon svg { width: 18px; height: 18px; stroke: var(--black); fill: none; stroke-width: 1.5; }

.nb-nav-hamburger {
  display: none;
  width: var(--tap);
  height: var(--tap);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.nb-nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.25s;
  transform-origin: center;
}
.nb-nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nb-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nb-nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nb-mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nb-mobile-menu.open { display: flex; }

.nb-mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.7;
  transition: opacity 0.2s;
  min-height: var(--tap);
  display: flex;
  align-items: center;
}
.nb-mobile-menu a:last-child { border-bottom: none; }
.nb-mobile-menu a:hover { opacity: 1; }

.nb-mobile-menu-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.nb-mobile-menu-social a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--mono);
  border: 1px solid var(--border);
  padding: 12px 20px;
  color: var(--muted);
  opacity: 1;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.nb-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  background: #1a1e22;
  display: flex;
  align-items: flex-end;
  margin-top: -90px;
}

.nb-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1e22 0%, #0d1014 100%);
}

.nb-hero-placeholder-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(74vw, 980px);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.nb-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(13,16,20,0.2) 55%,
    rgba(13,16,20,0.85) 100%
  );
}

.nb-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nb-hero-kicker {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.nb-hero-title {
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 80px);
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.nb-btn-drop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0 28px;
  height: var(--tap);
  min-width: 180px;
  transition: all 0.25s;
  background: transparent;
}
.nb-btn-drop:hover, .nb-btn-drop:focus {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  outline: none;
}

@media (max-width: 700px) {
  .nb-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    background: #05070a;
  }
  .nb-hero-img {
    object-fit: contain;
    object-position: center top;
  }
  .nb-hero-placeholder-logo { display: none; }
  .nb-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5,7,10,0.05) 40%,
      rgba(5,7,10,0.75) 72%,
      rgba(5,7,10,0.96) 100%
    );
  }
  .nb-hero-content { padding: 0 16px 24px; }
  .nb-hero-title {
    font-size: clamp(30px, 10.5vw, 46px);
    margin-bottom: 16px;
  }
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.nb-marquee-wrap {
  overflow: hidden;
  background: var(--black);
  padding: 10px 0;
}
.nb-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: nb-marquee 30s linear infinite;
}
.nb-marquee-track span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 28px;
  flex-shrink: 0;
}
.nb-marquee-track .dot {
  color: var(--red);
  padding: 0 2px;
  letter-spacing: 0;
}
@keyframes nb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════ */
.nb-countdown-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nb-cd-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.nb-cd-units {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nb-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.nb-cd-num {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 40px);
  color: var(--black);
  line-height: 1;
}

.nb-cd-name {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nb-cd-sep {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 32px);
  color: var(--red);
  padding: 0 2px;
  margin-bottom: 14px;
  line-height: 1;
}

/* ═══════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════ */
.nb-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 24px 24px;
}

.nb-section-label-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.nb-kicker {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.nb-section-label h2 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
}

.nb-section-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}

/* ═══════════════════════════════════════
   PRODUCT GRID
═══════════════════════════════════════ */
.nb-shop {
  background: var(--bg);
  padding: 0 24px 64px;
}

.nb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.nb-product-card {
  background: var(--bg);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.nb-product-img-wrap {
  background: var(--bg2);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nb-product-img-wrap img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.5s ease;
  will-change: transform;
}

@media (hover: hover) {
  .nb-product-card:hover .nb-product-img-wrap img { transform: scale(1.04); }
}

.nb-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 9px;
  z-index: 1;
  pointer-events: none;
}
.nb-product-badge.red { background: var(--red); }

.nb-product-info {
  padding: 12px 2px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nb-product-collection-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.nb-product-name {
  font-family: var(--display);
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: 0.3px;
  color: var(--black);
  line-height: 1.1;
}

.nb-product-price {
  font-size: 12px;
  color: var(--black);
  margin-top: auto;
  opacity: 0.65;
}

.nb-product-price .strike {
  text-decoration: line-through;
  margin-right: 5px;
  opacity: 0.4;
}

.nb-product-price .save-tag {
  color: var(--red);
  font-size: 9px;
}

.nb-product-cta-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.nb-product-colors {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.nb-product-colors-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}

.nb-color-swatch {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.nb-color-swatch.active,
.nb-color-swatch:hover { border-color: var(--black); }
.nb-color-swatch.swatch-black { background: #14181C; }
.nb-color-swatch.swatch-red   { background: #C02026; }

.nb-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: var(--tap);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  transition: all 0.2s;
  cursor: pointer;
  flex: 1;
}

@media (hover: hover) {
  .nb-btn-buy:hover { background: transparent; color: var(--black); }
}

.nb-btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: var(--tap);
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

@media (hover: hover) {
  .nb-btn-view:hover { border-color: var(--black); }
}

@media (max-width: 900px) {
  .nb-product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nb-product-grid { grid-template-columns: 1fr !important; gap: 16px; }
}

@media (max-width: 560px) {
  .nb-product-img-wrap { aspect-ratio: 4 / 3; }
  .nb-product-name { font-size: 20px; }
  .nb-product-info { padding: 12px 0 24px; }
}

/* ═══════════════════════════════════════
   COLLECTIONS
═══════════════════════════════════════ */
.nb-collections {
  background: var(--white);
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nb-collections-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.nb-collections-list { display: flex; flex-direction: column; }

.nb-coll-item {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.5px;
  color: var(--border);
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--tap);
}
.nb-coll-item { border-top: 1px solid var(--border); }
.nb-coll-item + .nb-coll-item { border-top: none; }
.nb-coll-item.active, .nb-coll-item:hover { color: var(--black); }

.nb-coll-arrow {
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--red);
  flex-shrink: 0;
}
.nb-coll-item.active .nb-coll-arrow { opacity: 1; transform: translateX(0); }

.nb-collections-preview {
  aspect-ratio: 3 / 4;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}

.nb-coll-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nb-coll-preview-img.active { opacity: 1; }
.nb-coll-preview-img img { width: 90%; height: 90%; object-fit: contain; }

@media (max-width: 700px) {
  .nb-collections { padding: 52px 24px; }
  .nb-collections-inner { grid-template-columns: 1fr; gap: 0; }
  .nb-collections-preview { display: none; }
  .nb-coll-item { font-size: clamp(32px, 8vw, 48px); padding: 14px 0; }
  .nb-coll-item .nb-coll-arrow { opacity: 0.4; transform: none; }
  .nb-coll-item.active .nb-coll-arrow { opacity: 1; }
}
/* ═══════════════════════════════════════
   BRAND STATEMENT
═══════════════════════════════════════ */
.nb-statement {
  background: var(--black);
  color: var(--white);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nb-statement::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(72vw, 760px);
  aspect-ratio: 1 / 1;
  background: url('<?php echo get_stylesheet_directory_uri(); ?>/images/ix-logomark.png') center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.nb-statement-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.nb-statement-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.nb-statement-headline {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.nb-statement-headline .outline {
  color: var(--red);
}

.nb-statement-body {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  max-width: 480px;
  margin: 0 auto;
}

.nb-statement-pills {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.nb-pill {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0 18px;
  height: var(--tap);
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s;
}

@media (hover: hover) {
  .nb-pill:hover { border-color: var(--red); color: var(--white); }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.nb-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 24px 28px;
}

.nb-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nb-footer-links, .nb-footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nb-footer-links a, .nb-footer-right a {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  min-height: var(--tap);
  display: flex;
  align-items: center;
}
.nb-footer-links a:hover, .nb-footer-right a:hover { color: var(--white); }

.nb-footer-right { align-items: flex-end; }

.nb-footer-center { text-align: center; }

.nb-footer-logo {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.nb-footer-tagline {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 6px;
}

.nb-footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nb-footer-copy {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

@media (max-width: 600px) {
  .nb-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .nb-footer-right { align-items: center; }
  .nb-footer-links a, .nb-footer-right a { justify-content: center; }
  .nb-footer-bottom { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.nb-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
.nb-modal-overlay.open { display: flex; }

.nb-modal {
  background: var(--white);
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: nbSheetUp 0.3s ease;
}

@media (min-width: 640px) {
  .nb-modal-overlay { align-items: center; padding: 20px; }
  .nb-modal { max-height: 90vh; }
}

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

.nb-modal::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 3px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  z-index: 10;
}

@media (min-width: 640px) {
  .nb-modal::before { display: none; }
}

.nb-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: var(--tap); height: var(--tap);
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-family: var(--mono);
  transition: background 0.2s;
}
.nb-modal-close:hover { background: var(--red); }

.nb-modal-img-wrap {
  background: var(--bg2);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nb-modal-img-wrap img {
  width: 80%; height: 80%;
  object-fit: contain;
}

.nb-modal-body {
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.nb-modal-kicker {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 6px;
}
.nb-modal-title {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 28px);
  color: var(--black);
  margin-bottom: 4px; line-height: 1.05;
}
.nb-modal-price {
  font-size: 14px; color: var(--black);
  opacity: 0.65; margin-bottom: 14px;
}
.nb-modal-desc {
  font-size: 11px; color: #555;
  line-height: 1.9; margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nb-modal-features {
  list-style: none; margin-bottom: 20px;
}
.nb-modal-features li {
  font-size: 10px; color: #666;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid #f0eeeb;
  position: relative;
  line-height: 1.5;
}
.nb-modal-features li::before {
  content: '→'; position: absolute;
  left: 0; color: var(--red); font-size: 10px;
}

.nb-modal-section-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nb-modal-section-label .selected-val {
  color: var(--black);
  font-weight: 500;
}

.nb-modal-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.nb-modal-color-btn {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}

.nb-modal-color-btn.active { border-color: var(--black); }
.nb-modal-color-btn:hover  { border-color: rgba(20,24,28,0.4); }
.nb-modal-color-btn.swatch-black { background: #14181C; }
.nb-modal-color-btn.swatch-red   { background: #C02026; }

.nb-modal-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.nb-modal-size-btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--black);
  cursor: pointer;
  transition: all 0.15s;
  padding: 0 8px;
}

.nb-modal-size-btn:hover  { border-color: var(--black); }
.nb-modal-size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.nb-modal-size-btn.sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.nb-modal-qty-row {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  width: fit-content;
}

.nb-qty-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.nb-qty-btn:hover { background: var(--bg2); }

.nb-qty-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;color: var(--black);
  font-family: var(--mono);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nb-modal-error {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 1px;
  min-height: 16px;
  margin-bottom: 4px;
}

.nb-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.nb-modal-btn-cart {
  width: 100%;
  height: 48px;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.nb-modal-btn-cart:hover { background: var(--bg2); }
.nb-modal-btn-cart.added { background: var(--black); color: var(--white); }

.nb-modal-btn-buynow {
  width: 100%;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
}
.nb-modal-btn-buynow:hover { background: var(--red); color: var(--black); }

.nb-cart-count {
  position: absolute;
  top: 6px; right: 4px;
  width: 16px; height: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.nb-cart-count.visible { opacity: 1; }

@media (max-width: 600px) {
  .nb-modal { grid-template-columns: 1fr; }
  .nb-modal-img-wrap { min-height: 240px; }
  .nb-modal-body { padding: 24px 20px 32px; }
}

/* ═══════════════════════════════════════
   NAV RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 700px) {
  .nb-nav-left { display: none; }
  .nb-nav-icon.desktop-only { display: none; }
  .nb-nav-hamburger { display: flex; }
  .nb-nav { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.nb-fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nb-fade-up.in { opacity: 1; transform: translateY(0); }
.nb-fade-up.d1 { transition-delay: 0.08s; }
.nb-fade-up.d2 { transition-delay: 0.16s; }
.nb-fade-up.d3 { transition-delay: 0.24s; }

/* ═══════════════════════════════════════
   LAZY LOAD SKELETON
═══════════════════════════════════════ */
img[loading="lazy"] {
  background: var(--bg2);
  min-height: 1px;
}
.woocommerce-notices-wrapper {
  display: none;
}

/* ── HIDE WC NOTICES JS ERROR TEXT ─────────────────────────────────────────── */
.woocommerce-notices-wrapper:empty {
    display: none !important;
}

.woocommerce-cart .woocommerce > .woocommerce-error,
.woocommerce-checkout .woocommerce > .woocommerce-error {
    background: #0f1113 !important;
    color: #0f1113 !important;
    border: none !important;
    padding: 0 !important;
}
/* ── CHECKOUT: Placeholder Text Darker Grey ── */
.wc-block-components-text-input input::placeholder,
.wc-block-checkout input::placeholder {
  color: #555555 !important;
  opacity: 1 !important;
}

/* ── CHECKOUT: Delivery Option Buttons Visibility ── */
.wc-block-checkout__shipping-method-option {
  border: 2px solid rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.6) !important;
}

.wc-block-checkout__shipping-method-option--selected {
  border: 2px solid #C02026 !important;
  color: #ffffff !important;
}

.wc-block-checkout__shipping-method-option-title {
  color: inherit !important;
}

.wc-block-checkout__shipping-method-option-icon path {
  fill: currentColor !important;
}

.wc-block-checkout__shipping-method-option--selected {
  border: 2px solid #C02026 !important;
  color: #ffffff !important;
  background-color: rgba(255,255,255,0.08) !important;
}

/* ── CART PAGE: Hide pre-selected shipping method, show "Calculated at checkout" ── */
.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-shipping-rates-control,
.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address-button,
.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__via {
  display: none !important;
}

.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-item__value::after {
  content: 'Actual Shipping Calculated at Checkout';
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-item__value {
  font-size: 0 !important;
}
.wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-item__value::after {
  font-size: 10px;
}