/* ============================================================
   JL'O DESIGN - SECTIONS DE LA PAGE D'ACCUEIL
   sections.css - VERSION FINALE SANS DOUBLONS
   ============================================================ */


/* ============================================================
   1. STRUCTURE COMMUNE
   ============================================================ */
.home-section {
    padding: 4rem 0;
}

.home-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home-section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--color-black);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.home-section-subtitle {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Section label (petit texte doré au-dessus du titre) */
.section-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

/* Ligne décorative sous le titre */
.section-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961, #a0822a);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Header produits (titre centré + lien à droite) */
.products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-section-header .home-section-title {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-spacer {
    visibility: hidden;
    flex: 1;
}

.see-all-link {
    color: var(--color-gold);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.see-all-link:hover {
    color: var(--color-gold-dark);
    gap: 0.7rem;
}

/* Etat vide générique */
.section-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    background: #faf8f4;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-empty-state i {
    font-size: 3rem;
    color: #ddd;
}

.section-empty-state p {
    color: #aaa;
    font-size: 1rem;
    margin: 0;
}


/* ============================================================
   2. SECTION "POUR TOUTE LA FAMILLE"
   ============================================================ */
.family-section {
    padding: 4rem 0;
    background: #fff;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ===== CATEGORY CARD ===== */
.category-card {
    position: relative;
    display: block;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md, 0 8px 25px rgba(0,0,0,0.12));
}

/* Media (vraie image) */
.category-card-media {
    position: absolute;
    inset: 0;
    background: #f3f3f3;
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-img {
    transform: scale(1.05);
}

/* Overlay */
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.1) 100%
    );
    transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.5) 55%,
        rgba(0,0,0,0.15) 100%
    );
}

/* Contenu */
.category-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    color: #fff;
    z-index: 2;
    text-align: center;
}

.category-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-card-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.category-card-button {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-button {
    background: #c9a961;
    border-color: #c9a961;
    color: #fff;
}

/* Icône catégorie */
.category-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(201,169,97,0.2);
    border: 1px solid rgba(201,169,97,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #c9a961;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-icon {
    background: #c9a961;
    color: #fff;
    border-color: #c9a961;
}


/* ============================================================
   3. CARTE PRODUIT (partagée new_products + favorites)
   ============================================================ */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Image wrapper */
.product-card-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f8f8f8;
}

.product-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Placeholder */
.product-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0e8d8, #e8dcc8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(201,169,97,0.4);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    background: #1a1a1a;
    color: #fff;
}

