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

        body {
            font-family: 'Arial', sans-serif;
            background:  transparent;
            color: #ffffff;
            min-height: 100vh;
        }
  
        .header p {
            font-size: 1.2rem;
            color: #b0b0b0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
        }

        .product-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .product-price {
            font-size: 1.3rem;
            color: #4ecdc4;
            font-weight: bold;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .product-description {
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .product-variations {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .variation {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 12px;
            border-radius: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #e0e0e0;
        }

        .variation strong {
            color: #4ecdc4;
        }

        .snipcart-add-item {
            width: 100%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .snipcart-add-item:hover {
            background: linear-gradient(45deg, #ff5252, #26a69a);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
        }

        .no-products {
            text-align: center;
            padding: 60px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .no-products h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #4ecdc4;
        }

        .no-products p {
            color: #b0b0b0;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .admin-link {
            color: #ff6b6b;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .admin-link:hover {
            color: #4ecdc4;
        }

        .navigation {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            margin-bottom: 30px;
            border-radius: 15px;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            transform: scale(1.05);
        }

        .gallery-container {
            position: relative;
            margin-bottom: 20px;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            justify-content: center;
        }

        .gallery-thumb {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .gallery-thumb:hover,
        .gallery-thumb.active {
            border-color: #4ecdc4;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .nav-menu {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }