/*
 * ═══════════════════════════════════════════════════════════════
 *   BRATSGEN SHOP — MONOCHROME NOIR THEME
 *   Inspired by the black & white geometric logo.
 *   Pure contrast. Zero compromise.
 * ═══════════════════════════════════════════════════════════════
*/

/* ── 1. VARIABLES & COULEURS ── */
:root {
  --mono-white:     #FFFFFF;
  --mono-off-white: #E8E8E8;
  --mono-silver:    #B0B0B0;
  --mono-mid:       #606060;
  --mono-dark:      #1A1A1A;
  --mono-darker:    #0F0F0F;
  --mono-black:     #000000;
  --mono-glow:      rgba(255, 255, 255, 0.15);
  --mono-soft:      rgba(255, 255, 255, 0.06);
  --mono-border:    rgba(255, 255, 255, 0.12);
  --glass-bg:       rgba(8, 8, 8, 0.75);
  --glass-border:   rgba(255, 255, 255, 0.15);
  --sharp-glow:     0 0 20px rgba(255,255,255,0.12), 0 0 60px rgba(255,255,255,0.04);
}

/* ── 2. FOND GLOBAL NOIR ABSOLU ── */
body {
  background:
    radial-gradient(ellipse at 15% 0%,   #1c1c1c 0%, transparent 50%),
    radial-gradient(ellipse at 85% 5%,   #141414 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, #101010 0%, transparent 55%),
    radial-gradient(ellipse at 10% 60%,  #181818 0%, transparent 35%),
    radial-gradient(ellipse at 90% 45%,  #111111 0%, transparent 35%),
    #050505 !important;
  background-attachment: fixed !important;
  min-height: 100vh;
}

/* ── 3. CANVAS BACKGROUND ── */
#globalCanvas { opacity: 0.6; }

/* ── 4. SCROLLBAR MONOCHROME ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track {
  background: #080808;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555, #222, #888);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff, #aaa);
}

/* ── 5. SÉLECTION TEXTE ── */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-shadow: none;
}

/* ══════════════════════════════════════
   NAVBAR — FLOATING NOIR GLASS
══════════════════════════════════════ */
.navbar.component {
  background: rgba(6, 6, 6, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.06) inset !important;
  transition: all 0.4s ease !important;
}

.navbar.component:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
}

/* Brand name */
.navbar.component .navbar-brand {
  position: relative;
  font-weight: 800 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar.component .navbar-brand span,
.navbar.component .navbar-brand {
  background: linear-gradient(135deg, #fff 30%, #aaa 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

/* Nav links */
.navbar.component .navbar-nav.me-auto .nav-link {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.navbar.component .navbar-nav.me-auto .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.navbar.component .navbar-nav.me-auto .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.navbar.component .navbar-nav.me-auto .nav-link:hover::after,
.navbar.component .navbar-nav.me-auto .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar.component .navbar-nav.me-auto .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Cart badge */
.navbar.component .cart .count {
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 8px rgba(255,255,255,0.4) !important;
  font-weight: 800 !important;
}

/* Navbar icons/SVG */
.navbar.component .nav-link svg,
.navbar.component .btn svg {
  color: rgba(255,255,255,0.7) !important;
  stroke: rgba(255,255,255,0.7) !important;
}

/* Navbar outline buttons */
.navbar.component .btn-outline-primary {
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.navbar.component .btn-outline-primary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(255,255,255,0.1) !important;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════ */
.announcement.component {
  background: linear-gradient(90deg, #111, #333, #555, #333, #111) !important;
  background-size: 300% !important;
  animation: announcementFlow 8s ease infinite !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  font-size: 0.8rem !important;
  text-transform: uppercase;
}

@keyframes announcementFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════
   HERO SECTION — GEOMETRIC IMPACT
══════════════════════════════════════ */
.hero-discord-theme .hero-premium-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  padding: 6px 16px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(10px) !important;
  animation: badgePulse 4s ease-in-out infinite !important;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255,255,255,0.05); }
  50%       { box-shadow: 0 0 25px rgba(255,255,255,0.12); }
}

/* Hero gradient title */
.hero-discord-theme .hero-gradient-text,
.hero-discord-theme .hero-word-5.hero-gradient-text {
  background: linear-gradient(135deg, #fff 0%, #888 50%, #fff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.15));
}

/* Hero main title */
.hero-discord-theme .hero-main-title {
  font-weight: 900 !important;
  line-height: 1.0 !important;
  letter-spacing: -2px !important;
}

/* Hero subtitle */
.hero-discord-theme .hero-main-subtitle {
  color: rgba(255,255,255,0.5) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  max-width: 560px;
  letter-spacing: 0.3px;
}

/* Shop Now button */
.hero-discord-theme .hero-shop-btn,
.hero-discord-theme .hero-btn-shop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #fff !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #000 !important;
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.2),
    0 1px 0 rgba(255,255,255,0.5) inset !important;
  border-radius: 4px !important;
  padding: 14px 28px !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}

.hero-discord-theme .hero-shop-btn::before,
.hero-discord-theme .hero-btn-shop::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent) !important;
  transition: left 0.5s ease !important;
}

.hero-discord-theme .hero-shop-btn:hover::before,
.hero-discord-theme .hero-btn-shop:hover::before {
  left: 100% !important;
}

.hero-discord-theme .hero-shop-btn:hover,
.hero-discord-theme .hero-btn-shop:hover {
  box-shadow:
    0 8px 35px rgba(255, 255, 255, 0.35),
    0 1px 0 rgba(255,255,255,0.8) inset !important;
  transform: translateY(-3px) !important;
  background: #f0f0f0 !important;
}

/* Discord button */
.hero-discord-theme .hero-custom-discord-btn {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(10, 10, 10, 0.8) !important;
  border-radius: 4px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-discord-theme .hero-custom-discord-btn:hover {
  border-color: rgba(255,255,255,0.4) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.08) !important;
  transform: translateY(-2px) !important;
}

/* Stat cards */
.hero-discord-theme .hero-stat-card {
  background: rgba(10, 10, 10, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 6px !important;
  backdrop-filter: blur(12px) !important;
  padding: 16px 20px !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.hero-discord-theme .hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-discord-theme .hero-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-4px) !important;
}

/* Floating orbs — subtle white fog */
.hero-discord-theme .hero-orb-1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(200, 200, 200, 0.02), transparent 70%) !important;
  width: 32rem !important;
  height: 32rem !important;
  filter: blur(60px) !important;
}

