/* 91Silver Screen Products Styles - hbjialilong.com 2025 */

.silverscreen-products-layout {
    --silverscreen-products-accent: #10b981;
    --silverscreen-products-highlight: #f59e0b;
}

.silverscreen-page-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.silverscreen-featured-product {
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
}

.silverscreen-featured-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

.silverscreen-product-card .silverscreen-card-wrapper {
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.silverscreen-product-card:hover .silverscreen-card-wrapper {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.silverscreen-card-badge {
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.silverscreen-card-price {
    padding: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

@keyframes silverscreen-products-fade-in {
    0% { opacity: 0; transform: translateY(25px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.silverscreen-product-card {
    animation: silverscreen-products-fade-in 0.9s ease-out forwards;
}

.silverscreen-product-card:nth-child(1) { animation-delay: 0.1s; }
.silverscreen-product-card:nth-child(2) { animation-delay: 0.2s; }
.silverscreen-product-card:nth-child(3) { animation-delay: 0.3s; }
.silverscreen-product-card:nth-child(4) { animation-delay: 0.4s; }
.silverscreen-product-card:nth-child(5) { animation-delay: 0.5s; }
.silverscreen-product-card:nth-child(6) { animation-delay: 0.6s; }