/* --- STYLES SPÉCIFIQUES PAGE TARIFS --- */

.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 60px 0 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}
.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.section-divider span {
    padding: 0 20px;
}

/* SPECIFIQUE ACTE ITEMS */
.pricing-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.acte-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc;
    padding: 10px 20px; /* Réduit pour Slim v2 */
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 75px; /* Réduit de 95 */
}
/* --- STRUCTURATION GRILLE : MAX 3 PAR LIGNE --- */
.pricing-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
}
/* Si 4ème item, on le centre sur la ligne 2 */
.pricing-card:nth-child(4) {
    grid-column: 2;
}

/* --- RÉGLAGE FIN : FONDAMENTAUX --- */
.pricing-card {
    padding: 32px !important; /* Mieux balancé pour 3 items */
}
.pricing-card span.material-symbols-outlined {
    font-size: 44px !important; 
    margin-bottom: 12px;
}
.pricing-card h3 {
    font-size: 1.35rem !important;
}
.pricing-card p {
    font-size: 0.9rem !important;
}
.pricing-card .price {
    font-size: 1.8rem !important;
    font-weight: 800;
}
.pricing-card .note {
    font-size: 0.75rem !important;
}
.acte-item:hover {
    background: #fff;
    border-color: #0161bb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transform: translateX(5px);
}
.acte-info h4 {
    margin: 0;
    font-size: 0.95rem; /* Subtil */
    font-weight: 700;
    color: #1a1a1a;
}
.acte-info p {
    margin: 3px 0 0;
    font-size: 0.85rem; /* Ajusté (mi-chemin) */
    color: #777;
}
.acte-price {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: #0161bb;
    font-size: 1.15rem; /* Subtil */
    white-space: nowrap;
    margin-left: 20px;
}

.pricing-card.highlight {
    border: 2px solid #0161bb !important;
    background: #fff !important;
    position: relative;
}
.pricing-card.highlight::after {
    content: 'RECOMMANDÉ';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0161bb;
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 800;
}

.tarifs-legal {
    margin-top: 40px !important;
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pricing-grid-list {
        grid-template-columns: 1fr;
    }
}

/* --- ÉTAT BIENTÔT (UPCOMING) --- */
.pricing-card.is-upcoming, .acte-item.is-upcoming {
    position: relative;
    overflow: hidden;
}
.pricing-card.is-upcoming > *:not(.upcoming-badge), 
.acte-item.is-upcoming > *:not(.upcoming-badge) {
    filter: blur(1.5px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}
.upcoming-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: #0161bb; /* Bleu RE-LAB */
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
    border: 3px solid #fff;
    white-space: nowrap;
    pointer-events: none;
}
.acte-item.is-upcoming .upcoming-badge {
    font-size: 1.05rem; /* Ajusté (mi-chemin) */
    padding: 8px 22px;
    letter-spacing: 2px;
}

