/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/


html {
  scroll-behavior: smooth;
}

::selection {
  background: #2ebdff;
  color: #03101c;
  text-shadow: none;
}

.component-not-found {
  display: none !important;
}

/* Links hover Effekt */
.navbar a,
.navbar-brand {
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #be32ff !important;
}


/* --- Fix for modal transparency --- */
.modal-content {
  background: rgba(8, 8, 8, 0.838) !important;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(205, 118, 19, 0.1);
  color: #eaeaea;
}

.modal-backdrop.show {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.85);
}





@keyframes navbarEnter {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   MOBILE FIXES (FULL PACKAGE)
   ============================================================ */

/* -----------------------------------------
   1) Navbar fix — more padding and stacking
------------------------------------------ */
@media (max-width: 768px) {
  .navbar,
  header,
  .cn-products-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* -----------------------------------------
   2) Shop header stacks vertically
------------------------------------------ */
@media (max-width: 768px) {
  .cn-shop-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .cn-shop-badges {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
    gap: 8px;
  }

  .cn-shop-left {
    width: 100%;
    justify-content: flex-start;
  }

  .cn-shop-title {
    font-size: 1.9rem !important;
  }
}

/* -----------------------------------------
   3) Filter bar — center & wrap
------------------------------------------ */
@media (max-width: 768px) {
  .cn-filterbar {
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px 16px !important;
  }

  .cn-filter-group {
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cn-filter {
    padding: 8px 18px !important;
    font-size: 0.9rem;
  }
}

/* -----------------------------------------
   4) GRID — always correct alignment
------------------------------------------ */
@media (max-width: 992px) {
  .cn-products-grid {
    row-gap: 22px;
  }
}

/* Mobile: 2 columns -> 1 column */
@media (max-width: 576px) {
  .cn-products-grid .col-12,
  .cn-product-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* -----------------------------------------
   5) Product cards — prevent overflow
------------------------------------------ */
@media (max-width: 576px) {
  .cn-product-card {
    border-radius: 18px !important;
  }

  .cn-product-media img {
    height: 220px !important;
    object-fit: cover !important;
  }

  .cn-product-card-inner {
    padding: 12px !important;
  }

  .cn-product-title {
    font-size: 0.95rem !important;
  }
}

/* -----------------------------------------
   6) Modals — fix inner grid
------------------------------------------ */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 96% !important;
    margin: 0 auto;
  }

  .modal-body .cn-products-grid .col-12 {
    padding: 0 !important;
  }
}

/* === Product Card Glow Effect === */
.product-card-glow {
  border-radius: 1.25rem;
  border: 1.5px solid rgba(162, 0, 255, 0.12);
  background: linear-gradient(145deg, rgba(183, 0, 255, 0.06), rgba(140, 0, 255, 0.02));
  box-shadow: 0 4px 28px rgba(178, 1, 248, 0.12);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.product-card-glow:hover {
  border: 1.5px solid #9900ff;
  box-shadow: 0 0 12px #ac00fc66, 0 2px 18px #5f02ca22;
  transform: translateY(-3px) scale(1.015);
}


/* Optional subtle animation on image */
.products .card .card-img-top img {
  transition: transform 0.3s ease;
}

.products .card:hover .card-img-top img {
  transform: scale(1.03);
}

.footer-glow {
  background: rgba(0, 0, 0, 0.514);
  box-shadow:
    0 0 25px rgba(44, 44, 44, 0.25),
    0 0 60px rgba(39, 39, 39, 0.15),
    0 0 120px rgba(37, 37, 37, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

  /* === PAGE STATUS STYLE === */
  .status-section {
    background: #2a2a2b;
    color: #fff;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
  }

  /* quadrillage en arrière-plan */


  h1, h2, h3 {
  text-align: center !important;
}

  .status-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
  }

  .status-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-title {
  text-align: center;
  width: 100%;
}

  .status-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center; /* force */
}

.section-title p {
  font-size: 1.2rem;
  color: #aaa;
  text-align: center; /* force */
}

  .status-header p {
    font-size: 1rem;
    color: #aaa;
  }

  .status-badge {
    display: inline-block;
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
  }

  /* === CARDS TOP === */
  .status-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .status-card {
  background: #2f2f3021;
  border-radius: 1rem;
  padding: 1.5rem; /* plus grand padding */
  min-height: 120px; /* hauteur minimum plus grande */
  font-size: 1.2rem; /* texte un peu plus gros */
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

  .status-card:hover {
  border: 1px solid #a855f7; /* violet premium */
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.7);
  transform: translateY(-5px);
}

  .status-card h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 0.5rem;
  }

  .status-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .status-card .desc {
    font-size: 0.9rem;
    color: #888;
  }

  
