/* Catalogue Specifics */
.catalogue-hero {
    background-color: var(--lux-black);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(197, 160, 45, 0.7)), url('/public/images/prestiges/1.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.catalogue-hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
}

.catalogue-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Category Sections */
.category-section {
    padding: 100px 0;
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.category-header .section-title {
    margin-bottom: 20px;
}

.category-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Products Mini Grid (Image only focus) */
.products-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Modal Enhancements for Catalogue */
#productModal .modal-content {
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .catalogue-hero h1 {
        font-size: 3rem;
    }
    
    .category-section {
        padding: 60px 0;
    }
    
    .products-mini-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    
    .product-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .catalogue-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-mini-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card {
        height: 220px;
    }
}
