/* Collections Thématiques Styles 2025 */
.thematic-collections-wrapper-2025 {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.thematic-collections-header-2025 {
    text-align: center;
    margin-bottom: 3rem;
}

.thematic-collections-title-2025 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.thematic-collections-subtitle-2025 {
    font-size: 1.2rem;
    color: #666;
}

/* Grilles */
.thematic-collections-main-grid-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.thematic-collections-sub-grid-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Cards */
.thematic-collection-card-2025 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.thematic-collection-card-2025:hover {
    transform: translateY(-5px);
}

.thematic-collection-image-container-2025 {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.thematic-collection-img-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thematic-collection-overlay-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.thematic-collection-content-2025 {
    color: white;
    width: 100%;
}

.thematic-collection-name-2025 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.thematic-collection-desc-2025 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.thematic-collection-stats-2025 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.thematic-collection-count-2025,
.thematic-collection-offers-2025 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Boutons */
.thematic-collection-btn-2025 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thematic-collection-btn-2025:hover {
    background-color: #0056b3;
}

.thematic-collection-btn-small-2025 {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Section Nouveautés */
.thematic-collections-new-section-2025 {
    margin-top: 4rem;
}

.thematic-collections-new-title-2025 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.thematic-collections-new-grid-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.thematic-collection-product-card-2025 {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thematic-collection-product-image-2025 {
    position: relative;
    padding-top: 100%;
}

.thematic-collection-product-img-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thematic-collection-product-badge-2025 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff4757;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.thematic-collection-product-info-2025 {
    padding: 1.2rem;
}

.thematic-collection-product-name-2025 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.thematic-collection-product-collection-2025 {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.thematic-collection-product-price-2025 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.thematic-collection-product-btn-2025 {
    width: 100%;
    padding: 0.8rem;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.thematic-collection-product-btn-2025:hover {
    background-color: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .thematic-collections-wrapper-2025 {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .thematic-collections-header-2025 {
        margin-bottom: 2rem;
    }

    .thematic-collections-title-2025 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .thematic-collections-subtitle-2025 {
        font-size: 1rem;
    }

    .thematic-collections-main-grid-2025 {
        gap: 1rem;
    }

    /* Masquer les sous-collections sur mobile */
    .thematic-collections-sub-grid-2025 {
        display: none;
    }

    .thematic-collection-card-2025 {
        border-radius: 8px;
    }

    .thematic-collection-image-container-2025 {
        padding-top: 60%; /* Réduction de la hauteur sur mobile */
    }

    .thematic-collection-overlay-2025 {
        padding: 1rem;
    }

    .thematic-collection-name-2025 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .thematic-collection-desc-2025 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .thematic-collection-stats-2025 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .thematic-collection-btn-2025 {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .thematic-collection-product-card-2025 {
        border-radius: 8px;
    }

    .thematic-collection-product-image-2025 {
        padding-top: 100%;
    }

    .thematic-collection-product-info-2025 {
        padding: 0.8rem;
    }

    .thematic-collection-product-name-2025 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .thematic-collection-product-collection-2025 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .thematic-collection-product-price-2025 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .thematic-collection-product-btn-2025 {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .thematic-collection-product-badge-2025 {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Ajustements pour très petits écrans */
@media (max-width: 480px) {
    .thematic-collections-wrapper-2025 {
        margin: 0.5rem auto;
    }

    .thematic-collections-title-2025 {
        font-size: 1.5rem;
    }

    .thematic-collections-main-grid-2025 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .thematic-collections-new-grid-2025 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .thematic-collection-image-container-2025 {
        padding-top: 50%; /* Encore plus court sur petit mobile */
    }

    .thematic-collection-overlay-2025 {
        padding: 0.8rem;
    }

    .thematic-collection-stats-2025 {
        flex-direction: column;
        gap: 0.3rem;
    }

    .thematic-collection-product-info-2025 {
        padding: 0.6rem;
    }
}