/* Hover effet premium */
.status-card:hover {
  border: 1px solid #a855f7;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
  transform: translateY(-8px) scale(1.02); /* zoom léger */
}
/* === STATUS GROUP === */
.status-group {
  margin-bottom: 2rem;
}

.status-group h2 {
  text-align: left;
  border-left: 4px solid #a855f7;
  padding-left: 0.75rem;
}

  /* couleurs différentes pour chaque */
  .status-card.green .value { color: #22c55e; }
  .status-card.blue .value { color: #3b82f6; }
  .status-card.purple .value { color: #a855f7; }
  .status-card.teal .value { color: #14b8a6; }

  /* === LISTE PRODUITS === */
  .product-status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-radius: 0.75rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .product-info {
    display: flex;
    flex-direction: column;
  }

  .product-info strong {
    font-size: 1rem;
    font-weight: 600;
  }

  .product-info span {
    font-size: 0.9rem;
    color: #aaa;
  }

  .product-status .status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 8px;
  }

  .product-status .online {
    display: flex;
    align-items: center;
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .product-status button {
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
  }

  .product-status button:hover {
    background: #16a34a;
  }

/* Product Form */

.variant {
  position: relative;
  background: linear-gradient(145deg, #272727, #121213);
  border: 2px solid transparent;
  background-clip: padding-box;
  color: white;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(52, 53, 53, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  text-align: left;
}

.variant::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(90deg, #4545462a, #4141417e, #4545462a);
  z-index: -1;
  border-radius: 16px;
  background-size: 200% 200%;
  animation: borderGlow 4s linear infinite;
}

.variant:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(75, 75, 75, 0.6);
}

.variant:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

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

/* Feedback Card */

.feedback-card-glow {
  position: relative;
  border-radius: 1.25rem;
  border: 1.5px solid rgba(49, 49, 49, 0.12);
  background: linear-gradient(145deg, rgba(54, 54, 54, 0.05), rgba(49, 49, 49, 0.02));
  box-shadow: 0 4px 28px rgba(51, 51, 51, 0.12);
  overflow: hidden;
  transition: all 0.25s ease;
}

.feedback-card-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #2e2e2e2a, #3b3b3b7e, #2525252a);
  z-index: -1;
  border-radius: 16px;
  background-size: 200% 200%;
  animation: borderGlow 4s linear infinite;
}

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

/* Test */

.product-card {
  position: relative;
  width: 230px;
  height: 420px;
  border-radius: 1.3rem;
  overflow: hidden;
  background: #121212;
  box-shadow: 0 0 18px 2px rgba(132, 0, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.8px solid #8a01fa2f;
}

.product-card:hover {
  transform: scale(1.035);
  box-shadow: 0 0 28px 4px rgba(153, 0, 255, 0.5);
}

.product-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.05);
  z-index: 0;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  text-align: center;
}

.product-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.product-price {
  color: #aaa;
  font-size: 0.85rem;
}

.price {
  color: #00ff90;
  font-weight: bold;
  font-size: 0.9rem;
  background: rgba(0, 255, 120, 0.13);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-left: 0.3rem;
}

/* Custom BG */

.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -10;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff7e, #ffffff7e, #ffffff7e);
  background-size: 200% 200%;
  animation: borderGlow 6s linear infinite;
}


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

/* 3D Product Cards */

.product-card-glow {
  transition: transform 0.3s ease;
  will-change: transform;
}

.product-card-glow:hover {
  animation: rotate360 0.3s ease;
}

@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}


/* === ANIMATIONS === */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes textFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(0.8); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes welcomeSequence {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    10% {
        opacity: 1;
        visibility: visible;
    }
    90% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes contentSlideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

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

@keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0px); }
}

@keyframes dividerExpand {
    0% { width: 0px; opacity: 0; }
    100% { width: 200px; opacity: 1; }
}

