/**
 * Theme: neolab (OpenCart / ocStore 3.0.x)
 * Aesthetic: Quiet Luxury & Modern Architectural Minimalism
 * Designed for Ukrainian Fashion E-commerce 2026 (ladydy.com.ua)
 * Zero external bloat - 100% native performance
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --nl-bg-main: #FFFFFF;
  --nl-bg-warm: #FAF6F1;
  --nl-bg-subtle: #F6F4F0;
  --nl-bg-card: #FAF8F5;
  --nl-border: #E8E5DF;
  --nl-border-light: #F0ECE6;
  --nl-border-dark: #1F1E1C;

  /* Typography Colors */
  --nl-text-main: #1F1E1C;
  --nl-text-secondary: #6B6864;
  --nl-text-muted: #9E9A94;
  --nl-text-white: #FFFFFF;

  /* Brand Accents & Statuses */
  --nl-terracotta: #A34E36;
  --nl-terracotta-bg: #FDF3F0;
  --nl-sage: #4E6051;
  --nl-sage-bg: #F1F5F2;
  --nl-gold: #B38E5B;
  --nl-success: #2E7D32;
  --nl-success-bg: #E8F5E9;
  --nl-mono-black: #000000;
  --nl-mono-paw: #FF3B30;

  /* Fonts */
  --nl-font-editorial: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --nl-font-body: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Geometry */
  --nl-radius: 0px; /* Strict 0px radius for luxury architectural geometry */
  --nl-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --nl-container-max: 1440px;
  --nl-header-height: 72px;
  --nl-topbar-height: 38px;
}

/* ==========================================================================
   2. BASE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  border-radius: var(--nl-radius) !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--nl-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--nl-text-main);
  background-color: var(--nl-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--nl-transition);
}

a:hover, a:focus {
  color: var(--nl-text-secondary);
  text-decoration: none;
}

h1, h2, h3, .nl-editorial-title {
  font-family: var(--nl-font-editorial);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--nl-text-main);
  margin-top: 0;
}

h4, h5, h6 {
  font-family: var(--nl-font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: var(--nl-radius) !important;
}

/* ==========================================================================
   3. ANNOUNCEMENT TOP BAR (PROMO STRIP)
   ========================================================================== */
.nl-topbar {
  background-color: var(--nl-text-main);
  color: var(--nl-text-white);
  font-size: 12px;
  letter-spacing: 0.05em;
  height: var(--nl-topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
  z-index: 101;
  text-transform: uppercase;
}

.nl-topbar-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-topbar-badge {
  background-color: var(--nl-terracotta);
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nl-topbar-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   4. SITE HEADER & NAVIGATION
   ========================================================================== */
.nl-header {
  background-color: var(--nl-bg-main);
  border-bottom: 1px solid var(--nl-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--nl-transition);
}

.nl-header-inner {
  max-width: var(--nl-container-max);
  margin: 0 auto;
  height: var(--nl-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Header Left / Mobile Toggle */
.nl-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nl-burger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
}

.nl-burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nl-burger-icon span {
  display: block;
  height: 1.5px;
  background-color: var(--nl-text-main);
  transition: var(--nl-transition);
}

/* Brand Logo */
.nl-logo {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-logo a {
  font-family: var(--nl-font-editorial);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--nl-text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nl-logo img {
  max-height: 44px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  vertical-align: middle;
  mix-blend-mode: multiply;
  transition: var(--nl-transition);
}

@media (max-width: 768px) {
  .nl-logo img {
    max-height: 32px;
    max-width: 150px;
  }
  .nl-logo a {
    font-size: 26px;
  }
}

/* Navigation Menu */
.nl-nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-nav-item a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nl-text-main);
  padding: 10px 0;
  position: relative;
}

.nl-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--nl-text-main);
  transition: var(--nl-transition);
}

.nl-nav-item:hover a::after {
  width: 100%;
}

/* Header Right / User Actions */
.nl-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.nl-header-action {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--nl-text-main);
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--nl-transition);
}

.nl-header-action svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.nl-action-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--nl-text-main);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
}

/* ==========================================================================
   5. SLIDE-IN CART DRAWER (AJAX SIDE CART)
   ========================================================================== */
.nl-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--nl-transition);
}

.nl-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nl-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background-color: var(--nl-bg-main);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}

.nl-drawer.active {
  right: 0;
}

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

.nl-drawer-title {
  font-family: var(--nl-font-editorial);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nl-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--nl-text-main);
}

/* Free Shipping Progress Bar */
.nl-shipping-bar {
  padding: 16px 24px;
  background-color: var(--nl-bg-warm);
  border-bottom: 1px solid var(--nl-border);
}

.nl-shipping-text {
  font-size: 13px;
  color: var(--nl-text-main);
  margin-bottom: 8px;
  font-weight: 500;
}

.nl-shipping-progress {
  width: 100%;
  height: 5px;
  background-color: var(--nl-border);
  position: relative;
  overflow: hidden;
}

