* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #e63946;
            --secondary: #0a0e27;
            --accent: #1e90ff;
            --light: #f8f9fa;
            --dark: #0d1117;
            --dark-card: #161b22;
            --darker: #010409;
            --spider-red: #e23636;
            --spider-blue: #4dabf7;
            --web-gray: #8b949e;
            --border-color: #30363d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #c9d1d9;
            background: var(--dark);
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 171, 247, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        nav {
            background: var(--darker);
            border-bottom: 2px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.8),
                         0 0 40px rgba(230, 57, 70, 0.4);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(230, 57, 70, 0.8),
                             0 0 40px rgba(230, 57, 70, 0.4);
            }
            to {
                text-shadow: 0 0 30px rgba(230, 57, 70, 1),
                             0 0 60px rgba(230, 57, 70, 0.6);
            }
        }

        .logo span {
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #c9d1d9;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--spider-blue));
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0d1117 0%, #1a0a0f 50%, #0a1628 100%);
            background-image: url("assets/bannerbg.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--border-color);
        }

        /* .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(30deg, transparent 48%, rgba(230, 57, 70, 0.1) 49%, rgba(230, 57, 70, 0.1) 51%, transparent 52%),
                linear-gradient(150deg, transparent 48%, rgba(77, 171, 247, 0.1) 49%, rgba(77, 171, 247, 0.1) 51%, transparent 52%),
                linear-gradient(60deg, transparent 48%, rgba(230, 57, 70, 0.05) 49%, rgba(230, 57, 70, 0.05) 51%, transparent 52%),
                linear-gradient(120deg, transparent 48%, rgba(77, 171, 247, 0.05) 49%, rgba(77, 171, 247, 0.05) 51%, transparent 52%);
            background-size: 80px 80px, 80px 80px, 60px 60px, 60px 60px;
            opacity: 0.5;
            animation: webSlide 20s linear infinite;
        } */

        @keyframes webSlide {
            0% {
                background-position: 0 0, 0 0, 0 0, 0 0;
            }
            100% {
                background-position: 80px 80px, -80px 80px, 60px 60px, -60px 60px;
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 
                0 0 10px rgba(230, 57, 70, 0.8),
                0 0 20px rgba(230, 57, 70, 0.6),
                2px 2px 8px rgba(0,0,0,0.8);
            background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--spider-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #c9d1d9;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, #ff1744 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 
                0 4px 15px rgba(230, 57, 70, 0.4),
                0 0 30px rgba(230, 57, 70, 0.2);
            border: 2px solid rgba(230, 57, 70, 0.3);
            margin-top: 20%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 6px 20px rgba(230, 57, 70, 0.6),
                0 0 40px rgba(230, 57, 70, 0.4);
            border-color: var(--primary);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #c9d1d9;
            position: relative;
            padding-bottom: 1rem;
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--spider-blue));
            border-radius: 2px;
            box-shadow: 0 0 10px var(--primary);
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: var(--dark-card);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 15px 40px rgba(0,0,0,0.7),
                0 0 30px rgba(230, 57, 70, 0.3),
                0 0 0 1px var(--primary);
            border-color: var(--primary);
        }

        .product-header {
            background: linear-gradient(135deg, #1a0a0f 0%, #0a1628 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            border-bottom: 2px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .product-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .product-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
            position: relative;
        }

        .product-header p {
            font-size: 0.9rem;
            opacity: 0.9;
            color: var(--web-gray);
            position: relative;
        }

        .product-videos {
            padding: 1.5rem;
            background: var(--darker);
            border-bottom: 1px solid var(--border-color);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .video-wrapper:last-child {
            margin-bottom: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .product-links {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: var(--dark-card);
        }

        .link-section {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .link-section h4 {
            color: #c9d1d9;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
        }

        .link-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .product-link {
            flex: 1;
            min-width: 120px;
            padding: 0.75rem 1.5rem;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
            border: 1px solid transparent;
        }

        .product-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            filter: brightness(1.2);
        }

        .etsy-link {
            background: #f1641e;
            color: white;
            box-shadow: 0 0 10px rgba(241, 100, 30, 0.3);
        }

        .etsy-link:hover {
            box-shadow: 0 0 20px rgba(241, 100, 30, 0.6);
        }

        .ebay-link {
            background: #0064d2;
            color: white;
            box-shadow: 0 0 10px rgba(0, 100, 210, 0.3);
        }

        .ebay-link:hover {
            box-shadow: 0 0 20px rgba(0, 100, 210, 0.6);
        }

        .cults-link {
            background: #7c3aed;
            color: white;
            box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
        }

        .cults-link:hover {
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
        }

        /* Tutorial Section */
        .tutorial-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .tutorial-section h2 {
            color: #c9d1d9;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
        }

        .tutorial-video {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Social Media */
        .social-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #c9d1d9;
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: scale(1.1);
            color: white;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 
                0 4px 10px rgba(0,0,0,0.5),
                0 0 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover .social-icon {
            box-shadow: 
                0 6px 20px rgba(0,0,0,0.7),
                0 0 30px rgba(255, 255, 255, 0.3);
        }

        .youtube { background: #ff0000; border: 2px solid #ffff ;}
        .youtube:hover { box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4); }
        
        .instagram { background: #405DE6 100%; border: 2px solid #6228d7 ; }
        /* .instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); } */
        .instagram:hover { box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6), 0 0 30px rgba(220, 39, 67, 0.4); }
        
        .facebook { background: #1877f2; }
        .facebook:hover { box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6), 0 0 30px rgba(24, 119, 242, 0.4); }
        
        .tiktok { background: #000000; border: 2px solid #00f2ea; }
        .tiktok:hover { box-shadow: 0 6px 20px rgba(0, 242, 234, 0.6), 0 0 30px rgba(0, 242, 234, 0.4); }
        
        .twitter { background: #1da1f2; }
        .twitter:hover { box-shadow: 0 6px 20px rgba(29, 161, 242, 0.6), 0 0 30px rgba(29, 161, 242, 0.4); }

        /* Contact Form */
        .contact-section {
            background: var(--dark-card);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                0 0 0 1px var(--border-color);
            border: 1px solid var(--border-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #c9d1d9;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: var(--darker);
            color: #c9d1d9;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
            background: var(--dark-card);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group option {
            background: var(--darker);
            color: #c9d1d9;
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #ff1744);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            border: 2px solid rgba(230, 57, 70, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            border-color: var(--primary);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        /* Thank You Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: linear-gradient(135deg, var(--dark-card) 0%, var(--darker) 100%);
            margin: 10% auto;
            padding: 3rem;
            border: 2px solid var(--primary);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(230, 57, 70, 0.4);
            animation: slideIn 0.4s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--spider-blue), var(--primary));
            border-radius: 20px;
            z-index: -1;
            filter: blur(10px);
            opacity: 0.5;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { filter: blur(10px) hue-rotate(0deg); }
            100% { filter: blur(10px) hue-rotate(360deg); }
        }

        .modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounce 0.6s ease-in-out;
        }

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

        .modal-content h2 {
            color: #c9d1d9;
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
        }

        .modal-content p {
            color: var(--web-gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .close-modal {
            background: linear-gradient(135deg, var(--primary), #ff1744);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            border: 2px solid rgba(230, 57, 70, 0.3);
        }

        .close-modal:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            border-color: var(--primary);
        }

        .close-modal:active {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: var(--darker);
            color: #c9d1d9;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 2px solid var(--border-color);
        }

        footer p {
            margin-bottom: 1rem;
        }

        footer p:last-child {
            color: var(--web-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                width: 100%;
                margin-top: 1rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .link-buttons {
                flex-direction: column;
            }

            .product-link {
                min-width: 100%;
            }

            .cta-button{
                margin-top: 40%;
            }
        }



        /* CATALOG */
        #catalog {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem 3rem;
        }
        .section-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            letter-spacing: 0.06em;
            margin-bottom: 0.25rem;
        }
        .section-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

        /* FILTER BAR */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        .filter-tag {
            padding: 0.4rem 1rem;
            border: 1px solid rgba(255,255,255,0.12);
            background: transparent;
            color: var(--text-muted);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.18s;
            border-radius: 2px;
        }
        .filter-tag:hover { border-color: var(--red); color: var(--text); }
        .filter-tag.active { background: var(--red); border-color: var(--red); color: #fff; }

        /* PRODUCT GRID */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .product-card {
            background: var(--dark-2);
            border: 1px solid var(--border);
            transition: border-color 0.2s, transform 0.2s;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover { border-color: rgba(227,0,15,0.4); transform: translateY(-3px); }
        .product-card.hidden { display: none; }

        .card-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: var(--dark-3);
        }
        .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .product-card:hover .card-image img { transform: scale(1.04); }
        .card-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            opacity: 0.15;
        }

        .card-tags { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
        .card-tag {
            padding: 0.2rem 0.55rem;
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            backdrop-filter: blur(4px);
            border-radius: 2px;
        }

        .video-btn {
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            background: rgba(0,0,0,0.75);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            cursor: pointer;
            backdrop-filter: blur(4px);
            transition: background 0.2s, border-color 0.2s;
            border-radius: 2px;
        }
        .video-btn:hover { background: var(--red); border-color: var(--red); }
        .video-btn i { font-size: 0.7rem; }

        .card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
        .card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.05em; line-height: 1.1; margin-bottom: 0.4rem; }
        .card-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; flex: 1; }

        .card-actions { display: flex; flex-direction: column; gap: 0.75rem; }
        .action-group label {
            display: block;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }
        .btn-row { display: flex; gap: 0.5rem; }
        .btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            padding: 0.55rem 0.5rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-decoration: none;
            text-transform: uppercase;
            border: 1px solid transparent;
            transition: all 0.18s;
            border-radius: 2px;
        }
        .btn-etsy { background: #f1641e; color: #fff; }
        .btn-etsy:hover { background: #d9531a; }
        .btn-ebay { background: transparent; border-color: rgba(255,255,255,0.15); color: var(--text); }
        .btn-ebay:hover { border-color: var(--text); }
        .btn-cults { background: transparent; border-color: rgba(255,255,255,0.15); color: var(--text); }
        .btn-cults:hover { border-color: var(--text); }

        /* VIDEO MODAL */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .modal-overlay.open { display: flex; }
        .modal-box { position: relative; width: 90%; max-width: 900px; background: var(--dark-2); border: 1px solid var(--border); }
        .modal-close {
            position: absolute;
            top: -2.5rem;
            right: 0;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .modal-close:hover { color: var(--text); }
        .modal-video { aspect-ratio: 16/9; width: 100%; }
        .modal-video iframe { width: 100%; height: 100%; border: none; display: block; }

        /* TUTORIALS */
        #tutorials { border-top: 1px solid var(--border); padding: 5rem 0; background: var(--dark-2); }
        #tutorials .inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .tutorial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
        .tutorial-card { background: var(--dark-3); border: 1px solid var(--border); padding: 1.5rem; }
        .tutorial-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
        .tutorial-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
        .btn-watch {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 1.25rem;
            background: var(--red);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            font-family: 'DM Sans', sans-serif;
            transition: background 0.2s;
            border-radius: 2px;
        }
        .btn-watch:hover { background: var(--red-dark); }

        /* SOCIALS */
        #socials { padding: 5rem 0; border-top: 1px solid var(--border); }
        #socials .inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
        .social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
        .social-link {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1.75rem;
            background: var(--dark-2);
            border: 1px solid var(--border);
            color: var(--text);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: border-color 0.2s, background 0.2s;
        }
        .social-link:hover { border-color: var(--red); background: var(--dark-3); }
        .social-link i { font-size: 1.1rem; }
        .social-link.yt i { color: #ff0000; }
        .social-link.ig i { color: #e1306c; }
        .social-link.tt i { color: #69c9d0; }



        /* TY MODAL */
        .ty-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; align-items: center; justify-content: center; }
        .ty-overlay.open { display: flex; }
        .ty-box { background: var(--dark-2); border: 1px solid var(--border); padding: 3rem 2.5rem; text-align: center; max-width: 420px; width: 90%; }
        .ty-box .icon { font-size: 2.5rem; margin-bottom: 1rem; }
        .ty-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
        .ty-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
        .ty-close { padding: 0.6rem 2rem; background: var(--red); border: none; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; }

        /* NO RESULTS */
        .no-results { grid-column: 1/-1; text-align: center; padding: 4rem 0; color: var(--text-muted); display: none; }
        .no-results.show { display: block; }
        .no-results span { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }

        /* FOOTER */
        footer { padding: 2rem; text-align: center; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; }

        @media (max-width: 640px) {
            nav ul { gap: 1rem; }
            nav ul a { font-size: 0.75rem; }
            .hero { height: 300px; }
        }


        /* ═══════════════════════════════
   CARD IMAGE CAROUSEL
═══════════════════════════════ */

/* Slides container */
.card-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .card-slide.active img {
    transform: scale(1.04);
}

/* Prev / Next arrows */
.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.65rem;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
    /* Hidden until hover */
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
}

.card-image:hover .slide-prev,
.card-image:hover .slide-next {
    opacity: 1;
}

.slide-prev { left: 0.5rem; }
.slide-next { right: 0.5rem; }

/* Push the Watch Video button up so it doesn't overlap arrows */
.card-image:has(.slide-prev) .video-btn {
    bottom: 2.6rem;
}

.slide-prev:hover,
.slide-next:hover {
    background: var(--spider-red);
    border-color: var(--spider-red);
}

/* Dot indicators */
.slide-dots {
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    z-index: 10;
}

.slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.slide-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Hide dots & arrows when only 1 image */
.card-image[data-count="1"] .slide-prev,
.card-image[data-count="1"] .slide-next,
.card-image[data-count="1"] .slide-dots {
    display: none;
}

/* Also restore video-btn bottom position when no arrows */
.card-image[data-count="1"] .video-btn {
    bottom: 0.75rem;
}