/* ==========================================================================
   LES VERTUS DES SIMPLES — FLORITHÉRAPIE
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Diaporama Spécifique (Fleurs de Bach)
   -------------------------------------------------------------------------- */
.flori-hero {
    height: 80vh !important;
    min-height: 600px !important;
}

.flori-hero .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(10, 28, 16, 0.40) 0%,
        rgba(10, 28, 16, 0.50) 60%,
        rgba(10, 28, 16, 0.70) 100%);
}

/* --------------------------------------------------------------------------
   Introduction & Description Subtile
   -------------------------------------------------------------------------- */
.flori-intro {
    padding: 8rem 8%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.flori-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.flori-intro-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.flori-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--forest);
    font-style: italic;
    margin: 4rem 0;
    padding: 2rem;
    border-top: 2px solid var(--gold-dim);
    border-bottom: 2px solid var(--gold-dim);
}

/* --------------------------------------------------------------------------
   Bienfaits (Cartes Florales)
   -------------------------------------------------------------------------- */
.flori-benefits {
    padding: 8rem 8%;
    background: var(--cream);
}

.flori-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.flori-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 26, 17, 0.05);
    position: relative;
    transition: var(--t-smooth);
}

.flori-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 26, 17, 0.1);
}

.flori-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
}

.flori-card h3 {
    color: var(--forest);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--font-display);
}

.flori-card p.subtitle {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.flori-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.flori-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(201, 169, 110, 0.3);
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flori-card ul li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.5rem;
}

.flori-card ul li:last-child {
    border-bottom: none;
}