.nl-shipping-progress-fill {
  height: 100%;
  background-color: var(--nl-success);
  width: 0%;
  transition: width 0.4s ease;
}

/* Drawer Cart Items */
.nl-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.nl-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--nl-border-light);
}

.nl-cart-item-img {
  aspect-ratio: 2/3;
  object-fit: cover;
  background-color: var(--nl-bg-subtle);
}

.nl-cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nl-cart-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.nl-cart-item-option {
  font-size: 12px;
  color: var(--nl-text-secondary);
  margin-bottom: 8px;
}

.nl-cart-item-price {
  font-size: 14px;
  font-weight: 600;
}

.nl-qty-picker {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--nl-border);
  height: 32px;
  width: fit-content;
}

.nl-qty-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--nl-text-main);
}

.nl-qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.nl-cart-item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--nl-text-muted);
  padding: 4px;
  align-self: flex-start;
}

.nl-cart-item-remove:hover {
  color: var(--nl-terracotta);
}

/* Drawer Footer */
.nl-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--nl-border);
  background-color: var(--nl-bg-main);
}

.nl-drawer-totals {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.nl-btn-checkout {
  display: block;
  width: 100%;
  background-color: var(--nl-text-main);
  color: var(--nl-text-white);
  border: 1px solid var(--nl-text-main);
  padding: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--nl-transition);
}

.nl-btn-checkout:hover {
  background-color: #000;
  color: #fff;
}

/* ==========================================================================
   6. CATALOG & PRODUCT CARD (PLP)
   ========================================================================== */
.nl-catalog-container {
  max-width: var(--nl-container-max);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* Subcollection Visual Pills */
.nl-subcollections {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.nl-subcollections::-webkit-scrollbar { display: none; }

.nl-subcollection-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 8px;
  background-color: var(--nl-bg-warm);
  border: 1px solid var(--nl-border);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--nl-text-main);
  transition: var(--nl-transition);
}

.nl-subcollection-pill:hover,
.nl-subcollection-pill.active {
  background-color: var(--nl-text-main);
  color: var(--nl-text-white);
  border-color: var(--nl-text-main);
}

.nl-pill-thumb {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

/* Active Filter Chips & Bar */
.nl-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--nl-border);
  border-bottom: 1px solid var(--nl-border);
  margin-bottom: 28px;
}

.nl-filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background-color: var(--nl-bg-subtle);
  border: 1px solid var(--nl-border);
  font-size: 12px;
  font-weight: 500;
}

.nl-chip-remove {
  cursor: pointer;
  color: var(--nl-text-muted);
}
.nl-chip-remove:hover { color: var(--nl-text-main); }

/* Grid Switcher (DISSH Style) */
.nl-grid-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nl-grid-btn {
  background: transparent;
  border: 1px solid var(--nl-border);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--nl-text-secondary);
}

.nl-grid-btn.active {
  background-color: var(--nl-text-main);
  color: #fff;
  border-color: var(--nl-text-main);
}

/* Product Grid */
.nl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}

.nl-products-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nl-products-grid.grid-cols-1 { grid-template-columns: 1fr; }

/* Product Card */
.nl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nl-card-media {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background-color: var(--nl-bg-subtle);
  margin-bottom: 14px;
}

.nl-card-img-primary,
.nl-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.nl-card-img-hover {
  opacity: 0;
}

.nl-product-card:hover .nl-card-img-hover {
  opacity: 1;
}

/* Status Badges */
.nl-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.nl-badge {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nl-badge-sale { background-color: var(--nl-terracotta); color: #fff; }
.nl-badge-new { background-color: var(--nl-text-main); color: #fff; }
.nl-badge-preorder { background-color: var(--nl-sage); color: #fff; }

/* Model Measurement Bubble (BÁZHANE style) */
.nl-model-bubble {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--nl-text-main);
  z-index: 2;
}

/* 1-Click Quick Size Selector Overlay (KAPSULA style) */
.nl-card-sizes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  padding: 10px 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  transform: translateY(100%);
  opacity: 0;
  transition: var(--nl-transition);
  z-index: 3;
}

.nl-product-card:hover .nl-card-sizes {
  transform: translateY(0);
  opacity: 1;
}

.nl-size-btn {
  background: transparent;
  border: 1px solid var(--nl-border-dark);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  min-width: 32px;
  text-align: center;
  transition: var(--nl-transition);
}

.nl-size-btn:hover {
  background-color: var(--nl-text-main);
  color: #fff;
}

/* Color Swatches (Alo Yoga style) */
.nl-color-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.nl-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid var(--nl-border);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.nl-swatch.active {
  box-shadow: 0 0 0 1.5px var(--nl-text-main);
}

/* Card Info & D2C Pricing */
.nl-card-info {
  display: flex;
  flex-direction: column;
}

.nl-card-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.35;
  color: var(--nl-text-main);
}

.nl-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-price-main {
  font-size: 15px;
  font-weight: 700;
  color: var(--nl-text-main);
}

.nl-price-retail {
  font-size: 12px;
  color: var(--nl-text-muted);
  text-decoration: line-through;
}

.nl-price-saving {
  font-size: 11px;
  color: var(--nl-terracotta);
  font-weight: 600;
}

/* ==========================================================================
   7. PRODUCT DETAIL PAGE (PDP)
   ========================================================================== */
.nl-pdp-container {
  max-width: var(--nl-container-max);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nl-pdp-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

/* Left Gallery */
.nl-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nl-pdp-gallery-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  background-color: var(--nl-bg-subtle);
}

/* Sticky Right Column */
.nl-pdp-summary {
  position: sticky;
  top: calc(var(--nl-header-height) + 24px);
  display: flex;
  flex-direction: column;
}

.nl-pdp-title {
  font-family: var(--nl-font-editorial);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* PDP Price & Monobank installment */
.nl-pdp-price-box {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--nl-border);
}

.nl-pdp-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nl-parts-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--nl-text-secondary);
}

