/* Creator Product Catalog - Custom Styles */
/* Version: 2.0.0 - Mobile Optimized */

#productsGrid .card-base {
    animation: popIn 0.3s ease-out;
    cursor: pointer;
    transition: all 0.2s ease;
}

#productsGrid .card-base:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(100, 108, 255, 0.4);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Products grid - 2 columns */
    #productsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    #productsGrid .card-base {
        padding: 10px !important;
    }
    
    /* Product images */
    .product-image {
        height: 120px !important;
    }
    
    /* Product info */
    .product-name {
        font-size: 12px !important;
    }
    
    .product-price {
        font-size: 14px !important;
    }
    
    /* Creator info header */
    .creator-info {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }
    
    .creator-avatar {
        width: 80px !important;
        height: 80px !important;
    }
    
    /* Filter buttons */
    .filter-buttons {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    
    .filter-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    #productsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .product-image {
        height: 100px !important;
    }
    
    .product-name {
        font-size: 11px !important;
    }
}

