

:root {
            --cl-accent: #2be6ff;
            --cl-accent-rgb: 43, 139, 255;
            --cl-background-primary: #0a0909;
            --cl-background-secondary: #14141400;
            --cl-border: #ffffff0d;
            --cl-snow: 255, 255, 255;
            --bs-font-sans-serif: 'Poppins', sans-serif;
        }
        
        * {
          text-decoration: none;
        }


        body {
            font-family: var(--bs-font-sans-serif);
            background-color: var(--cl-background-primary);
            color: rgba(var(--cl-snow), 0.9);
            margin: 0;
            padding: 0;
            overflow-x: hidden;

              cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur816.cur'), auto;
        }
        .selectable:hover {
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}
        .btn:hover {
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}
        .stats-card-alt:hover {
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}

.footer-link:hover{
    cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}

.social-link:hover {
    cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}
.nav-link:hover{
    cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}



.product-card {
    overflow: hidden; /* prevents the scaled image from spilling out */
}

.product-image {
    transition: transform 0.2s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}



.title-effect {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #fff; /* main visible text */
  z-index: 1;
}

.title-effect::before {
  content: attr(data-text); /* will be filled by JS */
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;   /* bigger behind */
  font-weight: bold;
  color: #fff; 
  opacity: 0.1;      /* faint */
  z-index: -1;
  white-space: nowrap;

  /* gradient fade bottom */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}



  /* Overlay with blur + gradient */
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.4s ease;
  }

  /* Popup box */
  .popup {
    background: rgba(var(--cl-snow), 0.98);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    animation: popupIn 0.3s ease forwards;
  }

  .popup-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--cl-accent);
  }

  .popup-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    justify-content: center;
  }

  /* Close button */
  .popup-close {
    position: absolute;
    top: 12px; right: 12px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(0,0,0,0.4);
    transition: color 0.3s ease;
  }

  .popup-close:hover {
    color: var(--cl-accent);
  }

  /* Discount code box */
  .discount-code {
    margin: 1rem 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--cl-accent);
    display: none;
    padding: 0.6rem 1rem;
    border: 2px dashed var(--cl-accent);
    border-radius: 6px;
    background: rgba(var(--cl-accent-rgb), 0.05);
    animation: fadeIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Copy button */
  .copy-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--cl-accent);
    transition: transform 0.2s ease, color 0.3s ease;
  }

  .copy-btn:hover {
    transform: scale(1.1);
    color: #00909b;
  }

  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes popupIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }





/* Container for background elements */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Floating squares */
.square {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  animation: floatSquare linear infinite;
}

@keyframes floatSquare {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Vertical lines */
.line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0));
  animation: moveLine linear infinite;
}

@keyframes moveLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}




        .spacing-xd {
            margin-top: 5vh;
        }

/* Dots */
.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: floatDot linear infinite;
}

@keyframes floatDot {
  0% { transform: translateY(100vh); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* Dynamic moving glow blobs */
.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.6) 0%, transparent 75%);
  filter: blur(50px);
  opacity: 0.5;
  animation: floatGlow linear infinite;
  z-index: -2;
}

