/* K.B PRESTIGE - Dedicated styling for larger, more premium cards */

/* CSS Variables for Prestige Theme - K.B CRÉATEURS Golden Brand */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9f9f9;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-900: #171717;

    /* K.B CRÉATEURS Golden Brand Colors */
    --accent: #d4af37;
    --gold-primary: #d4af37;
    --gold-light: #F4D03F;
    --gold-cream: #F5F2E8;
    --gold-dark: #8B5A3C;
    --gold-amber: #FECA57;
    --gold-pale: #FDF8E4;
}

/* Hero Section - Prestige Theme */
.theme-prestige .hero {
    margin-top: 60px;
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/eclats_automne.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.theme-prestige .hero-content {
    max-width: 800px;
    padding: 0 24px;
}

.theme-prestige .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.theme-prestige .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.theme-prestige .hero-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    line-height: 1.4;
}

/* Breadcrumb styles moved to components/breadcrumb.css */

/* Products Container */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* Prestige card styles moved to components/product-card-prestige.css */

/* Theme-specific body styling for prestige */
.theme-prestige {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

/* Hero background already defined above with image */

.theme-prestige .collection-intro {
    text-align: center;
    margin-bottom: 48px;
}

.theme-prestige .collection-intro h2 {
    color: var(--gold-dark);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.theme-prestige .collection-intro p {
    color: var(--gray-600);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
    .theme-prestige .hero {
        min-height: 40vh;
        padding: 40px 16px;
    }

    .theme-prestige .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .theme-prestige .hero-content p {
        font-size: 1rem;
    }

    .theme-prestige .hero-tagline {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 16px;
        font-size: 12px;
    }

    .products-container {
        padding: 32px 16px;
    }

    .theme-prestige .collection-intro h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .theme-prestige .hero-content h1 {
        font-size: 1.8rem;
    }

    .theme-prestige .hero-content p,
    .theme-prestige .hero-tagline {
        font-size: 0.9rem;
    }

    .theme-prestige .collection-intro h2 {
        font-size: 20px;
    }
}