/* Styles pour la page des tarifs */
.price-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* déjà présent, mais à vérifier */
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
    gap: 1.2rem; /* Ajoute un gap pour forcer l’espace */
}

.price-header img {
    margin-right: 0.5rem; /* Optionnel, pour accentuer l’espace */
}

.price_list-icons {
    list-style: none;
    padding: 0;
}

.price_list-icons li {
    margin-bottom: 1rem;
}

.price_list-icons i {
    font-size: 1.5rem;
    color: var(--orange);
}

.font-weight-600 {
    font-weight: 600;
}

/* Styles pour le carousel */
.carousel {
    margin-top: 2rem;
    padding: 0 2rem;
}

.carousel-inner {
    padding: 1rem 0;
}

.carousel-indicators {
    margin-bottom: 1.5rem;
}

.carousel-indicators button {
    width: 32px;
    height: 5px;
    border-radius: 3px;
    background-color: #888;
    border: none;
    margin: 0 5px;
    opacity: 1;
    transition: background 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #c44b17;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev {
    left: -2rem;
}

.carousel-control-next {
    right: -2rem;
}

/* Styles pour les cartes de prix */
.price_view {
    margin-bottom: 3.5rem;
    gap: 1.5rem;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.price_item {
    background: #232325;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0005;
    padding: 2.2rem 2rem;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 270px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price_item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px #0007;
    z-index: 2;
}

.price-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
    gap: 1.2rem;
}

.price-header img {
    margin-right: 0.5rem;
}

.price_badge {
    position: absolute;
    top: -18px;
    right: 18px;
    background: none;
    z-index: 3;
    margin-left: 1rem;
}

.price_content {
    background: #c44b17;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem 0.2rem;
    border-radius: 0 0 0.7rem 0.7rem;
    box-shadow: 0 2px 8px #0003;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    text-align: center;
    min-width: 90px;
}

.price_item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px #0003;
}

.price_item h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin: 0.7rem 0;
    width: 100%;
    text-align: left;
}

.price_item .section-title {
    color: #e1e1e1;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    margin: 0.8rem 0 0.4rem;
    line-height: 1.2;
    width: 100%;
}

.price_item .section-title i {
    margin-right: 0.5rem;
    font-size: 1.15em;
    min-width: 1.7em;
    text-align: center;
    color: #c44b17;
}

.price_item ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    width: 100%;
}

.price_item ul li {
    margin: 0.4rem 0;
    color: #e1e1e1;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
}

.price_item ul li .arrow {
    position: absolute;
    left: 0;
    font-size: 1.1em;
    color: #c44b17;
}

/* Responsive */
@media (max-width: 900px) {
    .price_view {
        gap: 1rem;
    }
    
    .price_item {
        min-width: 250px;
        max-width: 100%;
        margin: 0.5rem 0;
    }

    .carousel {
        padding: 0 1rem;
    }

    .carousel-control-prev {
        left: -1rem;
    }

    .carousel-control-next {
        right: -1rem;
    }
}

/* Styles pour la page des tarifs */
.price-title {
    margin-bottom: 0;
}

.price-currency-button {
    height: 3vh;
    margin-left: 0.5rem;
    line-height: 2vh;
    margin-top: 0.3rem;
}

.price-section-title {
    text-align: center;
    color: #e1e1e1;
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em; 
}
.price-section-underline {
    width: 70px;
    height: 4px;
    background: #c44b17;
    margin: 0.2rem auto 2.2rem auto;
    border-radius: 2px;
}

.price_item i,
.price_item .fa {
    color: #c44b17 !important;
}

.price_item .price_list-icons i {
    color: #c44b17;
    font-size: 1.3rem;
}

.price_item .font-weight-600 {
    color: #e1e1e1;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0.5rem 0 0.1rem 0;
    line-height: 1.1;
    width: 100%;
    text-align: left;
}

.price_item .font-weight-600 i {
    margin-right: 0.18em;
    font-size: 1.15em;
}

.price_item .font-weight-600.section-title i {
    min-width: 1.7em;
    text-align: left;
}

.price_item .price_list-icons i {
    color: #c44b17;
    font-size: 1.3rem;
}

.price_item ul li i {
    min-width: 1.5em;
    text-align: left;
} 