/* ============================================================================
   STYLES RÉSERVATION - VERSION OPTIMISÉE SANS DOUBLONS
   ============================================================================ */

/* ===== HERO RÉSERVATION ===== */
.reservation-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?w=1920');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

/* ===== PROGRAMME ÉVÉNEMENT ===== */
.event-program-section {
    padding: 60px 0;
}

.event-program {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.event-program h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.program-items {
    display: grid;
    gap: 15px;
}

.program-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.program-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.program-time {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 10px;
}

.program-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.program-desc {
    color: #ccc;
    font-size: 14px;
}

/* ===== SECTION RÉSERVATION ===== */
.reservation-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 10px;
}

.section-header p {
    color: #ccc;
    font-size: 16px;
}

/* ===== CARTES TARIFS ===== */
.tarif-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tarif-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(220,20,60,0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.tarif-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc143c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.tarif-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.tarif-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.tarif-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
    gap: 5px;
}

.tarif-price .currency {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
}

.tarif-price .amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
}

.tarif-price .per-person {
    font-size: 14px;
    color: #999;
    align-self: flex-end;
    margin-bottom: 8px;
}

.tarif-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex: 1;
}

.tarif-features li {
    padding: 12px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tarif-features li:last-child {
    border-bottom: none;
}

.tarif-features i {
    color: #ffd700;
    font-size: 16px;
}

.tarif-features .fa-times {
    color: #dc143c;
}

/* ===== SÉLECTEUR DE PERSONNES ===== */
.person-selector {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.person-selector label {
    display: block;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.qty-btn {
    background: #ffd700;
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #ffed4e;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-display {
    font-size: 32px;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
    color: #ffd700;
}

/* ===== BOUTON TARIF ===== */
.tarif-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tarif-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* ===== MODAL CHOIX DES MENUS ===== */
.person-menu-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.person-number {
    color: #ffd700;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== CHAMPS IDENTITÉ ===== */
.person-identity {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.identity-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.identity-field label {
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.identity-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.identity-field input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.identity-field input::placeholder {
    color: #666;
}

/* ===== OPTIONS DE MENU ===== */
.menu-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.menu-option:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.menu-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.menu-option:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.menu-option.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.menu-option.selected .radio-indicator {
    display: block;
}

.menu-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.menu-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.menu-name small {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
}

.radio-indicator {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #ffd700;
    border-radius: 50%;
}

.radio-indicator::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

/* ===== SÉLECTEUR BOISSON ===== */
.drink-selector {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.drink-selector label {
    color: #ccc;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.drink-options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.drink-option {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #ccc;
}

.drink-option:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    color: #ffffff;
}

.drink-option.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    font-weight: 600;
}

/* ===== SÉLECTEUR DESSERT ===== */
.dessert-selector {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.dessert-selector label {
    color: #ccc;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.dessert-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* ===== SECTION PROMO ABONNEMENT ===== */
.promo-section {
    background: linear-gradient(135deg, rgba(220,20,60,0.2) 0%, rgba(255,215,0,0.2) 100%);
    border: 2px dashed #ffd700;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.promo-badge {
    background: #dc143c;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
}

.promo-section h3 {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.promo-original {
    text-decoration: line-through;
    color: #999;
    font-size: 24px;
}

.promo-new {
    color: #ffd700;
    font-size: 32px;
    font-weight: 900;
}

.promo-discount {
    background: #dc143c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
}

.checkbox-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ffd700;
}

.checkbox-option label {
    cursor: pointer;
    color: white;
    font-size: 15px;
}

/* ===== SECTION DONS ===== */
.dons-section {
    background: linear-gradient(135deg, rgba(220,20,60,0.15) 0%, rgba(255,215,0,0.15) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
}

.dons-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dons-header i {
    font-size: 32px;
    color: #dc143c;
    animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(1); }
}

.dons-header h3 {
    font-size: 22px;
    color: #dc143c;
    margin: 0;
}

.dons-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.don-option {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.don-option:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

.don-option.selected {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.25);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.don-option.selected::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.don-amount {
    font-size: 28px;
    font-weight: 900;
    color: #dc143c;
}

.don-custom {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.don-custom label {
    display: block;
    color: #dc143c;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.custom-amount-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.currency-suffix {
    color: #dc143c;
    font-size: 20px;
    font-weight: 700;
}

/* ===== PANIER FLOTTANT ===== */
.cart-floating-btn {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc143c;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid #000;
}

/* ===== ITEMS PANIER ===== */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffd700;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 8px;
}

.cart-item-duration {
    font-size: 14px;
    color: #ccc;
}

.cart-item-details {
    margin-top: 10px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    white-space: nowrap;
}

.remove-item-btn {
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(220, 20, 60, 0.4);
    color: #dc143c;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: #dc143c;
    color: white;
    transform: scale(1.1);
}

/* ===== TOTAL PANIER ===== */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #ffd700;
}

.cart-total-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.cart-total-price {
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
}

/* ===== RÉSUMÉ CHECKOUT ===== */
.cart-summary {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.cart-summary h4 {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.summary-item:last-child {
    border-bottom: none;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #ffd700;
}

.total-line span {
    font-size: 18px;
    color: #ffffff;
}

.total-line strong {
    font-size: 28px;
    color: #ffd700;
}

/* ===== SECTION PAIEMENT ===== */
.payment-section {
    padding: 20px 0;
}

.payment-options {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.payment-option.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffd700;
    flex-shrink: 0;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.payment-description {
    font-size: 14px;
    color: #999;
}

.payment-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    display: none;
}

.payment-detail-content {
    max-width: 500px;
    margin: 0 auto;
}

/* ===== DÉTAILS BANCAIRES ===== */
.bank-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-label {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.bank-detail-value {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    text-align: right;
}

#stripe-card-element {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
}

#stripe-card-errors {
    color: #dc143c;
    margin-bottom: 15px;
    font-size: 14px;
    min-height: 20px;
}

#paypal-button-container {
    margin: 20px 0;
}

/* ===== SECTION CONTACT ===== */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.contact-item span {
    font-size: 24px;
}

.contact-item a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffed4e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ===== MODALS OVERLAY ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex !important;
}

/* ===== MODAL CHOIX COMPTE/INVITÉ (AMÉLIORATION) ===== */
.account-choice-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
    max-width: 900px;
    width: 100%;
}

.account-choice-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(220,20,60,0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: 420px;
    justify-content: space-between;
}

.account-choice-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(220,20,60,0.15) 100%);
}

.choice-icon {
    font-size: 72px;
    color: #ffd700;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.account-choice-card:hover .choice-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
}

.account-choice-card h3 {
    font-size: 26px;
    color: #ffd700;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.choice-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.choice-features li {
    padding: 12px 0;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    line-height: 1.5;
}

.choice-features li:last-child {
    border-bottom: none;
}

.choice-features i {
    color: #ffd700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.choice-features .fa-info-circle {
    color: #999;
}

.choice-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.choice-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.choice-btn.guest-btn {
    background: linear-gradient(135deg, #555, #777);
    box-shadow: 0 6px 20px rgba(85, 85, 85, 0.3);
}

.choice-btn.guest-btn:hover {
    background: linear-gradient(135deg, #666, #888);
    box-shadow: 0 10px 30px rgba(102, 102, 102, 0.5);
}

/* ===== MODALS AUTH ===== */
.auth-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.3s ease;
}

.auth-modal.large-modal {
    max-width: 900px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h3 {
    font-size: 24px;
    color: #ffd700;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: rotate(90deg);
}

.modal-step {
    padding: 30px;
}

/* ===== FORMULAIRES ===== */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.full-width {
    width: 100%;
}

/* ===== ICÔNE DE SUCCÈS ===== */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
}

/* ===== SCROLL PERSONNALISÉ ===== */
.auth-modal::-webkit-scrollbar {
    width: 8px;
}

.auth-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.auth-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

.auth-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}

/* ===== ANIMATIONS SPÉCIFIQUES RÉSERVATION ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tarif-card {
    animation: fadeInUp 0.6s ease forwards;
}

.tarif-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tarif-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tarif-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.program-item:nth-child(1) {
    animation-delay: 0.1s;
}

.program-item:nth-child(2) {
    animation-delay: 0.2s;
}

.program-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* ===== RESPONSIVE TABLETTES ===== */
@media (max-width: 1024px) {
    .tarif-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .tarif-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .account-choice-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .account-choice-card {
        min-height: auto;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .tarif-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .tarif-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .event-program {
        padding: 25px;
    }

    .menu-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .person-identity {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-step {
        padding: 20px;
    }

    .promo-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-option {
        padding: 15px;
    }

    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .payment-title {
        font-size: 16px;
    }

    .payment-description {
        font-size: 13px;
    }

    .payment-details {
        padding: 20px;
    }

    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .bank-detail-value {
        text-align: left;
        font-size: 12px;
        word-break: break-all;
    }
    
    .dons-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .account-choice-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .account-choice-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .choice-icon {
        font-size: 56px;
    }
    
    .account-choice-card h3 {
        font-size: 22px;
    }
    
    .choice-features {
        margin: 15px 0;
    }
    
    .choice-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 480px) {
    .tarif-price .amount {
        font-size: 36px;
    }

    .cart-floating-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .cart-floating-btn i {
        font-size: 20px;
    }

    .cart-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .qty-display {
        font-size: 28px;
        min-width: 50px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .person-menu-card {
        padding: 20px;
    }

    .menu-icon {
        font-size: 40px;
    }
    
    .payment-option {
        flex-direction: column;
        text-align: center;
    }

    .payment-icon {
        margin: 0 auto;
    }
    
    .dons-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .don-option {
        padding: 15px;
    }
    
    .don-amount {
        font-size: 24px;
    }
    
    .choice-icon {
        font-size: 48px;
    }
    
    .account-choice-card {
        padding: 25px 15px;
    }
    
    .account-choice-card h3 {
        font-size: 18px;
    }
    
    .choice-features {
        font-size: 13px;
    }
    
    .choice-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cart-floating-btn,
    .modal-overlay,
    .social-share {
        display: none !important;
    }
}