/* =============================================
   O'GELATO — PAGE CATALOGUE / LISTING
   Styles communs pour toutes les pages catalogue
   Thème par défaut : Fraise / Chocolat (machines-glaces)
   ============================================= */

/* =============================================
   VARIABLES ADDITIONNELLES PAR THEME
   (Les variables globales sont dans global.css)
   ============================================= */

:root {
    /* Glacier theme */
    --glacier: #00B4D8;
    --glacier-light: #48CAE4;
    --glacier-dark: #0096C7;

    /* Occasion theme */
    --orange: #FF9800;
    --orange-light: #FFC107;
    --orange-dark: #E68900;

    /* Cuisson theme */
    --cuisson-primary: #1A6B64;
    --cuisson-accent: #2EC4B6;

    /* Mix granite theme */
    --mix-granite-primary: #2E7D8A;
    --mix-granite-accent: #3A9FAD;

    /* Granité theme (turquoise) */
    --granite-primary: #0097A7;
    --granite-accent: #26C6DA;
    --granite-dark: #00838F;

    /* Gradients additionnels */
    --gradient-glacier: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-light) 100%);
    --gradient-occasion: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    --gradient-cuisson: linear-gradient(135deg, var(--cuisson-primary) 0%, var(--cuisson-accent) 100%);
    --gradient-mix-granite: linear-gradient(135deg, var(--mix-granite-primary) 0%, var(--mix-granite-accent) 100%);
    --gradient-granite: linear-gradient(135deg, var(--granite-primary) 0%, var(--granite-accent) 100%);
}


/* =============================================
   1. HERO SECTION — UNIQUE STYLE
   Toutes les pages catalogue utilisent .page-hero
   ============================================= */

.page-hero {
    padding: 10rem 2rem 4rem;
    background: var(--chocolat);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* --- Hero badge (commun) --- */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

/* --- Alias .hero vers .page-hero pour cornets, vitrines, location --- */
.hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--chocolat);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* --- Hero title / subtitle (pour vitrines, cornets, location) --- */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

/* --- Hero content (vitrines, location) --- */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Hero features grid (vitrines) --- */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: white;
}

.hero-feature::before {
    content: '\2713';
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* --- Hero location (location page) --- */
.hero-location {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--fraise);
}


/* =============================================
   2. CATEGORY SECTION
   ============================================= */

.category-section {
    padding: 4rem 2rem;
}

.category-section:nth-child(odd) {
    background: white;
}

.category-section:nth-child(even) {
    background: transparent;
}

.category-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--fraise);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--gradient-fraise);
    border-radius: 2px;
}

/* --- Category subtitle --- */
.category-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}


/* =============================================
   3. PRODUCTS GRID
   ============================================= */

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Variante auto-fit pour cornets, vitrines */
.products-grid.auto-fit,
.content-section .products-grid,
.products-section .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}


/* =============================================
   4. PRODUCT CARD — STYLE UNIQUE
   ============================================= */

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61, 44, 41, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fraise);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(232, 74, 95, 0.2);
    border-color: var(--fraise-light);
}

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

/* --- Product badge --- */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--fraise);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* --- Product stock badge --- */
.product-stock {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--menthe);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
}


/* =============================================
   5. PRODUCT CARD INNER
   ============================================= */

/* --- Product header --- */
.product-header {
    background: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.product-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

/* --- Product image --- */
.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--chocolat) 0%, var(--chocolat-light) 100%);
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image-placeholder {
    font-size: 8rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* --- Product specs --- */
.product-specs {
    padding: 1.5rem;
    background: white;
    flex-grow: 1;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.spec-item::before {
    content: '\2713';
    color: var(--fraise);
    font-weight: bold;
    flex-shrink: 0;
}

/* --- Product footer --- */
.product-footer {
    padding: 1rem 1.5rem;
    background: var(--cream);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: auto;
}

.product-footer.has-price {
    background: var(--menthe);
    color: white;
}

/* --- Product link --- */
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}


/* =============================================
   6. PRODUCT INFO VARIANT (occasions)
   ============================================= */

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* --- Spec tag (occasions) --- */
.product-info .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 1rem;
}

.spec-tag {
    background: var(--cream);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Product price row (occasions) --- */
.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-label {
    color: var(--fraise);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Button voir (occasions) --- */
.btn-voir {
    background: var(--gradient-fraise);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-voir:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 74, 95, 0.3);
}

/* --- Product name (vitrines) --- */
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* --- Product CTA (vitrines) --- */
.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gradient-fraise);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card:hover .product-cta {
    background: var(--dark);
}


/* =============================================
   7. INFO SECTION
   ============================================= */

.info-section {
    padding: 4rem 2rem;
    background: white;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
}

.info-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-list li::before {
    content: attr(data-num);
    background: var(--fraise);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* --- Info text (simplified variant) --- */
.info-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}


/* =============================================
   8. INFO BANNER (occasions)
   ============================================= */

.info-banner {
    background: white;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--fraise);
}

.info-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-fraise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--gray);
    font-size: 0.9rem;
}


/* =============================================
   9. INFO FEATURES (cuisson)
   ============================================= */

.info-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-feature {
    text-align: center;
    padding: 1.5rem;
}

.info-feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-feature h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-feature p {
    color: var(--gray);
    font-size: 0.95rem;
}


/* =============================================
   10. FEATURES SECTION
   ============================================= */

.features-section {
    background: white;
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
}


/* =============================================
   11. COMPARISON TABLE
   ============================================= */

.comparison-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.comparison-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--gradient-fraise);
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(107, 91, 85, 0.1);
    color: var(--gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}


/* =============================================
   12. SECTION INTRO
   ============================================= */

.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* --- Content section (cornets wrapper) --- */
.content-section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =============================================
   13. PRODUCTS SECTION (vitrines / occasions)
   ============================================= */

.products-section {
    padding: 5rem 2rem;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}


/* =============================================
   14. CTA SECTION
   ============================================= */

.cta-section {
    background: var(--gradient-fraise);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2,
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p,
.cta-text {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-white,
.btn-primary {
    background: white;
    color: var(--fraise);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-outline,
.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-outline:hover,
.btn-secondary:hover {
    background: white;
    color: var(--fraise);
}


/* =============================================
   15. LOCATION / SERVICE SPECIFIC
   ============================================= */

/* --- Location types --- */
.location-types {
    padding: 5rem 2rem;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.type-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 74, 95, 0.25);
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.type-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--fraise);
    margin-bottom: 1rem;
}

.type-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.type-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.type-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--gray);
}

.type-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--fraise);
    font-weight: bold;
}

.type-highlight {
    background: var(--vanille);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--fraise);
    margin-top: auto;
    margin-top: 1.5rem;
}

.type-highlight strong {
    color: var(--fraise);
}

/* --- Advantages section --- */
.advantages-section {
    padding: 5rem 2rem;
    background: white;
}

.advantages-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-fraise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.advantage-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.advantage-content p {
    color: var(--gray);
    font-size: 0.95rem;
}


