/* =========================
   HERO 1 – EXISTANT
========================= */

.cover-shop-hero {
    position: relative;
    background: url('https://cover-shop.fr/wp-content/uploads/2026/01/Housse-de-prestige-voiture-moto.png') center / cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cover-shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.cover-shop-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cover-shop-hero h1 {
    font-size: 2.6rem;
    margin: 15px 0 25px;
    color: #fff;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    opacity: .85;
}

.hero-reinsurance {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-item {
    background: rgba(255,255,255,.12);
    padding: 18px 20px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Responsive Hero 1 */
@media (max-width: 900px) {
    .cover-shop-hero .container {
        grid-template-columns: 1fr;
    }

    .hero-reinsurance {
        margin-top: 40px;
    }
}

/* =========================
   HERO 2 – PARTICULIERS / PRO
========================= */

.cover-shop-hero-2 {
    position: relative;
    background: url('https://cover-shop.fr/wp-content/uploads/2026/01/business-cover-shop.png') center / cover no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cover-shop-hero-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 1;
}

.cover-shop-hero-2 .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Colonnes texte */
.hero2-column {
    background: rgba(70,55,55,.55);
    padding: 50px;
    border-radius: 14px;
    backdrop-filter: blur(4px);
}

/* Typo Hero 2 */
.cover-shop-hero-2 h2 {
    font-size: 2rem;
    margin: 15px 0 25px;
    color: #fff;
}

.cover-shop-hero-2 p,
.cover-shop-hero-2 .hero-subtitle {
    text-shadow: 0 2px 12px rgba(0,0,0,.9);
}

/* Responsive Hero 2 */
@media (max-width: 900px) {
    .cover-shop-hero-2 .container {
        grid-template-columns: 1fr;
    }

    .hero2-column {
        padding: 35px;
    }
}

/* =========================
   BOUTONS (COMMUNS)
========================= */

.cover-shop-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cover-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.cover-shop-btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