@keyframes badgeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* === PREMIUM DARK PURPLE BUTTONS === */
.btn-gradient-blue {
    background: linear-gradient(135deg, #511eaf 0%, #923bf6 100%) !important;
    border: 1px solid rgba(115, 59, 246, 0.3) !important;
    color: white !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    box-shadow: 
        0 4px 20px rgba(86, 30, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-gradient-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient-blue:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(98, 30, 175, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #7b25eb 0%, #841dd8 100%) !important;
    border-color: rgba(131, 59, 246, 0.5) !important;
}

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

/* === PREMIUM TEXT GRADIENT === */
.text-gradient-blue {
    background: linear-gradient(135deg, #691eaf 0%, #923bf6 50%, #b206d4 100%) !important;
    background-size: 200% 200%;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 700;
    animation: textGradientShift 3s ease-in-out infinite;
}

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


/* === PREMIUM SOCIAL LINKS === */
.socials .social {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, rgba(69, 30, 175, 0.8), rgba(171, 59, 246, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(171, 59, 246, 0.2);
    box-shadow: 
        0 4px 20px rgba(110, 30, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.socials .social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 37, 235, 0.8), rgba(179, 29, 216, 0.8));
    z-index: 0;
    transition: all 0.4s ease;
    opacity: 0;
}

.socials .social:hover::before {
    opacity: 1;
}

.socials .social:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(122, 30, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socials .social span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.socials .social .left svg,
.socials .social .right svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.socials .social .left svg {
    fill: white;
}

.socials .social .right svg {
    stroke: white;
}

.socials .social:hover .left svg {
    fill: #dbeafe;
    transform: scale(1.1);
}

.socials .social:hover .right svg {
    stroke: #dbeafe;
    transform: scale(1.1);
}

/* === PREMIUM CARDS === */
.card {
    background: rgba(21, 21, 21, 0.8) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(178, 59, 246, 0.1) !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 50px rgba(129, 30, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(193, 59, 246, 0.3) !important;
}

/* === PREMIUM FORM ELEMENTS === */
.form-control {
    background: rgba(32, 15, 42, 0.8) !important;
    border: 1px solid rgba(202, 59, 246, 0.2) !important;
    border-radius: 12px !important;
    color: #f1f5f9 !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    background: rgba(32, 15, 42, 0.9) !important;
    border-color: #923bf6 !important;
    box-shadow: 0 0 0 0.2rem rgba(187, 59, 246, 0.25) !important;
    inset: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* === PREMIUM MODAL === */
.modal-content {
    background: rgba(15, 2, 23, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 72, 246, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    #loading-screen h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .progress-container {
        width: 300px;
        height: 5px;
    }
    .welcome-title {
        font-size: 2.5rem;
    }
    .welcome-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #loading-screen h1 {
        font-size: 2rem;
    }
    .progress-container {
        width: 250px;
        height: 4px;
    }
    .welcome-title {
        font-size: 2rem;
    }
    .welcome-subtitle {
        font-size: 1rem;
    }
    .welcome-divider {
        width: 150px;
    }
}







.grid-bg-true-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background-color: #0b0f1a;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px),
    linear-gradient(to bottom,
      #0b0f1a 0%,
      #0d1524 30%,
      rgba(162, 0, 255, 0.342) 60%,
      #030000f6 100%
    );
  background-size: 32px 32px, 32px 32px, 100% 100%;
  background-repeat: repeat, repeat, no-repeat;
  background-position: top left, top left, top;
  animation: grid-gradient-slide 60s linear infinite;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255,255,255, 0.05));
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255,255,255, 0.05));
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}


.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #b700ff, #ea47ff);
  color: #fff;
  backdrop-filter: blur(12px);
  background-blend-mode: overlay;
  opacity: 0.9;
  box-shadow: 0 0 18px rgba(162, 0, 255, 0.25);
  transition: all 0.4s ease;
}

.badge-glow::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #b700ff, #ea47ff);
  filter: blur(20px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.badge-glow:hover {
  transform: scale(1.1);
}

.badge-glow:hover i {
  transform: rotate(360deg);
}

.badge-glow i {
  transition: transform 0.6s ease;
}


.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: scale(1);
}

.btn-modern i {
  transition: transform 0.4s ease;
}

.btn-modern:hover i {
  transform: scale(1.2);
}

.btn-modern:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary-modern {
  background: linear-gradient(135deg, #2c2f33, #2c2f33);
}

.btn-discord-modern {
  background: #23272a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-discord-modern:hover {
  background: #2c2f33;
  box-shadow: 0 8px 24px rgba(114, 137, 218, 0.2);
}

.btn-primary-modern:hover {
  background: #302c33;
  box-shadow: 0 8px 24px rgba(206, 114, 218, 0.2);
}

/* === PREMIUM FOOTER ANIMÉ === */
.footer {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(70, 20, 130, 0.4), rgba(12, 2, 23, 0.5));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(171, 59, 246, 0.15);
    padding: 3rem 2rem 2rem;
    border-radius: 30px 30px 0 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
    color: rgba(241, 245, 249, 0.9);
    font-size: 0.95rem;
    overflow: hidden;
    z-index: 5;
}

/* Effet de particules lumineuses */
.footer::before, .footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(188, 6, 212, 0.25), transparent 70%);
    animation: floatGlow 12s ease-in-out infinite;
    z-index: 1;
    filter: blur(80px);
}

.footer::after {
    background: radial-gradient(circle, rgba(98, 0, 255, 0.25), transparent 70%);
    animation-delay: -6s;
    right: -200px;
    bottom: -150px;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.2); }
}

/* Contenu centré avec grille élégante */
.footer .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.2rem;
}

