/* ═══════════════════════════════════════════════════════════════
   NijerMoto — Main Stylesheet
   Dark Bengali POD store — bold, editorial, Durga aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --nj-red:       #E63946;
  --nj-red-dark:  #c62f3b;
  --nj-black:     #0f0f0f;
  --nj-dark:      #141414;
  --nj-card:      #1e1e1e;
  --nj-card2:     #252525;
  --nj-border:    #2e2e2e;
  --nj-text:      #e8e8e8;
  --nj-muted:     #777777;
  --nj-white:     #ffffff;
  --nj-gold:      #f5c518;
  --font-bn:      'Hind Siliguri', sans-serif;
  --font-en:      'Inter', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 20px rgba(0,0,0,.5);
  --shadow-red:   0 8px 32px rgba(230,57,70,.3);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #0f0f0f !important; }

body {
  background: #0f0f0f !important;
  color: var(--nj-text);
  font-family: var(--font-bn);
  line-height: 1.65;
  min-height: 100vh;
}

/* Force ALL Bootstrap components that can have white bg to dark */
.card, .card-body, .card-header, .card-footer,
.list-group-item, .table, th, td,
.modal-content, .offcanvas, .popover, .tooltip-inner,
.accordion-item, .accordion-button, .accordion-body,
.form-control, .form-select, .input-group-text,
.dropdown-menu, .nav-tabs .nav-link, .tab-content,
.badge, .alert, .progress, .progress-bar-bg,
.bs-tooltip-auto, .bs-popover-auto {
  background-color: var(--nj-card) !important;
  color: var(--nj-text) !important;
  border-color: var(--nj-border) !important;
}
/* Table overrides */
.table { --bs-table-bg: #1e1e1e; --bs-table-striped-bg: #252525; --bs-table-hover-bg: #222; }
.table-dark { --bs-table-bg: #141414; }
/* Form controls */
.form-control, .form-select { background-color: var(--nj-card) !important; color: var(--nj-text) !important; }
.form-control:focus, .form-select:focus { background-color: var(--nj-card) !important; color: var(--nj-white) !important; }

/* Override Bootstrap 5.3 dark theme variables — MUST beat [data-bs-theme="dark"] */
:root,
[data-bs-theme="dark"] {
  --bs-body-color:           #e8e8e8;
  --bs-body-color-rgb:       232,232,232;
  --bs-body-bg:              #0f0f0f;
  --bs-body-bg-rgb:          15,15,15;
  --bs-secondary-color:      rgba(232,232,232,.55);
  --bs-secondary-bg:         #1e1e1e;
  --bs-tertiary-bg:          #141414;
  --bs-heading-color:        #ffffff;
  --bs-border-color:         #2e2e2e;
  --bs-border-color-translucent: rgba(255,255,255,.09);
  --bs-link-color:           #E63946;
  --bs-link-hover-color:     #ff4d5a;
  --bs-emphasis-color:       #ffffff;
  --bs-card-bg:              #1e1e1e;
  --bs-card-border-color:    #2e2e2e;
  --bs-dropdown-bg:          #1a1a1a;
  --bs-dropdown-border-color:#2e2e2e;
  --bs-dropdown-link-color:  #e8e8e8;
  --bs-dropdown-link-hover-bg: rgba(255,255,255,.07);
  --bs-nav-link-color:       rgba(232,232,232,.8);
  --bs-navbar-color:         rgba(232,232,232,.8);
  --bs-navbar-bg:            rgba(15,15,15,.97);
  --bs-input-bg:             #1e1e1e;
  --bs-input-border-color:   #2e2e2e;
  --bs-input-color:          #e8e8e8;
  color-scheme: dark;
}

/* All headings white */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--nj-white);
}

