
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');
        :root {
            --primary-dark: #0a0a0a;
            --secondary-dark: #1a1a1a;
            --accent-gold: #d4af37;
            --accent-light: #f8f6f0;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #2d2d2d 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--gradient-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: 76px; 
        }

        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1579737153406-38419616d418?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .admin-section {
            padding: 80px 0;
            background: var(--secondary-dark);
        }
        .admin-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            filter: blur(.5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        .admin-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: var(--text-light) !important;
            padding: 15px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .form-control:focus, .form-select:focus {
            background: rgba(26, 25, 25, 0.973) !important;
            border-color: var(--accent-gold) !important;
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
        }
        .form-label {
            color: var(--text-muted);
        }
        .btn-luxury {
            background: var(--gradient-gold);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(245, 87, 108, 0.3);
        }
        .btn-luxury:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5);
        }
        .btn-danger {
            background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
        }
        .btn-danger:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(201, 42, 42, 0.5);
        }

        .image-preview {
            width: 100%;
            height: 200px;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 1rem;
            position: relative;
            cursor: pointer;
        }
        .image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        .image-preview .placeholder {
            color: var(--text-muted);
            text-align: center;
        }
        .image-preview.has-image .placeholder {
            display: none;
        }
        .image-preview.has-image img {
            display: block;
        }
        .products-slider {
            margin-top: 3rem;
            padding: 2rem 0;
        }
        .slider-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-wrapper {
    padding: 10px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-button-next, 
.swiper-button-prev {
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold);
    opacity: 1;
}
.slick-prev, .slick-next {
    display: none !important;
}
        .product-slide {
            padding: 15px;
        }
        .product-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-gold);
        }
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .product-info {
            padding: 1.5rem;
        }
        .product-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .product-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .product-description {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            line-clamp: 3;
            overflow: hidden;
        }
        .product-category {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            color: var(--accent-gold);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .product-rating {
            margin-bottom: 1rem;
        }
        .product-actions {
            display: flex;
            gap: 10px;
        }
        .btn-sm {
            padding: 8px 15px;
            font-size: 0.85rem;
        }
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            z-index: 10;
        }
        .slick-prev:before, .slick-next:before {
            font-size: 40px;
            color: var(--accent-gold);
        }
        .slick-prev {
            left: -45px;
        }
        .slick-next {
            right: -45px;
        }
        .storage-warning {
            background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .admin-title {
                font-size: 2rem;
            }
            .slick-prev {
                left: -15px;
            }
            .slick-next {
                right: -15px;
            }
            body {
                padding-top: 66px;
            }
        }