/* Titres */
.footer h4 {
    color: #e493fd;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}

/* Ligne décorative sous le titre */
.footer h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, #0693d4, #3b57f6);
    animation: linePulse 2.5s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Liens */
.footer a {
    color: rgba(203, 213, 225, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.6rem;
    position: relative;
}

.footer a:hover {
    color: #e493fd;
    transform: translateX(5px);
}

/* Ligne gradient au hover */
.footer a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #281eaf, #3b67f6, #069ad4);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer a:hover::before {
    width: 100%;
}

/* Social icons */
.footer .socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(129, 30, 175, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    box-shadow: 0 0 8px rgba(145, 38, 255, 0.15);
}

.footer .socials a:hover {
    background: linear-gradient(135deg, #923bf6, #bc06d4);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 15px rgba(145, 38, 255, 0.4);
}

/* Ligne tout en bas */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(171, 59, 246, 0.1);
    font-size: 0.85rem;
    color: rgba(203, 213, 225, 0.6);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

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

/* Slogan */
.footer-tagline {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(241, 245, 249, 0.85);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    animation: fadeInUp 1.4s ease forwards;
}


/* Scrollbar global */
::-webkit-scrollbar {
  width: 10px; /* largeur de la barre verticale */
  height: 10px; /* hauteur de la barre horizontale */
}

/* Fond de la scrollbar */
::-webkit-scrollbar-track {
  background: #5f5f5f; /* couleur de fond */
  border-radius: 10px;
}

/* Barre de défilement */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8492fc, #3a43ed); /* dégradé violet */
  border-radius: 10px;
  border: 2px solid #868585; /* espace autour */
}

/* Hover de la barre */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8492fc, #3a43ed);
}

/* Firefox */
* {
  scrollbar-width: thin; /* "auto" ou "thin" */
  scrollbar-color: #1814eb6e #18192600; /* thumb + track */
}

#vision-status {
  --accent:#a200ff;
  --edge:rgba(255,255,255,0.08);
  --text:#E9EEF5;
  --muted:#A1ADBD;
  --card:rgba(255,255,255,0.03);
  position:relative;
  border:1px solid var(--edge);
  border-radius:22px;
  padding:clamp(18px,2.6vw,28px);
  margin-block:clamp(28px,5vw,64px);
  background:linear-gradient(180deg,rgba(255,255,255,0.15),rgba(0,0,0,0.16));
  box-shadow:0 18px 45px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow:hidden;
  isolation:isolate;
}
#vision-status .x-scan {
  position:absolute;
  inset:-40% -20% auto -20%;
  height:70%;
  pointer-events:none;
  mix-blend-mode:screen;
  background:
    radial-gradient(40% 35% at 20% 0%,rgba(140, 0, 255, 0.25),transparent 60%),
    radial-gradient(40% 35% at 80% 0%,rgba(227, 115, 255, 0.15),transparent 60%);
  filter:blur(30px);
  opacity:.35;
  animation:vs-pulse 7s ease-in-out infinite;
}
#vision-status .x-grid {
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.18;
  background-image:
    radial-gradient(circle at 50% -10%,rgba(183, 0, 255, 0.14),transparent 30%),
    linear-gradient(transparent 0 0),
    linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size:100% 100%,100% 100%,36px 36px,36px 36px;
}
@keyframes vs-pulse { 0%,100%{opacity:.25} 50%{opacity:.45} }

#vision-status .x-status-head {
  display:flex;
  flex-wrap:wrap;
  gap:16px 22px;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:clamp(14px,2vw,18px);
}
#vision-status .x-title {
  margin:0;
  font-weight:800;
  letter-spacing:.2px;
  color:var(--text);
  font-size:clamp(1.4rem,2.6vw,2rem);
}
#vision-status .x-em {
  color:var(--accent);
  text-shadow:0 0 18px rgba(140, 0, 255, 0.35);
}
#vision-status .x-sub {
  color:var(--muted);
  margin:.25rem 0 0;
}
#vision-status .x-head-right {
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
}
#vision-status .x-legend {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
#vision-status .x-tag {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  color:#cfd7e6;
  background:var(--card);
  border:1px solid var(--edge);
  cursor:pointer;
  transition:border-color .2s,transform .12s;
}
#vision-status .x-tag .dot {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--c);
  box-shadow:0 0 12px var(--c);
}
#vision-status .x-tag:not(.is-on){opacity:.55;}
#vision-status .x-tag:active{transform:translateY(1px);}

#vision-status .x-tools {
  display:flex;
  gap:10px;
  align-items:center;
}
#vision-status .x-input {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid var(--edge);
  background:var(--card);
  color:#cdd6e4;
}
#vision-status .x-input input {
  background:transparent;
  border:0;
  color:inherit;
  outline:0;
  width:200px;
}
#vision-status .x-refresh {
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:9px 12px;
  border-radius:10px;
  color:#0f0f0f;
  background:linear-gradient(180deg,#d773ff,#8c00ff);
  border:1px solid rgba(174, 0, 255, 0.35);
  box-shadow:0 10px 22px rgba(153, 0, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
#vision-status .x-group {
  position:relative;
  margin-top:18px;
}
#vision-status .x-group-head h2 {
  margin:0 0 10px;
  font-size:.95rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#A1ADBD;
}
#vision-status .x-cards {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
@media (max-width:1200px){#vision-status .x-cards{grid-template-columns:repeat(8,1fr);}}
@media (max-width:880px){#vision-status .x-cards{grid-template-columns:repeat(6,1fr);}}
@media (max-width:640px){#vision-status .x-cards{grid-template-columns:repeat(1,1fr);}}

#vision-status .x-card {
  --st:#9aa4b2;
  position:relative;
  z-index:0;
  grid-column:span 12;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  cursor:pointer;
  padding:14px;
  border-radius:14px;
  color:var(--text);
  background:var(--card);
  border:1px solid var(--edge);
  overflow:hidden;
}
@media (min-width:641px){#vision-status .x-card{grid-column:span 6;}}
@media (min-width:881px){#vision-status .x-card{grid-column:span 4;}}

#vision-status .x-card-main {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
#vision-status .x-name {
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
#vision-status .x-label {
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
#vision-status .x-subtle {
  color:var(--muted);
  font-size:.9rem;
}
#vision-status .x-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid color-mix(in srgb,var(--st) 45%,transparent);
  background:linear-gradient(180deg,color-mix(in srgb,var(--st) 18%,transparent),rgba(0,0,0,0.15));
  color:#eaf2ff;
}
#vision-status .x-pill .dot {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--st);
  box-shadow:0 0 14px var(--st);
}
#vision-status .x-pill .txt {
  font-weight:600;
  opacity:.95;
}
#vision-status .x-meta {
  display:flex;
  gap:10px;
  align-items:center;
  color:#c9d2e1;
  font-size:.92rem;
}
#vision-status .x-price {
  padding:6px 10px;
  border-radius:8px;
  background:rgba(255,255,255,0.35);
  border:1px solid var(--edge);
}
#vision-status .x-card .x-glow {
  position:absolute;
  inset:-30% -10%;
  background:radial-gradient(30% 30% at 70% 0%,color-mix(in srgb,var(--st) 25%,transparent),transparent 60%);
  filter:blur(28px);
  opacity:.25;
  pointer-events:none;
  transition:opacity .25s;
}
#vision-status .x-card .x-border {
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  opacity:.35;
  background:conic-gradient(from 0deg at 50% 50%,rgba(255,255,255,0),color-mix(in srgb,var(--st) 60%,transparent),rgba(255,255,255,0) 45%) border-box;
  -webkit-mask:linear-gradient(#000 0 0) padding-box,linear-gradient(#000 0 0) border-box;
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  border:1px solid transparent;
  animation:vs-rotate 14s linear infinite;
}
@keyframes vs-rotate { to{transform:rotate(360deg);} }

#vision-status .x-card:hover .x-glow { opacity:.4; }
#vision-status .x-card:hover { transform:translateY(-1px); transition:transform .12s; }
#vision-status [data-group][style*="display: none"] { margin:0; padding:0; }


/* Badges identisch wie Products/Status */
.cn-shop-badges {
  display: flex;
  gap: 0.75rem;
}

.cn-products-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cn-products-pill.ghost {
  background: rgba(255, 255, 255, 0.03);
}

 /* === PREMIUM CARD STYLING === */
  .transition-transform {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, box-shadow;
  }

  .card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    background: #0d0d0d;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
  }

  .card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }

  .card-img-top {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .card-img-top img {
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.4s ease;
  }

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

  /* Overlay effect */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 31, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .card:hover .overlay {
    opacity: 1;
  }

  .overlay .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, #d75ce7, #da9bfe);
    border: none;
    color: #fff;
    transition: transform 0.25s ease;
  }

  .overlay .btn:hover {
    transform: scale(1.05);
  }

  /* Badges */
  .badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .badges div {
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .badges i {
    font-size: 0.9rem;
  }

  /* Info section */
  .card-body {
    padding: 1rem 1.2rem;
  }

  .card-body .price {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
  }

  .card-body .price s {
    font-size: 0.85rem;
    margin-left: 0.4rem;
    color: rgba(255,255,255,0.5);
  }

  .card-body .text-primary {
    font-size: 0.85rem;
    font-weight: 500;
    color: #bb5ce7 !important;
    margin-bottom: 0.6rem;
  }

  .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
  }

  /* Stock Unlimited icon */
  .stock-unlimited svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
  }




  /*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
/* === GLASS NAVBAR STYLE === */