.product-badge.promo { background: #dc3545; }
.product-badge.new { background: #c9a961; }
.product-badge.best {
    background: linear-gradient(135deg, #c9a961, #a0822a);
}
.product-badge.featured {
    background: linear-gradient(135deg, #c9a961, #a0822a);
}

/* Wishlist */
.product-wishlist,
.wishlist-toggle-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-wishlist:hover,
.wishlist-toggle-btn:hover,
.product-wishlist.active,
.wishlist-toggle-btn.active {
    background: #fff;
    transform: scale(1.1);
}

.product-wishlist i,
.wishlist-toggle-btn i {
    font-size: 0.9rem;
    color: #aaa;
    transition: color 0.3s ease;
}

.product-wishlist:hover i,
.wishlist-toggle-btn:hover i,
.product-wishlist.active i,
.wishlist-toggle-btn.active i {
    color: #e74c3c;
}

/* Animation coeur */
.product-wishlist.active i,
.wishlist-toggle-btn.active i {
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Actions au survol */
.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transform: translateY(100%);
    transition: transform 0.35s ease;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-body, 'Poppins', sans-serif);
    border: none;
    cursor: pointer;
}

.product-action-btn:hover {
    background: #c9a961;
    color: #fff;
}

.product-action-cart {
    background: #c9a961 !important;
    color: #fff !important;
}

.product-action-cart:hover {
    background: #a0822a !important;
}

.product-action-disabled {
    background: rgba(255,255,255,0.6) !important;
    color: #aaa !important;
    cursor: not-allowed;
}

/* Infos produit */
.product-card-info {
    padding: 1rem 1.1rem 1.25rem;
}

.product-card-category {
    font-size: 0.72rem;
    color: #c9a961;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.product-card-name {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-name a:hover {
    color: #c9a961;
}

/* Étoiles */
.product-card-stars,
.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    color: #c9a961;
}

.rating-stars {
    display: inline-flex;
    gap: 1px;
    color: #c9a961;
    font-size: 0.7rem;
}

.rating-stars .fa-star.empty,
.rating-stars .empty {
    color: var(--color-gray-300, #ddd);
}

.product-card-reviews-count,
.rating-count {
    color: #aaa;
    font-size: 0.72rem;
    margin-left: 4px;
}

/* Prix */
.product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.current-price.promo { color: #dc3545; }

.old-price {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
}

/* Stock */
.product-card-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.product-card-stock.out { color: #dc3545; }
.product-card-stock.low { color: #fd7e14; }

/* Bouton ajout panier rapide (position absolute) */
.product-add-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border: none;
    opacity: 0;
    transform: translateY(10px);
}

.product-card:hover .product-add-cart {
    opacity: 1;
    transform: translateY(0);
}

.product-add-cart:hover {
    background: #c9a961;
    transform: scale(1.1);
}


/* ============================================================
   4. SWIPER - PERSONNALISATION PARTAGÉE
   ============================================================ */
.products-swiper {
    position: relative;
    padding: 0.5rem 0 3rem;
}

/* Navigation */
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next,
.products-prev,
.products-next,
.fav-prev,
.fav-next {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12) !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease !important;
    border: 1px solid #f0f0f0;
    top: 35%;
}

.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover,
.products-prev:hover,
.products-next:hover,
.fav-prev:hover,
.fav-next:hover {
    background: #c9a961 !important;
    color: #fff !important;
    border-color: #c9a961;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after,
.products-prev::after,
.products-next::after,
.fav-prev::after,
.fav-next::after {
    display: none !important;
}

.products-swiper .swiper-button-prev { left: -10px; }
.products-swiper .swiper-button-next { right: -10px; }

/* Pagination */
.products-swiper .swiper-pagination,
.products-pagination,
.fav-pagination {
    bottom: 0;
}

.products-swiper .swiper-pagination-bullet,
.products-pagination .swiper-pagination-bullet,
.fav-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-gray-300, #ddd);
    opacity: 1;
    transition: all 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active,
.products-pagination .swiper-pagination-bullet-active,
.fav-pagination .swiper-pagination-bullet-active {
    background: #c9a961;
    width: 30px;
    border-radius: 4px;
}


/* ============================================================
   5. SECTION NOUVEAUTÉS
   ============================================================ */
.products-section {
    padding: 4rem 0;
    background: #fff;
}

.section-title-block {
    text-align: center;
    flex: 2;
}


/* ============================================================
   6. SECTION FAVORITES
   ============================================================ */
.favorites-section {
    padding: 4rem 0;
    background: #faf8f4;
}

.title-accent {
    display: block;
    font-style: italic;
    color: #c9a961;
    font-size: 0.85em;
}


/* ============================================================
   7. SECTION PRESTIGE BANNER
   ============================================================ */
.prestige-banner-section {
    padding: 2rem 0;
    background: #fff;
}

.prestige-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow-lg, 0 20px 60px rgba(0,0,0,0.2));
}

.prestige-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201,169,97,0.3) 0%, transparent 70%),
                linear-gradient(135deg, #C9A961 0%, #8B5A2B 50%, #1a1a1a 100%);
    opacity: 0.7;
}

.prestige-banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,1) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0) 100%);
}

.prestige-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201,169,97,0.2) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.prestige-banner-content {
    position: relative;
    z-index: 2;
    padding: 3rem 3.5rem;
    max-width: 55%;
    color: #fff;
}

.prestige-banner-subtitle {
    font-family: var(--font-heading);
    font-size: var(--fs-xs, 0.75rem);
    color: #c9a961;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.prestige-banner-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prestige-banner-title .year {
    color: #c9a961;
    font-style: italic;
}

