.btn {
    white-space:normal !important;
    word-wrap: break-word;
}

.table>thead {
    vertical-align: middle;
}

.sticky-div{
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.swiper-pagination-bullet{
    border-color: #FFF;
    background-color: #FFF;
}

.swiper-pagination-bullet-active {
    border-color: #FFF;
    background-color: #448C74;
}

.bg-faded-primary-home {
    --ar-bg-opacity: 0.4;
    background-color: rgba(var(--ar-primary-rgb), var(--ar-bg-opacity)) !important;
}

.message-width {
    max-width: 70%;
}

@media screen and (max-width: 576px) {
    .message-width {
        max-width: 90%;
    }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
    .message-width {
        max-width: 80%;
    }
}

.sticky-cta {
    position: sticky;
    top: 20px;
    z-index: 1000;
}

/* Désactiver sur mobile */
@media (max-width: 767px) {
    .sticky-cta {
        position: static;
        top: auto;
    }
}

/* Conteneur responsive */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Style du tableau */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 16px;
}

/* En-tête du tableau */
.price-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.price-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
}

/* Cellules du corps */
.price-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

/* Alternance de couleurs */
.price-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

/* Hover effect */
.price-table tbody tr:hover {
    background-color: #f0f4ff;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Style des prix */
.price-table .price {
    font-weight: 600;
    color: #667eea;
    font-size: 17px;
}

/* Badges Oui/Non */
.badge-yes,
.badge-no {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
}

.badge-yes {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-no {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Ligne mise en avant (portable = moins cher) */
.price-table tbody tr.highlight {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
}

.price-table tbody tr.highlight:hover {
    background-color: #fff5cc;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .price-table {
        font-size: 14px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 12px 10px;
    }

    .price-table thead th {
        font-size: 13px;
    }

    .price {
        font-size: 15px;
    }

    .badge-yes,
    .badge-no {
        padding: 4px 12px;
        font-size: 12px;
    }
}

.accordion{
    margin-bottom: 30px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}