/* Wenn gescrollt → etwas dunkler */

/* Versteckt beim Runterscrollen */

/* Links hover Effekt */
.navbar a,
.navbar-brand {
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #be32ff !important;
}


/* --- Fix for modal transparency --- */
.modal-content {
  background: rgba(27, 27, 27, 0.838) !important;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(205, 118, 19, 0.1);
  color: #eaeaea;
}

.modal-backdrop.show {
  opacity: 0.7;
  background: rgba(29, 29, 29, 0.85);
}





@keyframes navbarEnter {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}






html, body {
    overflow-y: auto !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

/* VERHINDERT BOOTSTRAP SHIFT BEIM MODAL */
body.modal-open {
    overflow-y: auto !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

/* Bootstrap versucht padding-right zu setzen → kill it */
body.modal-open {
    overflow: auto !important;
}

body {
    width: 100% !important;
}

/* Falls Bootstrap Backdrop weird wird */
.modal {
    padding-right: 0 !important;
}

.modal-backdrop {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


body.modal-open {
    padding-right: 0 !important;
    overflow-y: auto !important;
}

.cn-product-wrap {
  transition: opacity .25s ease, height .25s ease;
}

.cn-product-wrap.hidden {
  opacity: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ============================================================
   MOBILE FIXES (FULL PACKAGE)
   ============================================================ */

/* -----------------------------------------
   1) Navbar fix — more padding and stacking
------------------------------------------ */
@media (max-width: 768px) {
  .navbar,
  header,
  .cn-products-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* -----------------------------------------
   2) Shop header stacks vertically
------------------------------------------ */
@media (max-width: 768px) {
  .cn-shop-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .cn-shop-badges {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
    gap: 8px;
  }

  .cn-shop-left {
    width: 100%;
    justify-content: flex-start;
  }

  .cn-shop-title {
    font-size: 1.9rem !important;
  }
}

/* -----------------------------------------
   3) Filter bar — center & wrap
------------------------------------------ */
@media (max-width: 768px) {
  .cn-filterbar {
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px 16px !important;
  }

  .cn-filter-group {
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cn-filter {
    padding: 8px 18px !important;
    font-size: 0.9rem;
  }
}

/* -----------------------------------------
   4) GRID — always correct alignment
------------------------------------------ */
@media (max-width: 992px) {
  .cn-products-grid {
    row-gap: 22px;
  }
}

/* Mobile: 2 columns -> 1 column */
@media (max-width: 576px) {
  .cn-products-grid .col-12,
  .cn-product-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* -----------------------------------------
   5) Product cards — prevent overflow
------------------------------------------ */
@media (max-width: 576px) {
  .cn-product-card {
    border-radius: 18px !important;
  }

  .cn-product-media img {
    height: 220px !important;
    object-fit: cover !important;
  }

  .cn-product-card-inner {
    padding: 12px !important;
  }

  .cn-product-title {
    font-size: 0.95rem !important;
  }
}

/* -----------------------------------------
   6) Modals — fix inner grid
------------------------------------------ */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 96% !important;
    margin: 0 auto;
  }

  .modal-body .cn-products-grid .col-12 {
    padding: 0 !important;
  }
}

/* ============================================================
   HERO MOBILE (FULL FIX)
   ============================================================ */

@media (max-width: 768px) {

  /* -------------------------------------
     HERO WRAPPER SPACING
  -------------------------------------- */
  .hero-section,
  .hero-wrapper,
  .cn-hero,
  header,
  main {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* -------------------------------------
     TITLE
  -------------------------------------- */
  .hero-title,
  .cn-hero-title,
  .cn-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.5px;
  }

  .hero-title span,
  .cn-hero-title span {
    font-size: 2.2rem !important;
  }

  /* -------------------------------------
     SUBTITLE / PARAGRAPH
  -------------------------------------- */
  .hero-sub,
  .cn-hero-sub,
  .hero-text p {
    font-size: 1.05rem !important;
    line-height: 1.45 !important;
    opacity: 0.92;
  }

  /* -------------------------------------
     INFO BAR / BADGE (ELITE MARKETPLACE)
  -------------------------------------- */
  .info-bar,
  .cn-info-bar,
  .elite-badge {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 14px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .elite-badge i,
  .info-bar i {
    font-size: 1.1rem !important;
    margin-right: 6px;
  }

  /* -------------------------------------
     BUTTONS UNDER HERO
  -------------------------------------- */
  .hero-buttons,
  .cn-hero-buttons {
    flex-direction: column !important;
    gap: 14px !important;
    margin-top: 22px !important;
  }

  .hero-buttons .btn,
  .cn-hero-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 1.05rem !important;
  }

  /* Browse Button */
  .hero-btn-primary {
    font-size: 1.1rem !important;
  }

  /* Secondary Button */
  .hero-btn-secondary {
    font-size: 0.95rem !important;
  }

}


/* =========================================
   MOBILE HEADER + HERO FULL FIX
   ========================================= */
@media (max-width: 768px) {

  /* --- HEADER FIX --- */
  header,
  .navbar,
  .site-header {
    position: relative !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    z-index: 100 !important;
  }

  /* Logo & Burger nicht über den Hero schieben */
  .navbar-brand,
  .header-logo {
    transform: translateY(0) !important;
  }

  .navbar-menu,
  .nav-toggle {
    margin-top: 0 !important;
  }

  /* Abstand unter dem Header hinzufügen */
  .hero,
  .landing-hero,
  .cn-hero,
  .home-hero {
    padding-top: 120px !important;  /* <<<<<< FIXED */
  }


  /* --- HERO TEXT FIX --- */
  .hero h1,
  .hero-title,
  .cn-hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }

  .hero p,
  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }

  /* --- BUTTONS SAUBER STACKEN --- */
  .hero-buttons,
  .landing-hero-buttons {
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .hero-buttons .btn,
  .landing-hero-buttons .btn {
    width: 100% !important;
  }



.cn-product-group-label {
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.cn-product-group-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cn-product-group-label {
    display: block !important;
    position: relative;
    z-index: 50;
}
.cn-product-body {
    position: relative;
    z-index: 10;
}
.cn-product-meta-row {
    position: relative;
    z-index: 1;
}









:root {
  --cn-gold1: #e373ff;
  --cn-gold2: #ff00ff;
  --cn-bg-deep: #090f31;
  --cn-surface: rgba(29, 29, 43, 0.95);
  --cn-border-soft: rgba(255,255,255,0.05);
  --cn-border-strong: rgba(255,255,255,0.16);
  --cn-text-main: #f5f7ff;
  --cn-text-muted: #a3aec3;
}

/* ========== SECTION WRAPPER ========== */
.cn-products-section {
  position: relative;
  padding: clamp(56px, 8vw, 80px) 0 72px;
  background: radial-gradient(circle at top, rgba(255,138,0,0.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(124,166,255,0.08), transparent 55%),
              #181818;
  overflow: hidden;
}

.cn-products-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* optional Glow */
.cn-products-section::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 10% 0%, rgba(234, 0, 255, 0.18), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(122,163,255,0.18), transparent 60%);
  opacity: 0.55;
  filter: blur(40px);
  z-index: 0;
}

/* ========== HEADER ========== */
.cn-products-header {
  text-align: left;
  margin-bottom: 32px;
}

.cn-products-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(90deg, #ffffff, #f2e3ff, #e873ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cn-products-subtitle {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: var(--cn-text-muted);
  max-width: 50rem;
}

/* Meta pills */
.cn-products-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cn-products-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cn-text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), rgba(11,11,18,0.92));
  box-shadow: 0 8px 22px rgba(0,0,0,0.55);
}