a                 { color: var(--nj-red); text-decoration: none; }
a:hover           { color: #ff4d5a; }
img               { max-width: 100%; height: auto; }
.fw-600           { font-weight: 600 !important; }
.fw-700           { font-weight: 700 !important; }
.text-red         { color: var(--nj-red) !important; }
.text-gold        { color: var(--nj-gold) !important; }
.text-muted       { color: rgba(232,232,232,.5) !important; }
.section-pad      { padding: 48px 0; }
.section-pad-sm   { padding: 36px 0; }
.bg-nj-card       { background: var(--nj-card) !important; }
.nj-dark-section  { background: var(--nj-dark); }
/* Light section — how-it-works matching target design */
.nj-light-section { background: #f2f2f2 !important; }
.nj-light-section .nj-section-tag { color: var(--nj-red); }
/* White step cards with shadow for light section */
.nj-step-card-light {
  background: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.09) !important;
}
.nj-step-card-light:hover { border-color: transparent !important; box-shadow: 0 8px 32px rgba(230,57,70,.15) !important; }

/* ── Navbar ─────────────────────────────────────────────────── */
.nj-navbar {
  background: rgba(15,15,15,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nj-border);
  padding: 0.5rem 0;
  z-index: 1040;
}

.nj-brand .brand-text {
  font-family: var(--font-bn);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nj-white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.nj-brand .brand-accent { color: var(--nj-red); }
.nj-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--nj-muted);
  font-family: var(--font-bn);
  font-weight: 400;
}

.nj-navbar .nav-link {
  color: rgba(232,232,232,.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.7rem !important;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.nj-navbar .nav-link:hover,
.nj-navbar .nav-link.active {
  color: var(--nj-white) !important;
  background: rgba(255,255,255,.07);
}

/* Language toggle pill */
.nj-lang-toggle {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--nj-white) !important;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .2s;
}
.nj-lang-toggle:hover {
  background: var(--nj-red);
  border-color: var(--nj-red);
  color: #fff !important;
}

.nj-new-badge {
  background: var(--nj-red);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  font-family: var(--font-en);
  letter-spacing: 0.5px;
}

.nj-icon-btn {
  background: none;
  border: none;
  color: var(--nj-text);
  font-size: 1.15rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  position: relative;
}
.nj-icon-btn:hover { background: rgba(255,255,255,.08); color: var(--nj-white); }

.nj-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 17px; height: 17px;
  background: var(--nj-red);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
}

