/* ============================================
   SHOP DESKTOP CSS - Modern & Professional
   ============================================ */

/* Desktop Only Styles */
@media (min-width: 769px) {
    /* Shop Section Desktop */
    .shop-section {
        padding-top: 40px !important;
        padding-bottom: 60px !important;
        background: #f8f9fa !important;
    }
    
    /* Sidebar Desktop */
    .shop-sidebar {
        background: #ffffff;
        padding: 1.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        border: 1px solid #e9ecef;
    }
    
    .shop-sidebar h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #800020;
    }
    
    /* Filter Buttons Desktop */
    .shop-sidebar .filter-btn-all {
        background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
        color: #ffffff;
        border: none;
        font-weight: 600;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    }
    
    .shop-sidebar .filter-btn-all:hover,
    .shop-sidebar .filter-btn-all.active {
        background: linear-gradient(135deg, #6B0000 0%, #8B0000 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(139, 0, 0, 0.4);
    }
    
    .shop-sidebar .filter-btn-option {
        background: transparent;
        color: #0066cc;
        border: 1px solid #e9ecef;
        text-align: left;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .shop-sidebar .filter-btn-option i {
        color: #0066cc;
    }
    
    .shop-sidebar .filter-btn-option:hover,
    .shop-sidebar .filter-btn-option.active {
        background: #f0f7ff;
        border-color: #0066cc;
        color: #0066cc;
        transform: translateX(5px);
    }
    
    .shop-sidebar .filter-btn-option.active {
        background: #e6f2ff;
        font-weight: 600;
    }
    
    /* Product Cards Desktop */
    .product-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    /* Banner Dots Effect */
    .banner-dots {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
            radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
            radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
        background-size: 200px 200px, 150px 150px, 180px 180px, 120px 120px;
        background-position: 0 0, 50px 50px, 100px 100px, 150px 150px;
        animation: dotsFloat 20s infinite ease-in-out;
        opacity: 0.6;
    }
    
    @keyframes dotsFloat {
        0%, 100% { transform: translate(0, 0); }
        25% { transform: translate(10px, -10px); }
        50% { transform: translate(-5px, 5px); }
        75% { transform: translate(5px, 10px); }
    }
}