.cn-products-pill.ghost {
  background: rgba(12,12,20,0.85);
}

.cn-products-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 10px currentColor;
}
.dot-green { color: #00d07e; background: radial-gradient(circle at 30% 30%, #00ff97, #0bbf62); }
.dot-blue  { color: #7aa3ff; background: radial-gradient(circle at 30% 30%, #9fc0ff, #5f7cff); }

/* ========== GRID ========== */
.cn-products-grid {
  row-gap: 26px;
}

/* ========== CARD COLUMN ANIMATIONS ========== */
.cn-product-col {
  /* Base state for animation */
  opacity: 0;
  transform: translateY(20px);
  animation: cnProductFadeIn 0.7s ease forwards;
}

/* gestaffelte Delays */
.cn-product-col:nth-child(1) { animation-delay: 0.05s; }
.cn-product-col:nth-child(2) { animation-delay: 0.10s; }
.cn-product-col:nth-child(3) { animation-delay: 0.15s; }
.cn-product-col:nth-child(4) { animation-delay: 0.20s; }
.cn-product-col:nth-child(5) { animation-delay: 0.25s; }
.cn-product-col:nth-child(6) { animation-delay: 0.30s; }
.cn-product-col:nth-child(7) { animation-delay: 0.35s; }
.cn-product-col:nth-child(8) { animation-delay: 0.40s; }

@keyframes cnProductFadeIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.98); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0)   scale(1);     filter: blur(0); }
}