.prestige-banner-description {
    font-size: var(--fs-sm, 0.9rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.prestige-banner-button {
    display: inline-block;
    background: #c9a961;
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: var(--fs-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 8px);
    transition: all 0.3s ease;
    border: 2px solid #c9a961;
    text-decoration: none;
}

.prestige-banner-button:hover {
    background: transparent;
    color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,169,97,0.3);
}

.prestige-banner-corner-tl,
.prestige-banner-corner-br {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

.prestige-banner-corner-tl {
    top: 20px;
    left: 20px;
    border-top: 2px solid #c9a961;
    border-left: 2px solid #c9a961;
}

.prestige-banner-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid #c9a961;
    border-right: 2px solid #c9a961;
}


/* ============================================================
   8. SECTION SUR-MESURE (CUSTOM)
   ============================================================ */
.custom-section {
    padding: 3rem 0;
    background: var(--color-cream, #faf8f4);
}

.custom-wrapper {
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}

.custom-left {
    border-right: 1px solid var(--color-gray-200, #e9e9e9);
    padding-right: 2rem;
}

.custom-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl, 1.4rem);
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.custom-description {
    font-size: var(--fs-sm, 0.9rem);
    color: var(--color-gray-500, #888);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.custom-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-custom-black {
    background: #1a1a1a;
    color: #fff;
    padding: 0.85rem 1.5rem;
    font-size: var(--fs-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 8px);
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-custom-black:hover {
    background: transparent;
    color: #1a1a1a;
}

.btn-custom-gold {
    background: #c9a961;
    color: #fff;
    padding: 0.85rem 1.5rem;
    font-size: var(--fs-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 8px);
    transition: all 0.3s ease;
    border: 2px solid #c9a961;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-custom-gold:hover {
    background: transparent;
    color: #c9a961;
}

/* Étapes processus */
.custom-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}

.custom-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, rgba(201,169,97,0.3), #c9a961, rgba(201,169,97,0.3));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a961;
    font-size: 1.2rem;
    margin: 0 auto 0.85rem;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: #c9a961;
    color: #fff;
    transform: translateY(-3px);
}

.step-title {
    font-size: var(--fs-xs, 0.75rem);
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step-description {
    font-size: 0.7rem;
    color: var(--color-gray-500, #888);
    line-height: 1.4;
}


/* ============================================================
   9. SECTION EXPÉRIENCE
   ============================================================ */
.experience-section {
    padding: 3rem 0;
    background: #1a1a1a;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.experience-item {
    text-align: center;
    color: #fff;
    padding: 1rem 0.5rem;
}

.experience-icon {
    color: #c9a961;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-icon {
    transform: scale(1.15);
}

.experience-title {
    font-size: var(--fs-sm, 0.9rem);
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.experience-description {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}


/* ============================================================
   10. SECTION ELLES UNIVERS
   ============================================================ */
.universe-section {
    padding: 4rem 0;
    background: #fff;
}

.universe-grid-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.universe-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 2rem;
}

/* Card univers */
.universe-card {
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.universe-card-large {
    aspect-ratio: 16/9;
}

.universe-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Media */
.universe-card-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c9a961, #a0822a);
}

.universe-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.universe-card:hover .universe-card-img {
    transform: scale(1.08);
}

/* Overlay */
.universe-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.05) 100%
    );
    transition: background 0.3s ease;
}

.universe-card:hover .universe-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.5) 55%,
        rgba(0,0,0,0.1) 100%
    );
}

/* Contenu */
.universe-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.universe-card-content::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #c9a961;
    margin: 0 auto 0.5rem;
    transition: width 0.3s ease;
}

.universe-card:hover .universe-card-content::before {
    width: 50px;
}

.universe-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.universe-card-large .universe-card-title {
    font-size: 1.3rem;
}

.universe-card-subtitle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.universe-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: transparent;
    font-family: var(--font-body, 'Poppins', sans-serif);
    transition: all 0.3s ease;
    transform: translateY(5px);
    opacity: 0;
}

.universe-card:hover .universe-card-btn {
    color: #c9a961;
    transform: translateY(0);
    opacity: 1;
}