.hero-discord-theme .hero-orb-2 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), rgba(150, 150, 150, 0.01), transparent 70%) !important;
  filter: blur(70px) !important;
}

.hero-discord-theme .hero-orb-3 {
  background: radial-gradient(circle, rgba(100, 100, 100, 0.1), rgba(50, 50, 50, 0.03), transparent 70%) !important;
  filter: blur(55px) !important;
}

/* Background overlay */
.hero-discord-theme .bg-overlay {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.04), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(200, 200, 200, 0.03), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(80, 80, 80, 0.06), transparent 60%) !important;
}

/* Marquee banner */
.hero-discord-theme .hero-marquee-banner {
  background: linear-gradient(90deg, #000, #222, #444, #222, #000) !important;
  background-size: 300% !important;
  animation: heroMarqueeScroll 60s linear infinite, marqueeGlow 4s ease-in-out infinite !important;
  box-shadow: 0 0 25px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

@keyframes marqueeGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.05); }
  50%       { box-shadow: 0 0 35px rgba(255, 255, 255, 0.12); }
}

/* ══════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════ */
h2, h3 {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.06);
  letter-spacing: -0.5px;
}

/* ══════════════════════════════════════
   PRODUCT CARDS — NOIR PREMIUM
══════════════════════════════════════ */
.card.product-card {
  background: rgba(10, 10, 10, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(12px) saturate(150%) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

.card.product-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
  z-index: 1 !important;
  transform: scaleX(0) !important;
  transition: transform 0.4s ease !important;
}

.card.product-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 4px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 50%) !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease !important;
  opacity: 0 !important;
}

.card.product-card:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 10px 40px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(255,255,255,0.02) !important;
  transform: translateY(-6px) !important;
  background: rgba(18, 18, 18, 0.98) !important;
}

.card.product-card:hover::before {
  transform: scaleX(1) !important;
}

.card.product-card:hover::after {
  opacity: 1 !important;
}

/* Product image container */
.card.product-card .card-img-top .product-img {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) !important;
  filter: grayscale(20%);
}

.card.product-card:hover .card-img-top .product-img {
  transform: scale(1.05) !important;
  filter: grayscale(0%);
}