.nl-paw-icon {
  width: 16px;
  height: 16px;
  background-color: var(--nl-mono-paw);
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

/* Fit Scale (DISSH Style) */
.nl-fit-scale {
  background-color: var(--nl-bg-warm);
  padding: 16px;
  border: 1px solid var(--nl-border);
  margin-bottom: 24px;
}

.nl-fit-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.nl-fit-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  position: relative;
  margin-bottom: 8px;
}

.nl-fit-segment {
  height: 4px;
  background-color: var(--nl-border);
}

.nl-fit-segment.active {
  background-color: var(--nl-text-main);
}

.nl-fit-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--nl-text-secondary);
}

/* Stylist Note (Sézane Style) */
.nl-stylist-box {
  border-left: 2px solid var(--nl-text-main);
  padding: 10px 14px;
  background-color: var(--nl-bg-subtle);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--nl-text-secondary);
}

/* Options (Sizes, Height/Torso) */
.nl-option-group {
  margin-bottom: 20px;
}

.nl-option-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.nl-size-guide-btn {
  color: var(--nl-text-secondary);
  text-decoration: underline;
  cursor: pointer;
}

.nl-pills-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-pill-option {
  border: 1px solid var(--nl-border);
  background: var(--nl-bg-main);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--nl-transition);
}

.nl-pill-option:hover,
.nl-pill-option.active {
  border-color: var(--nl-text-main);
  background-color: var(--nl-text-main);
  color: #fff;
}

/* Scarcity Trigger (Farfetch Style) */
.nl-scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nl-terracotta);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.nl-scarcity-dot {
  width: 6px;
  height: 6px;
  background-color: var(--nl-terracotta);
  border-radius: 50% !important;
  animation: nlPulse 1.5s infinite;
}

@keyframes nlPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Dual CTA (SOLMAR Style) */
.nl-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.nl-btn-add-to-cart {
  background-color: var(--nl-text-main);
  color: #fff;
  border: 1px solid var(--nl-text-main);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--nl-transition);
}

.nl-btn-add-to-cart:hover {
  background-color: #000;
}

.nl-btn-quick-buy {
  background-color: transparent;
  color: var(--nl-text-main);
  border: 1px solid var(--nl-text-main);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--nl-transition);
}

.nl-btn-quick-buy:hover {
  background-color: var(--nl-bg-warm);
}

/* Sticky Mobile Buy Bar */
.nl-sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--nl-bg-main);
  border-top: 1px solid var(--nl-border);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.nl-sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.nl-sticky-bar-thumb {
  width: 42px;
  height: 54px;
  object-fit: cover;
}

.nl-sticky-bar-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.nl-sticky-bar-price {
  font-size: 13px;
  font-weight: 700;
}

/* Accordions */
.nl-accordion-item {
  border-bottom: 1px solid var(--nl-border);
}

.nl-accordion-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nl-text-main);
  cursor: pointer;
}

.nl-accordion-content {
  display: none;
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--nl-text-secondary);
  line-height: 1.6;
}

.nl-accordion-content.active {
  display: block;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.nl-footer {
  background-color: var(--nl-bg-warm);
  border-top: 1px solid var(--nl-border);
  padding: 64px 24px 32px;
}

.nl-footer-inner {
  max-width: var(--nl-container-max);
  margin: 0 auto;
}

.nl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.nl-footer-brand h3 {
  font-family: var(--nl-font-editorial);
  font-size: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.nl-footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nl-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-footer-links a {
  font-size: 13px;
  color: var(--nl-text-secondary);
}
.nl-footer-links a:hover { color: var(--nl-text-main); }

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

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .nl-burger-btn { display: block; }
  .nl-nav-desktop { display: none; }
  .nl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .nl-pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .nl-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nl-sticky-buy-bar { display: flex; }
}

@media (max-width: 576px) {
  .nl-header-inner { padding: 0 16px; }
  .nl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .nl-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nl-drawer { max-width: 100%; }
}