/* ========== CARD ========== */
.cn-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  padding: 1px; /* für outer gradient border */
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at 0 0, rgba(232, 115, 255, 0.6), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(122,163,255,0.5), transparent 45%);
  background-origin: border-box;
  text-decoration: none !important;
  color: var(--cn-text-main);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.02);
  transform: translateZ(0);
  transition:
    transform 0.28s cubic-bezier(.22,1,.36,1),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.cn-product-card-inner {
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.06), rgba(8,8,14,0.98));
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover */
.cn-product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.07);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    radial-gradient(circle at 0 0, rgba(227, 115, 255, 0.8), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(122,163,255,0.7), transparent 50%);
}

/* ========== MEDIA ========== */
.cn-product-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.05), rgba(31, 31, 31, 0.95));
}

.cn-product-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* dark overlay gradient */
.cn-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.78) 0%, rgba(31, 31, 31, 0.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover effect */
.cn-product-card:hover .cn-product-media img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.cn-product-card:hover .cn-product-media::after {
  opacity: 1;
}

/* Placeholder icon styling falls kein Image */
.cn-product-media-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cn-gold1);
  opacity: 0.8;
}

/* ========== BADGES ========== */
.cn-product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.cn-product-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #d773ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.cn-product-badge i {
  font-size: 0.8em;
}

/* Bundle-Tag */
.cn-product-tag-bundle {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(12, 223, 255, 0.18);
  border: 1px solid rgba(173, 241, 255, 0.7);
  color: #c6f7ff;
  backdrop-filter: blur(8px);
}

/* ========== OVERLAY BUTTON ========== */
.cn-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cn-product-card:hover .cn-product-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cn-product-cta {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(13, 13, 22, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fdfdfd;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cn-product-cta span {
  font-size: 0.9em;
}
.cn-product-cta svg {
  width: 12px;
  height: 12px;
}

/* ========== CARD BODY CONTENT ========== */
.cn-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Top row: Price + stock */
.cn-product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.cn-product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}

.cn-product-price s {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.cn-product-stock {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cn-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cn-product-stock .stock-unlimited svg {
  width: 14px;
  height: 14px;
}

.cn-product-stock .stock-unlimited {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Title */
.cn-product-title {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cn-text-main);
}

/* Optional small footer */
.cn-product-footnote {
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
}

/* ========== MODAL ========== */
.cn-products-modal {
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.06), rgba(31, 31, 31, 0.97));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 80px rgba(24, 24, 24, 0.9);
  color: #f4f6ff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .cn-products-header {
    text-align: left;
  }
  .cn-products-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .cn-products-section {
    padding-top: 40px;
  }

  .cn-products-shell {
    width: 92vw;
  }

  .cn-product-media img {
    height: 190px;
  }

  .cn-product-card-inner {
    padding: 12px 12px 14px;
  }
}

@media (max-width: 575.98px) {
  .cn-products-title {
    font-size: 1.6rem;
  }
  .cn-products-subtitle {
    font-size: 0.9rem;
  }
  .cn-products-pill {
    font-size: 0.7rem;
  }
}


/* ===================== FILTER BAR ===================== */

.cn-filterbar {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.07);
  display: center;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Filter Buttons */
.cn-filter-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cn-filter {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #f8f8f8;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.cn-filter.active,
.cn-filter:hover {
  background: linear-gradient(135deg, #dd6cff, #e100ff);
  color: #000;
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(225, 0, 255, 0.4);
}

/* Sort Dropdown */
.cn-filter-sort select {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

/* MOBILE */
@media (max-width: 576px) {
  .cn-filterbar {
    flex-direction: column;
    align-items: stretch;
  }
  .cn-filter-sort select {
    width: 100%;
  }
}



/* SEARCH ICON */
.cn-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  pointer-events: none;
}

.cn-products-grid {
  min-height: 300px;
  position: relative;
}

.cn-product-col {
  position: relative;
  transition: all .25s ease;
}

.cn-product-wrap.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.cn-product-wrap {
  animation: cnFadeIn .35s ease;
}

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


.cn-product-col.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .25s ease, visibility .25s ease;
}

.cn-filterbar {
  display: flex;
  justify-content: center;
  margin-bottom: 60px !important; /* HARD FORCE */
}

.cn-product-media {
  height: 100%;          /* Nimmt gesamte Höhe der Card */
}

.cn-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Wichtig */
  object-position: center;
}

/* Shop Header Full Layout */
.cn-shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  flex-wrap: wrap;
  gap: 20px;
}

/* LEFT BLOCK: Icon + Text */
.cn-shop-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CLEAN ICON — Glow Removed */
.cn-shop-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.cn-shop-icon i {
  font-size: 28px;
  color: #e26cff;
}

/* TEXT */
.cn-shop-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(90deg, #ffffff, #ff73f8, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cn-shop-subtitle {
  margin-top: 3px;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* RIGHT SIDE BADGES — BEAUTIFUL ALIGNMENT */
.cn-shop-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
} }