/* --- FEATURE CARDS (Colorful) --- */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 1rem 0.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}*/
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
}
.card-blue::before { background: #ccedff; }
.card-green::before { background: #c5efc9; }
.card-red::before { background: #ffe4d1; }

/* Couleurs de fond spécifiques aux sections iKids */
.bg-soft-info { background-color: #fbe5d3; }
.bg-soft-operators { background-color: #d2ecfe; }
.bg-soft-reviews { background-color: #cdeecc; }

#product-a-savoir {
    border: 1px dashed #e0525c;
    border-radius: 5px;
    padding: 20px;
    margin: 0 0 10px;
    text-align: justify;
    cursor: pointer;
}
#product-a-savoir #collapse-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#product-a-savoir button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #8b2821;
    background: transparent;
    border-radius: 7px;
    padding: 6px 17px;
    color: #8b2821;
    font-weight: bold;
    cursor: pointer;
}
.section-produit-avis-google {
    border-radius: 20px;
    background-color: #cdeecc;
}

@media (min-width: 769px) {
    .feature-card {
        padding: 2rem 0.5rem;
    }
}