.nj-dropdown {
  background: #1a1a1a;
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  padding: 0.4rem;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.nj-dropdown .dropdown-item {
  color: var(--nj-text);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  transition: all .15s;
}
.nj-dropdown .dropdown-item:hover {
  background: rgba(255,255,255,.07);
  color: var(--nj-white);
}

/* Search bar */
.nj-search-bar {
  background: rgba(15,15,15,.98);
  border-top: 1px solid var(--nj-border);
}
.nj-search-input {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  color: var(--nj-text);
  border-radius: var(--radius);
  font-family: var(--font-bn);
}
.nj-search-input::placeholder { color: var(--nj-muted); }
.nj-search-input:focus {
  background: var(--nj-card);
  border-color: var(--nj-red);
  color: var(--nj-white);
  box-shadow: 0 0 0 3px rgba(230,57,70,.18);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn.nj-btn-primary, .nj-btn-primary {
  background: var(--nj-red);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-bn);
  transition: all .2s;
}
.btn.nj-btn-primary:hover, .nj-btn-primary:hover {
  background: var(--nj-red-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,.4);
}

.btn.nj-btn-outline, .nj-btn-outline {
  background: transparent;
  color: var(--nj-text);
  border: 1.5px solid rgba(232,232,232,.3);
  border-radius: var(--radius);
  font-weight: 500;
  font-family: var(--font-bn);
  transition: all .2s;
}
.btn.nj-btn-outline:hover, .nj-btn-outline:hover {
  border-color: var(--nj-red);
  color: var(--nj-red);
  background: rgba(230,57,70,.06);
}

.btn.nj-btn-dark {
  background: var(--nj-card);
  color: var(--nj-text);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  transition: all .2s;
}
.btn.nj-btn-dark:hover { background: var(--nj-border); color: var(--nj-white); }

/* SHOP NOW button (gold outline) */
.nj-btn-shop-now {
  background: transparent;
  border: 2px solid var(--nj-gold);
  color: var(--nj-gold);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  transition: all .2s;
}
.nj-btn-shop-now:hover {
  background: var(--nj-gold);
  color: #111;
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────────────────────────── */
.nj-hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  /* Warm dark Indian atmospheric gradient fallback */
  background:
    linear-gradient(110deg, #080808 0%, #0d0604 40%, #140b04 65%, #0a0808 100%);
}

.nj-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Overlay handled by inline div in home.php for precise control per page */
.nj-hero-bg::after { content: none; }

.nj-hero-glow {
  display: none; /* replaced by real hero photo */
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 85% 45%, rgba(200,100,20,.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.nj-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.nj-hero-tag {
  display: inline-block;
  background: rgba(230,57,70,.15);
  border: 1px solid rgba(230,57,70,.35);
  color: var(--nj-red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.nj-hero-title {
  font-family: var(--font-bn);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--nj-white);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.nj-hero-title .highlight { color: var(--nj-red); }

.nj-hero-sub {
  font-size: 1.05rem;
  color: rgba(232,232,232,.65);
  margin-bottom: 2rem;
}

.nj-hero-stats { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

.nj-hero-avatars { display: flex; }
.nj-hero-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #0f0f0f;
  margin-left: -8px;
  object-fit: cover;
}
.nj-hero-avatars img:first-child { margin-left: 0; }

/* Right side hero image */
.nj-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  align-self: flex-end;
}
.nj-hero-product-img {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* Fade out at top for seamless blend */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
                      linear-gradient(to left, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
              linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

.nj-hero-float-badge {
  position: absolute;
  bottom: 5%;
  left: -24px;
  background: rgba(20,20,20,.9);
  border: 1px solid var(--nj-border);
  border-radius: 100px;
  padding: 8px 18px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.nj-trust-bar {
  background: var(--nj-dark);
  border-top: 1px solid var(--nj-border);
  border-bottom: 1px solid var(--nj-border);
}
.nj-trust-item-wrap { border-right: 1px solid var(--nj-border); }
.nj-trust-item-wrap:last-child { border-right: none; }
.nj-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
}
.nj-trust-icon-wrap {
  width: 36px; height: 36px;
  background: rgba(230,57,70,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--nj-red);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.nj-trust-item .t-title { font-weight: 700; font-size: 0.8rem; color: var(--nj-white); font-family: var(--font-en); letter-spacing: .5px; }
.nj-trust-item .t-sub   { font-size: 0.73rem; color: var(--nj-muted); }

/* ── Section Headings ────────────────────────────────────────── */
.nj-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--nj-red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.nj-section-title {
  font-family: var(--font-bn);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--nj-white);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.nj-section-sub { color: rgba(232,232,232,.52); font-size: 0.95rem; }

/* ── How It Works ────────────────────────────────────────────── */
.nj-step-card {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.nj-step-card:hover { border-color: var(--nj-red); transform: translateY(-4px); }
.nj-step-card.selected,
.product-option-card.selected {
  border-color: var(--nj-red) !important;
  background: rgba(230,57,70,.08) !important;
  box-shadow: 0 0 0 2px rgba(230,57,70,.3);
}
.nj-step-card h6 { color: var(--nj-white) !important; font-weight: 700; }
.nj-step-card p  { color: rgba(232,232,232,.55) !important; }
.nj-step-num {
  width: 36px; height: 36px;
  background: var(--nj-red);
  color: white;
  font-weight: 700; font-size: .9rem;
  font-family: var(--font-en);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.nj-step-icon { font-size: 2rem; color: var(--nj-red); }

/* ── Drops ───────────────────────────────────────────────────── */
.nj-drops-section { background: var(--nj-dark); }

.nj-drop-slider { position: relative; }
.nj-drop-slide  { display: none; }
.nj-drop-slide.active { display: block; }

.nj-drop-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  display: flex; align-items: center;
  background: #0a0a0a;
}
.nj-drop-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45) saturate(1.2);
  transition: transform .6s;
}
.nj-drop-banner:hover .nj-drop-banner-bg { transform: scale(1.03); }
.nj-drop-banner-content {
  position: relative; z-index: 2;
  padding: 1.6rem 2rem;
}
.nj-drop-label {
  display: inline-block;
  background: var(--nj-red);
  color: white;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 0.75rem;
}
.nj-drop-title {
  font-family: var(--font-bn);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--nj-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.nj-drop-limit {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Slider arrows */
.nj-slide-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem;
  transition: all .2s;
}
.nj-slide-arrow:hover { background: var(--nj-red); border-color: var(--nj-red); }
.nj-slide-prev { left: 12px; }
.nj-slide-next { right: 12px; }

/* Slider dots */
.nj-drop-dots { display: flex; gap: 8px; }
.nj-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--nj-border);
  border: none; cursor: pointer;
  transition: all .25s;
}
.nj-dot.active { background: var(--nj-red); width: 20px; border-radius: 4px; }

/* ── Product Cards ───────────────────────────────────────────── */
.nj-product-card {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
}
.nj-product-card:hover {
  border-color: var(--nj-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.nj-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
}
.nj-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.nj-product-card:hover .nj-product-img img { transform: scale(1.06); }
.nj-product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--nj-red); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  font-family: var(--font-en);
}
.nj-product-wishlist {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.55); color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; font-size: 0.8rem;
  cursor: pointer; transition: all .2s;
}
.nj-product-wishlist:hover { background: var(--nj-red); }
/* Inline wishlist — sits in info row, bottom right */
.nj-product-wishlist-inline {
  background: transparent; border: none;
  color: var(--nj-muted); font-size: 0.85rem;
  padding: 0; line-height: 1;
  cursor: pointer; transition: color .2s;
  flex-shrink: 0;
}
.nj-product-wishlist-inline:hover { color: var(--nj-red); }
.nj-product-info { padding: 0.55rem 0.65rem; }
.nj-product-name {
  font-weight: 700; font-size: 0.82rem;
  color: var(--nj-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 0;
}
.nj-product-price {
  font-family: var(--font-en);
  font-weight: 700; font-size: 0.82rem;
  color: var(--nj-red);
}
.nj-product-old {
  font-size: 0.78rem; color: var(--nj-muted);
  text-decoration: line-through;
  font-family: var(--font-en);
}
.nj-link-all { color: var(--nj-muted); font-size: 0.85rem; transition: color .2s; }
.nj-link-all:hover { color: var(--nj-red); }

/* ── UGC ─────────────────────────────────────────────────────── */
.nj-ugc-wrap { background: transparent; }
.nj-ugc-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: #111;
}
.nj-ugc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.nj-ugc-card:hover img { transform: scale(1.06); }
.nj-ugc-overlay {
  position: absolute; inset: 0;
  background: rgba(230,57,70,.72);
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0;
  transition: opacity .3s;
}
.nj-ugc-card:hover .nj-ugc-overlay { opacity: 1; }
.nj-ugc-meta { padding: 0.35rem 0.1rem 0; }
.nj-ugc-handle { font-size: 0.7rem; color: var(--nj-muted); font-family: var(--font-en); }
.nj-ugc-stars { font-size: 0.6rem; color: var(--nj-gold); margin-top: 1px; }

/* ── Cart & Order ────────────────────────────────────────────── */
.nj-cart-item {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  padding: 1.2rem; display: flex; gap: 1rem; align-items: center;
}
.nj-cart-img { width: 75px; height: 75px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.nj-qty-control { display: flex; align-items: center; gap: 0.5rem; }
.nj-qty-btn {
  width: 28px; height: 28px;
  background: var(--nj-dark); border: 1px solid var(--nj-border);
  color: var(--nj-text); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.nj-qty-btn:hover { border-color: var(--nj-red); color: var(--nj-red); }
.nj-qty-val { min-width: 28px; text-align: center; font-weight: 600; font-family: var(--font-en); }

.nj-order-summary {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius); padding: 1.5rem;
}
.nj-summary-row {
  display: flex; justify-content: space-between;
  padding: 0.45rem 0; font-size: 0.92rem;
}
.nj-summary-row.total {
  border-top: 1px solid var(--nj-border);
  margin-top: 0.5rem; padding-top: 0.9rem;
  font-weight: 700; font-size: 1.05rem;
}

/* ── Forms ───────────────────────────────────────────────────── */
.nj-form-group { margin-bottom: 1.2rem; }
.nj-label { display: block; font-size: 0.83rem; font-weight: 500; color: var(--nj-muted); margin-bottom: 0.4rem; }
.nj-input {
  width: 100%;
  background: var(--nj-card);
  border: 1.5px solid var(--nj-border);
  color: var(--nj-text);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-bn);
  font-size: 0.95rem;
  transition: border-color .2s;
}
.nj-input:focus { outline: none; border-color: var(--nj-red); box-shadow: 0 0 0 3px rgba(230,57,70,.14); }
.nj-error-msg { color: var(--nj-red); font-size: 0.78rem; margin-top: 0.25rem; }

.nj-auth-card {
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 440px; width: 100%;
}
.nj-auth-wrap {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}

/* ── Product Detail ──────────────────────────────────────────── */
.nj-variant-btn {
  padding: 0.4rem 1rem;
  background: var(--nj-dark);
  border: 1.5px solid var(--nj-border);
  color: var(--nj-text);
  border-radius: var(--radius-sm);
  cursor: pointer; font-family: var(--font-en);
  font-weight: 500; font-size: 0.88rem;
  transition: all .15s;
}
.nj-variant-btn:hover, .nj-variant-btn.active {
  border-color: var(--nj-red);
  background: rgba(230,57,70,.1);
  color: var(--nj-white);
}
.nj-variant-btn.out-of-stock { opacity: 0.38; cursor: not-allowed; }
.nj-color-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer; transition: all .15s;
}
.nj-color-swatch.active { border-color: var(--nj-white); box-shadow: 0 0 0 3px var(--nj-red); }

/* ── Upload Drop Zone ────────────────────────────────────────── */
.nj-drop-zone {
  border: 2px dashed var(--nj-border);
  border-radius: var(--radius); padding: 3rem 2rem;
  text-align: center; cursor: pointer;
  transition: all .2s; background: var(--nj-card);
}
.nj-drop-zone:hover, .nj-drop-zone.drag-over {
  border-color: var(--nj-red);
  background: rgba(230,57,70,.04);
}
.nj-drop-zone i { font-size: 3rem; color: var(--nj-red); margin-bottom: 1rem; }

/* ── Status badges ───────────────────────────────────────────── */
.nj-status {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 600; gap: 5px;
}
.nj-status-pending    { background: rgba(255,193,7,.12);  color: #ffc107; }
.nj-status-confirmed  { background: rgba(13,202,240,.12); color: #0dcaf0; }
.nj-status-processing { background: rgba(102,16,242,.12); color: #9c5cf6; }
.nj-status-shipped    { background: rgba(13,110,253,.12); color: #5b9dff; }
.nj-status-delivered  { background: rgba(25,135,84,.12);  color: #1ab866; }
.nj-status-cancelled  { background: rgba(220,53,69,.12);  color: #ff6b75; }

/* ── Footer ──────────────────────────────────────────────────── */
.nj-footer {
  background: var(--nj-dark);
  border-top: 1px solid var(--nj-border);
}
.nj-footer h6          { color: var(--nj-white) !important; }
.nj-footer .fw-600     { color: var(--nj-text) !important; }
.nj-footer-links li    { margin-bottom: 0.5rem; }
.nj-footer-links a     { color: rgba(232,232,232,.45); font-size: 0.88rem; transition: color .15s; }
.nj-footer-links a:hover { color: var(--nj-red); }
.nj-trust-icon {
  width: 38px; height: 38px;
  background: rgba(230,57,70,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--nj-red); flex-shrink: 0;
}
.nj-social-link {
  width: 36px; height: 36px;
  background: var(--nj-card);
  border: 1px solid var(--nj-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nj-text); font-size: 1rem; transition: all .2s;
}
.nj-social-link:hover { background: var(--nj-red); border-color: var(--nj-red); color: white; }

/* ── Toast ───────────────────────────────────────────────────── */
.nj-toast {
  background: #1e1e1e;
  border: 1px solid var(--nj-border);
  color: var(--nj-text);
  border-radius: var(--radius-sm);
  min-width: 270px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nj-toast.success { border-left: 4px solid #1ab866; }
.nj-toast.error   { border-left: 4px solid var(--nj-red); }
.nj-toast.info    { border-left: 4px solid #0dcaf0; }

/* ── Footer Bottom Trust Bar ────────────────────────────────── */
.nj-footer-trust-bar {
  background: #ffffff;
  border-top: 2px solid #E63946;
}
.nj-ftb-item {
  padding: 1rem 1.25rem;
  border-right: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nj-ftb-item:last-child { border-right: none; }
.nj-ftb-icon {
  font-size: 1.6rem;
  color: var(--nj-red);
  flex-shrink: 0;
}
.nj-ftb-title {
  font-size: .83rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: .15rem;
  line-height: 1.2;
}
.nj-ftb-sub {
  font-size: .72rem;
  color: #666666;
  line-height: 1.3;
}

/* ── Footer copyright bar ────────────────────────────────────── */
.nj-footer-copyright {
  background: #0a0a0a;
  border-top: 1px solid var(--nj-border);
  padding: .75rem 0;
  font-size: .8rem;
  color: rgba(232,232,232,.45);
}

/* ── Step Card Arrow Colour ──────────────────────────────────── */
.text-red { color: var(--nj-red) !important; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--nj-dark); }
::-webkit-scrollbar-thumb { background: var(--nj-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .nj-hero-img-wrap { display: none !important; }
  .nj-hero { min-height: auto; }
}
@media (max-width: 767px) {
  .nj-hero-title { font-size: 2.6rem; }
  .section-pad { padding: 36px 0; }
  .nj-trust-item-wrap {
    border-right: none;
    border-bottom: 1px solid var(--nj-border);
  }
  .nj-drop-banner-content { padding: 1.5rem; }
  .nj-drop-title { font-size: 2rem; }
}

/* ── Social Pills (footer) ──────────────────────────────── */
.nj-social-bar {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.nj-social-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .7rem;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
    font-size: .78rem;
    text-decoration: none;
    transition: all .2s;
    width: fit-content;
}
.nj-social-pill i { font-size: 1rem; line-height: 1; }
.nj-social-pill:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; }
.nj-social-pill[href*="instagram"]:hover { border-color: #E1306C; color: #E1306C; }
.nj-social-pill[href*="youtube"]:hover   { border-color: #FF0000; color: #FF0000; }
.nj-social-pill[href*="wa.me"]:hover     { border-color: #25D366; color: #25D366; }

/* ── Blog Cards ─────────────────────────────────────────────────────── */
.nj-blog-card {
    display:block;
    background:var(--nj-card);
    border:1px solid var(--nj-border);
    border-radius:12px;
    overflow:hidden;
    transition:transform .2s,border-color .2s;
    height:100%;
}
.nj-blog-card:hover { transform:translateY(-4px); border-color:var(--nj-red); }
.nj-blog-thumb { position:relative;height:200px;overflow:hidden;background:#1a1a1a; }
.nj-blog-thumb img { width:100%;height:100%;object-fit:cover;transition:transform .3s; }
.nj-blog-card:hover .nj-blog-thumb img { transform:scale(1.04); }
.nj-blog-cat {
    position:absolute;top:.6rem;left:.6rem;
    background:var(--nj-red);color:#fff;font-size:.7rem;font-weight:600;
    padding:.2rem .6rem;border-radius:20px;
}
.nj-blog-body { padding:1rem 1.1rem 1.2rem; }
.nj-blog-title {
    color:#fff;font-weight:700;font-size:.95rem;
    line-height:1.4;margin-bottom:.5rem;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.nj-blog-excerpt { color:var(--nj-muted);font-size:.82rem;line-height:1.5;margin-bottom:.75rem; }
.nj-blog-meta { display:flex;align-items:center;justify-content:space-between;font-size:.78rem;color:var(--nj-muted); }
.nj-blog-read { color:var(--nj-red);font-weight:600; }

/* Blog post content */
.nj-blog-content { color:rgba(255,255,255,.85);font-size:1rem;line-height:1.85; }
.nj-blog-content h2 { color:#fff;font-size:1.5rem;font-weight:700;margin:2rem 0 .75rem;border-left:3px solid var(--nj-red);padding-left:.75rem; }
.nj-blog-content h3 { color:#fff;font-size:1.2rem;font-weight:600;margin:1.5rem 0 .5rem; }
.nj-blog-content ul { padding-left:1.5rem;margin:.75rem 0; }
.nj-blog-content li { margin-bottom:.4rem; }
.nj-blog-content strong { color:#fff;font-weight:700; }
.nj-blog-content a { color:var(--nj-red);text-decoration:none; }
.nj-blog-content a:hover { text-decoration:underline; }

/* ─── Mini Cart Popup (slide-in from right after add to cart) ──── */
.nj-mini-cart {
    position: fixed;
    top: 90px;
    right: 24px;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: linear-gradient(180deg, #1a1a1f 0%, #141417 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(230,57,70,.2);
    z-index: 1080;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
    overflow: hidden;
}
.nj-mini-cart.show { transform: translateX(0); opacity: 1; }

.nj-mini-cart-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    background: linear-gradient(90deg, rgba(34,197,94,.15) 0%, rgba(34,197,94,.05) 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #4ade80;
    font-weight: 600;
    font-size: .9rem;
}
.nj-mini-cart-header i { font-size: 1.1rem; }
.nj-mini-cart-header span { flex: 1; }
.nj-mini-cart-close {
    background: none;
    border: 0;
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 .25rem;
    transition: color .15s;
}
.nj-mini-cart-close:hover { color: #fff; }

.nj-mini-cart-body {
    display: flex;
    gap: .85rem;
    padding: 1rem;
    align-items: center;
}
.nj-mini-cart-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    flex-shrink: 0;
}
.nj-mini-cart-info { flex: 1; min-width: 0; }
.nj-mini-cart-name {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nj-mini-cart-meta {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
}

.nj-mini-cart-actions {
    display: flex;
    gap: .5rem;
    padding: .5rem 1rem 1rem;
}
.nj-mini-cart-btn {
    flex: 1;
    padding: .55rem .75rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: all .15s;
}
.nj-mini-cart-btn-secondary {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.9);
}
.nj-mini-cart-btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }
.nj-mini-cart-btn-primary {
    background: var(--nj-red, #E63946);
    color: #fff;
}
.nj-mini-cart-btn-primary:hover { background: #d72d3a; color: #fff; }

@media (max-width: 480px) {
    .nj-mini-cart { right: 16px; left: 16px; width: auto; top: 80px; }
}