/* Card body */
.card.product-card .card-body {
  padding: 16px 20px 20px !important;
}

/* Card title */
.card.product-card .card-title {
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.88) !important;
  margin-bottom: 10px !important;
  letter-spacing: 0.3px;
  transition: color 0.3s ease !important;
}

.card.product-card:hover .card-title {
  color: #fff !important;
}

/* Divider line in card */
.card.product-card .divider-line {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent) !important;
  margin: 10px 0 12px !important;
}

/* Price display */
.card.product-card .price,
.card.product-card [class*="price"] {
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  background: linear-gradient(135deg, #fff 20%, #aaa 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Stock info */
.card.product-card .in-stock {
  color: #aaa !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
}

.card.product-card .out-of-stock {
  color: rgba(255,100,100,0.75) !important;
  font-size: 0.78rem !important;
}

.card.product-card .stock-unlimited {
  color: #999 !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
}

/* Buy button on card */
.card.product-card .btn-primary,
.card.product-card [class*="add-to-cart"],
.card.product-card [class*="buy"] {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(255,255,255,0.12) !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.card.product-card .btn-primary:hover,
.card.product-card [class*="buy"]:hover {
  box-shadow: 0 8px 25px rgba(255,255,255,0.25) !important;
  transform: translateY(-2px) !important;
  background: #ebebeb !important;
}

/* Badges on cards */
.card.product-card .badges {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 2 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
}

.card.product-card .badge {
  border-radius: 2px !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  padding: 4px 8px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6) !important;
}

/* Placeholder image */
.card.product-card .product-img-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(100,100,100,0.02)) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 200px !important;
}

/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */
.features.component .feature-card,
.features.component [class*="feature-item"],
.features.component .card {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(10px) !important;
  padding: 28px 24px !important;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
  overflow: hidden;
}

.features.component .feature-card::before,
.features.component [class*="feature-item"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.features.component .feature-card:hover,
.features.component [class*="feature-item"]:hover,
.features.component .card:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 12px 40px rgba(255,255,255,0.05) !important;
  transform: translateY(-5px) !important;
  background: rgba(20, 20, 20, 0.95) !important;
}

.features.component .feature-card:hover::before,
.features.component [class*="feature-item"]:hover::before {
  transform: scaleX(1);
}

/* Feature icons */
.features.component .feature-icon,
.features.component [class*="icon"] {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  margin-bottom: 16px !important;
  transition: all 0.3s ease !important;
}

.features.component .feature-card:hover .feature-icon,
.features.component [class*="feature-item"]:hover [class*="icon"] {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.3) !important;
  transform: scale(1.05) !important;
}

/* ══════════════════════════════════════
   BOUTONS GLOBAUX
══════════════════════════════════════ */
.btn-primary {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.12) !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: #ebebeb !important;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12) !important;
}

/* Secondary buttons */
.btn-secondary,
.btn-outline-secondary {
  border-color: rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.65) !important;
  border-radius: 4px !important;
  transition: all 0.25s ease !important;
}

.btn-secondary:hover,
.btn-outline-secondary:hover {
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   GENERIC CARDS
══════════════════════════════════════ */
.card:not(.product-card) {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.35s ease !important;
}

.card:not(.product-card):hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-3px) !important;
}

/* ══════════════════════════════════════
   INPUTS & FORMS
══════════════════════════════════════ */
.form-control,
.form-select,
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  background: rgba(8, 8, 8, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
  color: rgba(255,255,255,0.9) !important;
  transition: all 0.25s ease !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.25) !important;
}

.form-control:focus,
input:focus:not([type="checkbox"]):not([type="radio"]),
textarea:focus,
select:focus {
  background: rgba(12, 12, 12, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 0 20px rgba(255,255,255,0.04) !important;
  outline: none !important;
}

/* Form labels */
.form-label,
label {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   BADGES & TAGS
══════════════════════════════════════ */
.badge:not([style*="background-color"]),
[class*="badge"]:not([style*="background-color"]) {
  background: #fff !important;
  color: #000 !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  border-radius: 2px !important;
}

/* ══════════════════════════════════════
   SECTION DIVIDERS
══════════════════════════════════════ */
hr, .divider {
  border: none !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), rgba(255,255,255,0.1), rgba(255,255,255,0.2), transparent) !important;
  margin: 2rem 0 !important;
}

