        :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;
}



  /* 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); }
  }



        /* 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);
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background: var(--cl-accent);
            border: 1px solid var(--cl-accent);
            color: white;
        }
        
        .btn-primary:hover {
            background: #00909b;
            transform: translateY(-2px);
            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 {
            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;
        }
        
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* allows tabs to go to a new row */
    gap: 0.5rem; /* spacing between tabs */
    margin-bottom: 3rem;
    max-width: 1300px; /* <-- Customize: controls when tabs wrap to next row */
    margin-left: auto;
    margin-right: auto;
}

.category-tab {
    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;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent tabs from shrinking too small */
}

/* Active / hover state */
.category-tab:hover, .category-tab.active {
    background: var(--cl-accent);
    color: white;
    border-color: var(--cl-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--cl-accent-rgb), 0.2);
}

/* Example: target every 6th tab (customizable) */
.category-tab:nth-child(6n) {
    /* You could add extra margin, border, or style here */
}

.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(280px, 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: 12px;
    overflow: hidden;
    border: 1px solid rgba(var(--cl-snow), 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px; /* optional: consistent card height */
}

.product-card: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;
}

.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-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; }
}