/* =============================================
   16. RESPONSIVE
   ============================================= */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .hero {
        padding: 8rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-section {
        padding: 3rem 1.5rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .products-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .location-types,
    .advantages-section,
    .cta-section,
    .features-section,
    .comparison-section {
        padding: 3rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .info-features {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   17. COLOR THEMES
   ============================================= */


/* -----------------------------------------
   DEFAULT THEME (Fraise / Chocolat)
   Pour : machines-glaces
   Aucune classe body requise
   ----------------------------------------- */
/* (Toutes les couleurs par defaut ci-dessus) */


/* -----------------------------------------
   THEME: Caramel
   Pour : cornets-glaces
   ----------------------------------------- */
body.theme-catalogue-caramel .page-hero {
    background: var(--caramel-dark);
}

body.theme-catalogue-caramel .hero {
    background: var(--caramel-dark);
}

body.theme-catalogue-caramel .category-title {
    color: var(--caramel-dark);
}

body.theme-catalogue-caramel .category-title::after {
    background: var(--gradient-caramel);
}

body.theme-catalogue-caramel .product-card::before {
    background: var(--gradient-caramel);
}

body.theme-catalogue-caramel .product-card:hover {
    box-shadow: 0 25px 60px rgba(212, 165, 116, 0.25);
    border-color: var(--caramel);
}

body.theme-catalogue-caramel .product-badge {
    background: var(--caramel);
}

body.theme-catalogue-caramel .spec-item::before {
    color: var(--caramel);
}

body.theme-catalogue-caramel .product-image {
    background: linear-gradient(135deg, #f8f5f1 0%, #fff 100%);
}

body.theme-catalogue-caramel .product-footer {
    background: var(--vanille);
}

body.theme-catalogue-caramel .info-list li::before {
    background: var(--caramel);
}

body.theme-catalogue-caramel .comparison-table th {
    background: var(--gradient-caramel);
}

body.theme-catalogue-caramel .comparison-title {
    color: var(--caramel-dark);
}

body.theme-catalogue-caramel .feature-item h3 {
    color: var(--caramel-dark);
}

body.theme-catalogue-caramel .cta-section {
    background: var(--gradient-caramel);
}

body.theme-catalogue-caramel .btn-outline:hover,
body.theme-catalogue-caramel .btn-secondary:hover {
    color: var(--caramel-dark);
}

body.theme-catalogue-caramel .btn-white,
body.theme-catalogue-caramel .btn-primary {
    color: var(--caramel-dark);
}

body.theme-catalogue-caramel .product-cta {
    background: var(--gradient-caramel);
}


/* -----------------------------------------
   THEME: Glacier
   Pour : accessoires-granites
   ----------------------------------------- */
body.theme-catalogue-glacier .page-hero {
    background: var(--glacier-dark);
}

body.theme-catalogue-glacier .hero {
    background: var(--glacier-dark);
}

body.theme-catalogue-glacier .category-title {
    color: var(--glacier);
}

body.theme-catalogue-glacier .category-title::after {
    background: var(--gradient-glacier);
}

body.theme-catalogue-glacier .product-card::before {
    background: var(--gradient-glacier);
}

body.theme-catalogue-glacier .product-card:hover {
    box-shadow: 0 25px 60px rgba(0, 180, 216, 0.25);
    border-color: var(--glacier-light);
}

body.theme-catalogue-glacier .product-badge {
    background: var(--glacier);
}

body.theme-catalogue-glacier .spec-item::before {
    color: var(--glacier);
}

body.theme-catalogue-glacier .product-image {
    background: linear-gradient(145deg, var(--glacier-dark) 0%, var(--glacier) 100%);
}

body.theme-catalogue-glacier .product-footer {
    background: #F0F9FF;
}

body.theme-catalogue-glacier .product-footer.has-price {
    background: var(--menthe);
    color: var(--dark);
}

body.theme-catalogue-glacier .info-container {
    background: #F0F9FF;
}

body.theme-catalogue-glacier .info-list li::before {
    background: var(--glacier);
}

body.theme-catalogue-glacier .info-title {
    color: var(--dark);
}

body.theme-catalogue-glacier .comparison-table th {
    background: var(--gradient-glacier);
}

body.theme-catalogue-glacier .cta-section {
    background: var(--gradient-glacier);
}

body.theme-catalogue-glacier .btn-white,
body.theme-catalogue-glacier .btn-primary {
    color: var(--glacier-dark);
}

body.theme-catalogue-glacier .btn-outline:hover,
body.theme-catalogue-glacier .btn-secondary:hover {
    color: var(--glacier-dark);
}


/* -----------------------------------------
   THEME: Tech
   Pour : pieces-detachees-glaces
   ----------------------------------------- */
body.theme-catalogue-tech .page-hero {
    background: var(--tech-blue);
}

body.theme-catalogue-tech .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body.theme-catalogue-tech .category-title {
    color: var(--tech-blue);
}

body.theme-catalogue-tech .category-title::after {
    background: linear-gradient(90deg, var(--tech-accent), transparent);
}

body.theme-catalogue-tech .product-card::before {
    background: var(--tech-accent);
}

body.theme-catalogue-tech .product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 96, 100, 0.15);
    border-color: var(--tech-accent);
}

body.theme-catalogue-tech .product-badge {
    background: var(--tech-accent);
}

body.theme-catalogue-tech .spec-item::before {
    color: var(--tech-accent);
}

body.theme-catalogue-tech .product-image {
    background: radial-gradient(circle at center, #ffffff 0%, #eceff1 100%);
}

body.theme-catalogue-tech .product-image img {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

body.theme-catalogue-tech .product-card:hover .product-image img {
    transform: scale(1.05);
}

body.theme-catalogue-tech .product-footer {
    background: var(--tech-light);
    color: var(--tech-blue);
}

body.theme-catalogue-tech .info-container {
    background: var(--tech-light);
    border: 1px solid rgba(0, 172, 193, 0.2);
}

body.theme-catalogue-tech .info-title {
    color: var(--tech-blue);
}

body.theme-catalogue-tech .info-list li::before {
    background: var(--tech-accent);
}

body.theme-catalogue-tech .comparison-table th {
    background: var(--gradient-tech);
}

body.theme-catalogue-tech .cta-section {
    background: var(--gradient-tech);
}

body.theme-catalogue-tech .btn-white,
body.theme-catalogue-tech .btn-primary {
    color: var(--tech-blue);
}

body.theme-catalogue-tech .btn-outline:hover,
body.theme-catalogue-tech .btn-secondary:hover {
    color: var(--tech-blue);
}


/* -----------------------------------------
   THEME: Occasion (orange)
   Pour : occasions-glaciers
   ----------------------------------------- */
body.theme-catalogue-occasion .page-hero {
    background: var(--orange-dark);
}

body.theme-catalogue-occasion .product-badge {
    background: var(--orange);
    color: var(--dark);
}

body.theme-catalogue-occasion .product-card:hover {
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.2);
    border-color: var(--orange-light);
}

body.theme-catalogue-occasion .product-card::before {
    background: var(--gradient-occasion);
}

body.theme-catalogue-occasion .product-image {
    background: linear-gradient(145deg, var(--orange-dark) 0%, var(--orange) 100%);
}

body.theme-catalogue-occasion .price-label {
    color: var(--orange);
}

body.theme-catalogue-occasion .spec-item::before {
    color: var(--orange);
}

body.theme-catalogue-occasion .info-banner {
    border-left-color: var(--orange);
}

body.theme-catalogue-occasion .info-icon {
    background: var(--gradient-occasion);
}

body.theme-catalogue-occasion .product-stock {
    background: var(--menthe);
}

body.theme-catalogue-occasion .btn-voir {
    background: var(--gradient-occasion);
    color: var(--dark);
}

body.theme-catalogue-occasion .cta-section {
    background: var(--gradient-occasion);
}

body.theme-catalogue-occasion .cta-section h2,
body.theme-catalogue-occasion .cta-section p {
    color: var(--dark);
}

body.theme-catalogue-occasion .btn-white,
body.theme-catalogue-occasion .btn-primary {
    color: var(--orange-dark);
}

body.theme-catalogue-occasion .btn-outline,
body.theme-catalogue-occasion .btn-secondary {
    border-color: var(--dark);
    color: var(--dark);
}

body.theme-catalogue-occasion .btn-outline:hover,
body.theme-catalogue-occasion .btn-secondary:hover {
    background: var(--dark);
    color: var(--orange-light);
}

body.theme-catalogue-occasion .section-title {
    color: var(--dark);
}


/* -----------------------------------------
   THEME: Vitrine
   Pour : vitrines-glaces
   ----------------------------------------- */
body.theme-catalogue-vitrine .page-hero {
    background: var(--vitrine);
}

body.theme-catalogue-vitrine .hero {
    background: var(--vitrine);
}

body.theme-catalogue-vitrine .category-title {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .category-title::after {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .product-card::before {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .product-card:hover {
    box-shadow: 0 20px 50px rgba(74, 136, 149, 0.25);
    border-color: var(--vitrine-light);
}

body.theme-catalogue-vitrine .product-badge {
    background: var(--vitrine);
}

body.theme-catalogue-vitrine .spec-item::before {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .product-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

body.theme-catalogue-vitrine .product-cta {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .product-card:hover .product-cta {
    background: var(--dark);
}

body.theme-catalogue-vitrine .info-list li::before {
    background: var(--vitrine);
}

body.theme-catalogue-vitrine .comparison-table th {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .cta-section {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .btn-white,
body.theme-catalogue-vitrine .btn-primary {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .btn-outline:hover,
body.theme-catalogue-vitrine .btn-secondary:hover {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .type-title {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .type-card:hover {
    box-shadow: 0 20px 60px rgba(74, 136, 149, 0.25);
}

body.theme-catalogue-vitrine .type-features li::before {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .type-highlight {
    border-left-color: var(--vitrine);
}

body.theme-catalogue-vitrine .type-highlight strong {
    color: var(--vitrine);
}

body.theme-catalogue-vitrine .advantage-icon {
    background: var(--gradient-vitrine);
}

body.theme-catalogue-vitrine .section-title {
    color: var(--dark);
}


/* -----------------------------------------
   THEME: Location (Fraise)
   Pour : location-machines
   ----------------------------------------- */
body.theme-catalogue-location .page-hero {
    background: var(--fraise);
}

body.theme-catalogue-location .hero {
    background: var(--fraise);
}

body.theme-catalogue-location .category-title {
    color: var(--fraise);
}

body.theme-catalogue-location .category-title::after {
    background: var(--gradient-fraise);
}

body.theme-catalogue-location .type-card:hover {
    box-shadow: 0 20px 60px rgba(232, 74, 95, 0.25);
}

body.theme-catalogue-location .type-title {
    color: var(--fraise);
}

body.theme-catalogue-location .type-features li::before {
    color: var(--fraise);
}

body.theme-catalogue-location .type-highlight {
    background: var(--vanille);
    border-left-color: var(--fraise);
}

body.theme-catalogue-location .type-highlight strong {
    color: var(--fraise);
}

body.theme-catalogue-location .advantage-icon {
    background: var(--gradient-fraise);
}

body.theme-catalogue-location .cta-section {
    background: var(--gradient-fraise);
}

body.theme-catalogue-location .btn-white,
body.theme-catalogue-location .btn-primary {
    color: var(--fraise);
}

body.theme-catalogue-location .btn-outline:hover,
body.theme-catalogue-location .btn-secondary:hover {
    color: var(--fraise);
}


/* -----------------------------------------
   THEME: Cuisson (vert émeraude)
   Pour : machines-cuisson
   ----------------------------------------- */
body.theme-catalogue-cuisson .page-hero {
    background: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .hero {
    background: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .category-title {
    color: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .category-title::after {
    background: var(--gradient-cuisson);
}

body.theme-catalogue-cuisson .product-card::before {
    background: var(--gradient-cuisson);
}

body.theme-catalogue-cuisson .product-card:hover {
    box-shadow: 0 25px 60px rgba(26, 107, 100, 0.2);
    border-color: var(--cuisson-accent);
}

body.theme-catalogue-cuisson .product-badge {
    background: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .spec-item::before {
    color: var(--cuisson-accent);
}

body.theme-catalogue-cuisson .product-image {
    background: linear-gradient(145deg, var(--cuisson-primary) 0%, var(--cuisson-accent) 100%);
}

body.theme-catalogue-cuisson .product-footer {
    background: #E0F2F1;
    color: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .product-footer.has-price {
    background: var(--menthe);
    color: var(--dark);
}

body.theme-catalogue-cuisson .info-list li::before {
    background: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .comparison-table th {
    background: var(--gradient-cuisson);
}

body.theme-catalogue-cuisson .cta-section {
    background: var(--gradient-cuisson);
}

body.theme-catalogue-cuisson .btn-white,
body.theme-catalogue-cuisson .btn-primary {
    color: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .btn-outline:hover,
body.theme-catalogue-cuisson .btn-secondary:hover {
    color: var(--cuisson-primary);
}

body.theme-catalogue-cuisson .info-feature .icon {
    color: var(--cuisson-primary);
}


/* -----------------------------------------
   THEME: Mix Granite (bleu-vert)
   Pour : mix-granites
   ----------------------------------------- */
body.theme-catalogue-mix-granite .page-hero {
    background: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .hero {
    background: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .category-title {
    color: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .category-title::after {
    background: var(--gradient-mix-granite);
}

body.theme-catalogue-mix-granite .product-card::before {
    background: var(--gradient-mix-granite);
}

body.theme-catalogue-mix-granite .product-card:hover {
    box-shadow: 0 25px 60px rgba(46, 125, 138, 0.2);
    border-color: var(--mix-granite-accent);
}

body.theme-catalogue-mix-granite .product-badge {
    background: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .spec-item::before {
    color: var(--mix-granite-accent);
}

body.theme-catalogue-mix-granite .product-image {
    background: linear-gradient(135deg, var(--mix-granite-primary) 0%, var(--mix-granite-accent) 100%);
}

body.theme-catalogue-mix-granite .product-image img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

body.theme-catalogue-mix-granite .product-footer {
    background: var(--cream);
}

body.theme-catalogue-mix-granite .info-list li::before {
    background: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .comparison-table th {
    background: var(--gradient-mix-granite);
}

body.theme-catalogue-mix-granite .cta-section {
    background: var(--gradient-mix-granite);
}

body.theme-catalogue-mix-granite .btn-white,
body.theme-catalogue-mix-granite .btn-primary {
    color: var(--mix-granite-primary);
}

body.theme-catalogue-mix-granite .btn-outline:hover,
body.theme-catalogue-mix-granite .btn-secondary:hover {
    color: var(--mix-granite-primary);
}


/* -----------------------------------------
   THEME: Granité (turquoise)
   Pour : machines-granites
   ----------------------------------------- */
body.theme-catalogue-granite .page-hero {
    background: var(--granite-dark);
}

body.theme-catalogue-granite .hero {
    background: var(--granite-dark);
}

body.theme-catalogue-granite .category-title {
    color: var(--granite-primary);
}

body.theme-catalogue-granite .category-title::after {
    background: var(--gradient-granite);
}

body.theme-catalogue-granite .product-card::before {
    background: var(--gradient-granite);
}

body.theme-catalogue-granite .product-card:hover {
    box-shadow: 0 25px 60px rgba(0, 151, 167, 0.2);
    border-color: var(--granite-accent);
}

body.theme-catalogue-granite .product-badge {
    background: var(--granite-primary);
}

body.theme-catalogue-granite .spec-item::before {
    color: var(--granite-accent);
}

body.theme-catalogue-granite .product-image {
    background: linear-gradient(145deg, var(--granite-dark) 0%, var(--granite-primary) 100%);
}

body.theme-catalogue-granite .product-footer {
    background: #E0F7FA;
    color: var(--granite-dark);
}

body.theme-catalogue-granite .product-footer.has-price {
    background: var(--menthe);
    color: var(--dark);
}

body.theme-catalogue-granite .info-container {
    background: #E0F7FA;
}

body.theme-catalogue-granite .info-list li::before {
    background: var(--granite-primary);
}

body.theme-catalogue-granite .comparison-table th {
    background: var(--gradient-granite);
}

body.theme-catalogue-granite .cta-section {
    background: var(--gradient-granite);
}

body.theme-catalogue-granite .btn-white,
body.theme-catalogue-granite .btn-primary {
    color: var(--granite-dark);
}

body.theme-catalogue-granite .btn-outline:hover,
body.theme-catalogue-granite .btn-secondary:hover {
    color: var(--granite-dark);
}