/* Placeholders couleurs */
.universe-placeholder-bureau { background: linear-gradient(135deg, #2c3e50, #3d5a80) !important; }
.universe-placeholder-mariage { background: linear-gradient(135deg, #f8e1e7, #d4a0b0) !important; }
.universe-placeholder-prestige { background: linear-gradient(135deg, #c9a961, #a0822a) !important; }
.universe-placeholder-sortie { background: linear-gradient(135deg, #27ae60, #1e8449) !important; }
.universe-placeholder-soiree { background: linear-gradient(135deg, #1a1a2e, #16213e) !important; }
.universe-placeholder-assemblee { background: linear-gradient(135deg, #8e44ad, #6c3483) !important; }
.universe-placeholder-famille { background: linear-gradient(135deg, #e67e22, #ca6f1e) !important; }
.universe-placeholder-tradition { background: linear-gradient(135deg, #c0392b, #96281b) !important; }
.universe-placeholder-voyage { background: linear-gradient(135deg, #2980b9, #1a6fa3) !important; }

.universe-cta {
    text-align: center;
    margin-top: 1rem;
}




/* ============================================================
   12. SECTION BLOG
   ============================================================ */
.blog-section {
    padding: 5rem 0;
    background: #faf8f4;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Featured */
.blog-card-featured {
    grid-column: 1 / -1;
    flex-direction: row;
    min-height: 300px;
}

.blog-card-featured .blog-card-image-wrapper {
    flex: 1.2;
    aspect-ratio: auto;
    min-height: 300px;
}

.blog-card-featured .blog-card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-featured .blog-card-title { font-size: 1.5rem; }

/* Image */
.blog-card-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0e8d8;
    flex-shrink: 0;
}

.blog-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a961, #a0822a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    padding: 1.5rem;
    text-align: center;
}

.blog-card-placeholder i {
    font-size: 2.5rem;
    opacity: 0.6;
}

.blog-card-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}

/* Contenu */
.blog-card-content {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #aaa;
}

.blog-meta-item i { color: #c9a961; font-size: 0.7rem; }

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    flex: 1;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover { color: #c9a961; }

.blog-card-excerpt {
    font-size: 0.87rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c9a961;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: #a0822a;
    gap: 10px;
}

.blog-section-cta {
    text-align: center;
    margin-top: 1rem;
}


/* ============================================================
   13. SECTION TRIPLE
   ============================================================ */
.triple-section {
    padding: 5rem 0;
    background: #f5f0e8;
}

.triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.triple-block {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
}

.triple-block-header { margin-bottom: 1.25rem; }

.triple-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0.4rem 0 0.5rem;
}

.triple-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c9a961;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.triple-link:hover { gap: 10px; }

.triple-block-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 10px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    color: #c9a961;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.triple-block-cta:hover {
    background: #c9a961;
    color: #fff;
    border-color: #c9a961;
}

/* Events dans triple */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-card {
    position: relative;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.event-card-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c9a961, #a0822a);
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-img { transform: scale(1.05); }

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    z-index: 1;
}

.event-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #c9a961;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 44px;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.event-month {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-info { flex: 1; overflow: hidden; }

.event-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-location {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.event-card-location i { color: #c9a961; font-size: 0.62rem; }

.event-card-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.67rem;
    font-weight: 700;
    margin-top: 4px;
}

.event-card-badge.free { background: rgba(40,167,69,0.25); color: #28a745; }
.event-card-badge.paid { background: rgba(201,169,97,0.25); color: #c9a961; }

.events-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #aaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.events-empty i { font-size: 2.5rem; color: #ddd; }
.events-empty p { font-weight: 600; color: #888; margin: 0; }
.events-empty span { font-size: 0.82rem; }

/* Social dans triple */
.social-subtitle {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 1.25rem;
}

.social-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0e8d8, #e0d0b8);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.social-photo-fallback {
    background: linear-gradient(135deg, #c9a961, #a0822a);
}

.social-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.social-photo:hover .social-photo-img { transform: scale(1.1); }

.social-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-photo:hover .social-photo-overlay {
    background: rgba(0,0,0,0.45);
    opacity: 1;
}

.social-icons-row {
    display: flex;
    gap: 0.6rem;
}

.social-icon-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icon-link span { font-size: 0.75rem; }

.social-icon-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon-link.tiktok { background: #1a1a1a; }
.social-icon-link.facebook { background: #1877f2; }

.social-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #fff;
}

/* Newsletter dans triple */
.newsletter-block {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d) !important;
    color: #fff;
}

.newsletter-block .triple-block-title { color: #fff; }
.newsletter-label { display: block; text-align: center; margin-bottom: 0.4rem; }
.newsletter-title { text-align: center; margin-bottom: 1.25rem !important; }

.newsletter-icon {
    width: 58px;
    height: 58px;
    background: rgba(201,169,97,0.15);
    border: 2px solid rgba(201,169,97,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #c9a961;
    margin: 0 auto 1rem;
}

.newsletter-gift {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    color: #c9a961;
    font-size: 2rem;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.newsletter-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(201,169,97,0.12);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.newsletter-field {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-field i {
    position: absolute;
    left: 14px;
    color: #c9a961;
    font-size: 0.88rem;
    z-index: 1;
    pointer-events: none;
}

.newsletter-field input,
.newsletter-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 0.87rem;
    font-family: var(--font-body, 'Poppins', sans-serif);
    transition: border-color 0.3s ease;
    outline: none;
}

.newsletter-field input::placeholder,
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-field input:focus,
.newsletter-input:focus {
    border-color: #c9a961;
    background: rgba(255,255,255,0.1);
}

.newsletter-input-icon {
    position: relative;
}

.newsletter-input-icon i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #c9a961;
    font-size: 0.75rem;
    pointer-events: none;
    z-index: 2;
}

.newsletter-input-icon .newsletter-input {
    padding-left: 2.25rem;
    background: var(--color-gray-100, #f5f5f5);
    border: 1px solid var(--color-gray-200, #e9e9e9);
    color: #1a1a1a;
}

.newsletter-input-icon .newsletter-input::placeholder {
    color: var(--color-gray-400, #bbb);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0.2rem;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #c9a961;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.newsletter-consent label {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    cursor: pointer;
}

.newsletter-submit {
    padding: 13px;
    background: #c9a961;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body, 'Poppins', sans-serif);
    transition: all 0.3s ease;
    margin-top: 0.3rem;
    width: 100%;
    border: 2px solid #c9a961;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-submit:hover {
    background: #a0822a;
    border-color: #a0822a;
    transform: translateY(-2px);
}

.newsletter-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.newsletter-success {
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-success i { font-size: 2.5rem; color: #28a745; }

.newsletter-success p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}

.newsletter-error {
    color: #ff6b6b;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,107,107,0.1);
    border-radius: 6px;
}


/* ============================================================
   14. RESPONSIVE GLOBAL
   ============================================================ */

/* Tablette */
@media (max-width: 1200px) {
    .family-grid { grid-template-columns: repeat(2, 1fr); }
    .universe-grid-top { grid-template-columns: repeat(3, 1fr); }
    .triple-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .newsletter-block { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
    .reviews-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .reviews-rating-block { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card-featured { grid-column: 1 / -1; flex-direction: column; }
    .blog-card-featured .blog-card-image-wrapper { min-height: auto; aspect-ratio: 16/9; }
}

@media (max-width: 991px) {
    .custom-wrapper { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .custom-left { border-right: none; border-bottom: 1px solid #e9e9e9; padding-right: 0; padding-bottom: 2rem; text-align: center; }
    .custom-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .custom-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .custom-steps::before { display: none; }
    .experience-grid { grid-template-columns: repeat(3, 1fr); }
    .products-section-header .home-section-title { position: static; transform: none; margin: 0 auto 0.5rem; }
    .products-section-header { flex-direction: column; text-align: center; }
    .see-all-link { margin: 0 auto; }
}

@media (max-width: 768px) {
    .home-section { padding: 2.5rem 0; }
    .family-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-card { min-height: 320px; }
    .universe-grid-top { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .universe-grid-bottom { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .triple-grid { grid-template-columns: 1fr; }
    .newsletter-block { grid-column: auto; max-width: 100%; }
    .social-icons-row { flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .custom-wrapper { padding: 1.5rem; }
    .custom-steps { grid-template-columns: repeat(2, 1fr); }
    .products-swiper .swiper-button-prev,
    .products-swiper .swiper-button-next { display: none; }
}

@media (max-width: 480px) {
    .family-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .universe-grid-top { grid-template-columns: repeat(2, 1fr); }
    .universe-grid-bottom { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .custom-steps { grid-template-columns: repeat(2, 1fr); }
}