/* ══════════════════════════════════════
   FOOTER — NOIR ABSOLU
══════════════════════════════════════ */
.footer-discord-theme {
  background: rgba(4, 4, 4, 0.98) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
}

.footer-discord-theme::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), rgba(255,255,255,0.4), rgba(255,255,255,0.2), transparent);
}

.footer-discord-theme .footer-bg-overlay {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.02), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(200, 200, 200, 0.015), transparent 50%) !important;
}

.footer-discord-theme .footer-gradient-line {
  background: linear-gradient(90deg, transparent, #555, #fff, #555, transparent) !important;
  height: 1px !important;
}

.footer-discord-theme .footer-column-title {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
}

.footer-discord-theme .footer-title-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255,255,255,0.15), transparent) !important;
  height: 1px !important;
  border-radius: 1px !important;
}

/* Footer CTA button */
.footer-discord-theme .footer-enhanced-discord-btn {
  background: #fff !important;
  color: #000 !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-discord-theme .footer-enhanced-discord-btn:hover {
  box-shadow: 0 8px 35px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  background: #ebebeb !important;
}

.footer-discord-theme .footer-support-icon,
.footer-discord-theme .footer-contact-icon,
.footer-discord-theme .footer-social-icon {
  color: rgba(255,255,255,0.6) !important;
}

.footer-discord-theme .footer-support-text:hover,
.footer-discord-theme .footer-contact-text:hover,
.footer-discord-theme .footer-nav-text:hover {
  color: #fff !important;
}

.footer-discord-theme .footer-support-underline,
.footer-discord-theme .footer-contact-underline,
.footer-discord-theme .footer-nav-underline {
  background: linear-gradient(90deg, #fff, #aaa) !important;
}

.footer-discord-theme .footer-copyright,
.footer-discord-theme [class*="copyright"] {
  color: rgba(255,255,255,0.2) !important;
  font-size: 0.78rem !important;
  letter-spacing: 1px;
}

.footer-discord-theme .footer-social-icon:hover {
  color: #fff !important;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
}

/* ══════════════════════════════════════
   MODALS — NOIR GLASS
══════════════════════════════════════ */
.modal-content {
  background: rgba(8, 8, 8, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  box-shadow:
    0 25px 80px rgba(0,0,0,0.95),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 60px rgba(255,255,255,0.03) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding: 20px 24px 16px !important;
}

.modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 16px 24px 20px !important;
}

.modal-title {
  font-weight: 800 !important;
  background: linear-gradient(135deg, #fff, #888) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: 1px;
}

.modal-backdrop {
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(8px) !important;
}

/* ══════════════════════════════════════
   ALERTS & NOTIFICATIONS
══════════════════════════════════════ */
.alert {
  border-radius: 4px !important;
  backdrop-filter: blur(10px) !important;
}

.alert-success {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ══════════════════════════════════════
   OVERRIDE TAILWIND TEAL/CYAN — TOUT EN NOIR
══════════════════════════════════════ */
.text-teal-500,
.text-teal-400,
.text-teal-600,
.text-cyan-500,
.text-cyan-400 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.bg-teal-500\/20,
.bg-teal-500\/10,
.bg-teal-400\/20,
.bg-cyan-500\/20,
.bg-cyan-400\/20 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.border-teal-500\/10,
.border-teal-500\/20,
.border-cyan-500\/10,
.border-cyan-400\/10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ══════════════════════════════════════
   OVERRIDE TAILWIND GREEN — TOUT EN NOIR
══════════════════════════════════════ */
.text-green-500,
.text-green-400,
.text-green-600 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.bg-green-500\/20,
.bg-green-500\/10,
.bg-green-400\/20,
.bg-green-600\/20 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.border-green-500\/10,
.border-green-500\/20,
.border-green-400\/10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Stock "in stock" vert → blanc */
.in-stock,
[class*="in-stock"],
[class*="instock"] {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Badges verts → blancs */
.badge.bg-green-500,
.badge[class*="green"] {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.08) !important;
  border-color: rgba(239,68,68,0.25) !important;
  color: #f87171 !important;
}

.alert-info {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.8) !important;
}

/* ══════════════════════════════════════
   TABLES
══════════════════════════════════════ */
.table {
  --bs-table-bg: transparent !important;
  --bs-table-striped-bg: rgba(255,255,255,0.02) !important;
  --bs-table-hover-bg: rgba(255,255,255,0.04) !important;
  --bs-table-border-color: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.75) !important;
}

.table th {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

/* ══════════════════════════════════════
   DROPDOWNS
══════════════════════════════════════ */
.dropdown-menu {
  background: rgba(8, 8, 8, 0.98) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(24px) !important;
  box-shadow: 0 15px 50px rgba(0,0,0,0.9), 0 0 30px rgba(255,255,255,0.03) !important;
  overflow: hidden !important;
}

.dropdown-item {
  color: rgba(255,255,255,0.65) !important;
  padding: 10px 16px !important;
  transition: all 0.2s ease !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   PAGINATION
══════════════════════════════════════ */
.page-link {
  background: rgba(10,10,10,0.9) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.6) !important;
  border-radius: 4px !important;
  margin: 0 2px !important;
  transition: all 0.25s ease !important;
}

.page-link:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.3) !important;
  color: #fff !important;
}