@keyframes floatGlow {
  0% { transform: translate(var(--x-start, 0vw), var(--y-start, 0vh)); opacity: 0.3; }
  50% { opacity: 0.6; }
  70% { transform: translate(var(--x-end, 100vw), var(--y-end, 100vh)); opacity: 0.8; }
  100% { transform: translate(var(--x-start, 0vw), var(--y-start, 0vh)); opacity: 0.3; }
}





  

        /* Dot trail background */
        .dot-background {
            position: fixed;
            inset: 0;
            z-index: -3;
            pointer-events: none;
            background-image: radial-gradient(#2bdfff 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0;
            mask-image: radial-gradient(150px circle at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
            -webkit-mask-image: radial-gradient(150px circle at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
            transition: opacity 0.3s ease;
        }

        /* Diagonal lines */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -4;
            background-image: repeating-linear-gradient(-75deg, rgba(255, 255, 255, 0.075) 0, rgba(255, 255, 255, 0.075) 2px, transparent 2px, transparent 90px);
            pointer-events: none;
        }

        /* Blue gradient at bottom only */
        body::after {
            content: "";
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 30vh;
            z-index: -5;
            background: linear-gradient(to top, rgba(43, 139, 255, 0.06), transparent);
            pointer-events: none;
        }
        
        /* Header/Navigation */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 9, 9, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .main-header.hidden {
            transform: translateY(-100%);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo img {
            height: 40px;
            transition: transform 0.3s ease;
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #2b6eff, #3f92ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-link {
            position: relative;
            color: rgba(var(--cl-snow), 0.8);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--cl-accent);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cl-accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid rgba(var(--cl-snow), 0.1);
            color: rgba(var(--cl-snow), 0.9);
        }
        
        .btn-outline:hover {
            border-color: var(--cl-accent);
            color: var(--cl-accent);
        }
        
        .btn-primary {
            background: var(--cl-accent);
            border: 2px solid var(--cl-accent);
            color: white;
        }
        
        .btn-primary:hover {
            background: #00707a;
            box-shadow: 0 4px 12px rgba(var(--cl-accent-rgb), 0.2);
        }
        
        .cart-btn {
            position: relative;
            background: rgba(var(--cl-snow), 0.05);
            border: none;
            border-radius: 6px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cart-btn:hover {
            background: rgba(var(--cl-snow), 0.1);
            color: var(--cl-accent);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--cl-accent);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(125% 125% at 50% 0%, #0f0f0f 50%, #00c3ff);
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            background: linear-gradient(180deg, #ffffff, #a8a8a8);
            -webkit-background-clip: text;
            background-clip: text;
            color:transparent;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(90deg, #02afff, #0066ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: rgba(var(--cl-snow), 0.8);
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .feedback-buttons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        /* Products Section */
        .section {
            padding: 6rem 2rem;
            font-weight: 800;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title .subtitle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--cl-accent);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }
 

.product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.custom-dropdown {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: inline-block;
}

.dropdown-selected {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: rgba(var(--cl-snow), 0.05);
    border: 1px solid rgba(var(--cl-snow), 0.1);
    color: rgba(var(--cl-snow), 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dropdown-selected:hover {
    background: var(--cl-accent);
    color: white;
    border-color: var(--cl-accent);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(var(--cl-accent-rgb), 0.3);
}

.filter-icon {
    font-size: 1.1rem;
}

.dropdown-options {
    position: absolute;
    top: 120%; /* more space below */
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 200px;
    background: rgba(20,20,20, 0.8);
    border: 1px solid rgba(var(--cl-snow), 0.1);
    border-radius: 12px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
    pointer-events: none;
}

.dropdown-options.open {
    max-height: 500px; 
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.dropdown-options li {
    padding: 0.6rem 1.5rem;
    list-style: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dropdown-options li:hover {
    background: var(--cl-accent);
    color: white;
    transform: scale(1.03);
    box-shadow: 0 2px 10px rgba(var(--cl-accent-rgb), 0.2);
}


        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid:hover {
            cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
        }
        .products-grid:empty {
    display: none;
}

.product-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(var(--cl-snow), 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transform: scale(1);
    position: relative;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(32, 32, 32, 0.7);
    border-color: rgba(2, 154, 255, 0.623);
    cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}

.product-card * {
    transition: transform 0.3s ease;
}

.product-card:hover * {
    transform: scale(1.015);
}

.product-card:hover > * {
    transform-origin: center;
}

/* --- Image wrapper for hover elements --- */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hover-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(2, 154, 255, 0.9);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;

    /* Shadow + glow */
    box-shadow: 0 6px 15px rgba(0, 50, 83, 0.1);
}

/* Hover state with glow animation */
.product-card:hover .hover-arrow {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(0, 50, 83, 0.8),
                0 0 25px rgba(0, 50, 83, 0.6),
                0 0 40px rgba(0, 50, 83, 0.4);
}
/* Optional: glowing pulse animation */
.hover-arrow:hover {
    animation: glowPulse 1.2s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 12px rgba(0, 50, 83, 0.8),
                    0 0 25px rgba(0, 50, 83, 0.6),
                    0 0 40px rgba(0, 50, 83, 0.4);
    }
    100% {
        box-shadow: 0 0 18px rgba(0, 50, 83, 1),
                    0 0 35px rgba(0, 50, 83, 0.7),
                    0 0 50px rgba(0, 50, 83, 0.5);
    }
}
.hover-arrow i {
    font-size: 16px;
}

/* --- Light Sweep --- */
.light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(-25deg) translateX(-100%);
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0;
}

.product-card:hover .light-sweep {
    transform: rotate(-25deg) translateX(0);
    opacity: 1;
}


/* Product Highlights Section */
.highlight-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
  color: #fff;
}

/* Section Blocks */
.product-block {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.block-header {
  margin-bottom: 2rem;
}

.block-subtitle {
  font-size: 0.9rem;
  color: #0099ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.block-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Product Grid - 2 Columns */
.product-grid.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.product-item {
  background-color: #1b1b1f;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
    border: 1px solid rgba(var(--cl-snow), 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

}

.product-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: rgba(32, 32, 32, 0.7);
    border-color: rgba(2, 154, 255, 0.623);
}



.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-bottom: 2px solid #2c2c33;
}

.product-item:hover .product-img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.25rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-oldprice {
  text-decoration: line-through;
  color: #777;
  font-size: 0.9rem;
}

.product-price {
  color: #4ade80;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.product-status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  background-color: #222;
}

.product-status.in-stock {
    outline: 1px solid #00b0c7;
  background-color: #004852;
  color: #fff;

  transition: all 0.3s ease-in-out;
}

.product-status.in-stock:hover {
  background-color: #00b0c7;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-grid.two-column {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }

  .highlight-section {
    padding: 3rem 1rem;
  }

  .block-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .block-title {
    font-size: 1.3rem;
  }

  .product-img {
    height: 160px;
  }
}


.faq-container {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;            /* keep it centered horizontally */
  margin-bottom: 4rem;
}

.faq-item {
background: rgba(26, 26, 26, 0.7);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
overflow: hidden;
}


.faq-item:hover {
transform: translateY(-1px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
background: rgba(32, 32, 32, 0.7);
border-color: rgba(2, 154, 255, 0.623);
cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}


.faq-question {
padding: 16px 20px;
font-size: 1.1rem;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}


.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.3s ease;
padding: 0 20px;
font-size: 0.95rem;
line-height: 1.5;
}


.faq-item.active .faq-answer {
max-height: 200px;
padding: 12px 20px 20px;
}


.faq-toggle {
transition: transform 0.3s ease;
}


.faq-item.active .faq-toggle {
transform: rotate(45deg);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 500px); /* fixed width for 2 cards per row */
  gap: 24px;
  margin-top: 40px;
  justify-content: center; /* center the grid in the section */
}

@media (max-width: 600px) {
  .contact-container {
    grid-template-columns: 1fr; /* single column on small screens */
  }
}

.contact-card {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(32, 32, 32, 0.7);
  border-color: rgba(2, 154, 255, 0.623);
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur819.cur'), pointer;
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #029aff;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.btn-contact {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #029aff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: 2px solid #029aff;
}

.btn-contact:hover {
  background: #006db6b0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.stats-section-alt {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.stats-container-alt {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.stats-card-alt {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.stats-card-alt:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #02a0ff;
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #02a0ff;
}

.stats-card-alt h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.stats-card-alt p {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

.product-search {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#searchInput {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 0.7);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#searchInput:focus {
    border-color: rgba(2, 154, 255, 0.4);
    box-shadow: 0 0 10px rgba(2, 154, 255, 0.2);
    background: rgba(26, 26, 26, 0.9);
}


.bottom-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem; /* spacing between quantity selector and button */
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.qty-input {
    width: rem;
    text-align: center;
    margin: 0 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
}

.purchase-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}


        .product-image {
            width: 100%;
            object-fit: cover;
            border-bottom: 1px solid rgba(var(--cl-snow), 0.05);
        }
        
        .product-content {
            padding: 1.5rem;
        }
        
        .product-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .product-striked {
    color: #6b6b6b; /* lighter gray */
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 500;
}

        .product-price {
            color: var(--cl-accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .product-stock {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(0, 200, 83, 0.1);
            color: #00c853;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-nostock {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(200, 0, 0, 0.1);
            color: #c80000;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        
        /* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(--cl-accent-rgb), 1;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.feature-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 190, 255, 0.5);
    box-shadow: 0 8px 20px rgba(79, 234, 255, 0.15);
}

.feature-icon {
    font-size: 2rem;
    color: #2bb1ff;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

        
        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid rgba(var(--cl-snow), 0.05);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-stars {
            color: #07c5ff;
            margin-right: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        .testimonial-text {
            color: rgba(var(--cl-snow), 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-date {
            font-size: 0.8rem;
            color: rgba(var(--cl-snow), 0.5);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        /* Footer */
        .footer {
            background: rgba(10, 9, 9, 0.9);
            border-top: 1px solid rgba(var(--cl-snow), 0.05);
            padding: 4rem 2rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            height: 40px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #2b75ff, #4d86ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-about {
            color: rgba(var(--cl-snow), 0.7);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(var(--cl-snow), 0.05);
            display: flex;
            align-items: center;
                        color:#00e1ff;

            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--cl-accent);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
.footer-link {
    position: relative;
    color: rgba(var(--cl-snow), 0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    padding-left: 16px; /* room for bar */
}

.footer-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #075ea5, #00d9ff);
    border-radius: 6px;
    transform: scaleY(0);
    transform-origin: center; /* grows from middle */
    transition: transform 0.4s ease; /* slow expansion */
}

.footer-link:hover {
    color: var(--cl-accent);
    transform: translateX(5px);
}

.footer-link:hover::before {
    transform: scaleY(1); /* expand to full height */
}

        
        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(var(--cl-snow), 0.05);
            text-align: center;
            color: rgba(var(--cl-snow), 0.5);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }


        .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(0, 123, 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, #007bff, #47a0ff);
  color: #fff;
  backdrop-filter: blur(12px);
  background-blend-mode: overlay;
  opacity: 0.9;
  box-shadow: 0 0 18px rgba(0, 123, 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, #007bff, #47a0ff);
  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-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: var(--cl-accent);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--cl-accent);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--cl-accent), #0092ac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 50px;
  z-index: 0;
}

.btn-primary-modern:hover::before {
  transform: scaleX(1);
}

.btn-primary-modern:hover {
  color: #1e1e2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 204, 255, 0.4);
}

.btn-primary-modern svg {
  transition: transform 0.3s ease;
  z-index: 1;
}

.btn-primary-modern:hover svg {
  transform: translateX(4px);
}

/* Ensure text stays above the background gradient */
.btn-primary-modern > * {
  position: relative;
  z-index: 1;
}


.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: #2c2f33;
  box-shadow: 0 8px 24px rgba(114, 137, 218, 0.2);
}



        /* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block; /* Show on mobile */
    }
    
    .nav-links {
        position: fixed;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: rgba(10, 9, 9, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: circle(0px at 90% -10%);
        -webkit-clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
        pointer-events: none;
    }
    
    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.2rem;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
        
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section {
                padding: 4rem 1rem;
            }
        }


.quantity-selector {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--cl-snow), 0.1);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--cl-accent);
}

.quantity-selector input {
    width: 50px;
    padding: 0.3rem;
    border-radius: 6px;
    border: 1px solid rgba(var(--cl-snow), 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-align: center;
}

.buy-now-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.6rem;
    background: var(--cl-accent);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background: #1aa3ff;
    box-shadow: 0 4px 12px rgba(var(--cl-accent-rgb), 0.2);
}


@keyframes scroll-down {
    0% { transform: translateY(2px); opacity: 1; }
    100% { transform: translateY(22px); opacity: 0; }
}