.page-item.active .page-link {
  background: #fff !important;
  color: #000 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2) !important;
  font-weight: 800 !important;
}

/* ══════════════════════════════════════
   ACCORDION / FAQ
══════════════════════════════════════ */
.accordion-item {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
  margin-bottom: 6px !important;
  overflow: hidden !important;
}

.accordion-button {
  background: rgba(10, 10, 10, 0.9) !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.3px;
}

.accordion-button:not(.collapsed) {
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1) !important;
}

.accordion-body {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.9rem !important;
  line-height: 1.8 !important;
}

/* ══════════════════════════════════════
   CUSTOMER SIDEBAR
══════════════════════════════════════ */
.customer-sidebar {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════
   FEEDBACK / REVIEW CARDS
══════════════════════════════════════ */
[class*="feedback-card"],
[class*="review-card"] {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

[class*="feedback-card"]:hover,
[class*="review-card"]:hover {
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 8px 25px rgba(255,255,255,0.04) !important;
  transform: translateY(-3px) !important;
}

/* Star ratings */
[class*="star"],
.fa-star {
  color: #fff !important;
}

/* ══════════════════════════════════════
   TITLES — CLEAN WHITE
══════════════════════════════════════ */
.section-title-gradient,
[class*="section-title"],
.products-title,
.features-title {
  background: linear-gradient(135deg, #fff 30%, #888 80%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ══════════════════════════════════════
   LOADING / SHIMMER SKELETON
══════════════════════════════════════ */
.skeleton,
[class*="loading"],
[class*="skeleton"] {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmerLoad 1.5s infinite !important;
  border-radius: 4px !important;
}

@keyframes shimmerLoad {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════
   CART PAGE
══════════════════════════════════════ */
[class*="cart"] .card,
[class*="cart-item"] {
  background: rgba(10, 10, 10, 0.85) !important;
  border-color: rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════
   STATUS PAGE
══════════════════════════════════════ */
[class*="status-card"],
.status-card {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════
   PRODUCT PAGE DETAIL
══════════════════════════════════════ */
.product-page .product-title,
[class*="product-page"] h1 {
  font-weight: 900 !important;
  background: linear-gradient(135deg, #fff 30%, #999 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ══════════════════════════════════════
   CTA COMPONENT
══════════════════════════════════════ */
.cta.component {
  position: relative;
  overflow: hidden;
}

.cta.component::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,200,200,0.02), transparent 60%);
  pointer-events: none;
}

/* ══════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar.component {
    left: 16px !important;
    right: 16px !important;
  }

  .hero-discord-theme .hero-main-title {
    font-size: clamp(2rem, 8vw, 4rem) !important;
  }

  .card.product-card {
    border-radius: 4px !important;
  }
}

/* ══════════════════════════════════════
   ANIMATED BORDER ON SPECIAL ELEMENTS
══════════════════════════════════════ */
.bratsgen-glow {
  position: relative;
}

.bratsgen-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #fff, #555, #222, #fff);
  background-size: 300% 300%;
  animation: borderGradientSpin 5s linear infinite;
  z-index: -1;
}

@keyframes borderGradientSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Global text-primary */
.text-primary {
  color: #fff !important;
}

/* Link styling */
a:not(.btn):not(.nav-link):not(.card):not([class*="btn"]) {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

a:not(.btn):not(.nav-link):not(.card):not([class*="btn"]):hover {
  color: #fff;
}
