/* Inscriptions Page Styles */
.inscriptions-page {
    min-height: 100vh;
}

/* Programs Overview */
.programs-overview {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-badge {
    position: absolute;
    top: 15px;
    left: -10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(-5deg);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.program-features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.program-features i {
    color: rgba(var(--nav-accent-rgb), 1);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(var(--nav-accent-rgb), 1);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

/* Form Section */
.inscription-form-section {
    padding: 2rem 1rem;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Styles */
.inscription-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: rgba(var(--nav-accent-rgb), 1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(var(--nav-accent-rgb), 0.6);
    box-shadow: 0 0 0 4px rgba(var(--nav-accent-rgb), 0.1);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
}

/* Submit Section */
.form-submit {
    text-align: center;
    padding-top: 2rem;
}

.submit-btn {
    background: linear-gradient(120deg, 
        rgba(var(--nav-base-rgb), 1), 
        rgba(var(--nav-mid-rgb), 1), 
        rgba(var(--nav-accent-rgb), 0.9));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--nav-base-rgb), 0.3);
    background: linear-gradient(120deg, 
        rgba(var(--nav-mid-rgb), 1), 
        rgba(var(--nav-accent-rgb), 1), 
        rgba(var(--nav-accent-rgb), 0.8));
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
/* Discount Code Styles */
.discount-code-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.discount-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.discount-header i {
    color: #28a745;
}

.discount-input-group {
    display: flex;
    gap: 0.5rem;
}

.discount-input-group input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.discount-input-group input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.apply-discount-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.apply-discount-btn:hover {
    background: #218838;
}

.apply-discount-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.discount-status {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.discount-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.discount-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.discount-applied {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #155724;
    font-size: 0.85rem;
    font-weight: 600;
}

.discount-info i {
    color: #28a745;
}

.remove-discount-btn {
    background: none;
    border: none;
    color: #721c24;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-discount-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Cart total with discount */
.cart-total .discount-line {
    color: #28a745;
    font-weight: 600;
    margin: 0.25rem 0;
}

.cart-total .original-total {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Discount Code Styles */
.discount-code-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.discount-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.discount-header i {
    color: #28a745;
}

.discount-input-group {
    display: flex;
    gap: 0.5rem;
}

.discount-input-group input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.discount-input-group input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.apply-discount-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.apply-discount-btn:hover {
    background: #218838;
}

.apply-discount-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.discount-status {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.discount-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.discount-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.discount-applied {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #155724;
    font-size: 0.85rem;
    font-weight: 600;
}

.discount-info i {
    color: #28a745;
}

.remove-discount-btn {
    background: none;
    border: none;
    color: #721c24;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-discount-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Cart total with discount */
.cart-total .discount-line {
    color: #28a745;
    font-weight: 600;
    margin: 0.25rem 0;
}

.cart-total .original-total {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

.cart-total .eligible-amount {
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0.25rem 0;
}

@media (max-width: 768px) {
    .discount-input-group {
        flex-direction: column;
    }
    
    .apply-discount-btn {
        padding: 0.75rem;
    }
    
    .cart-container {
        padding: 1rem;
    }
    .discount-input-group {
        flex-direction: column;
    }
    
    .apply-discount-btn {
        padding: 0.75rem;
    }
}
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inscription-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Discount code responsive */
    .discount-input-group {
        flex-direction: column;
    }
    
    .apply-discount-btn {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .programs-overview {
        padding: 3rem 1rem;
    }
    
    .inscription-form-section {
        padding: 3rem 1rem;
    }
    
    .program-card {
        padding: 1rem;
    }
    
    .inscription-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
}

/* Email Validation */
.email-validation,
.email-match-validation {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.email-validation.valid,
.email-match-validation.valid {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.email-validation.invalid,
.email-match-validation.invalid {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.email-validation i,
.email-match-validation i {
    margin-right: 6px;
}

/* Submit Button States */
.submit-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.submit-btn:enabled {
    opacity: 1 !important;
    cursor: pointer !important;
}

/* Camps Selection Styles */
.camps-selection-container {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.camps-selection {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 0.3rem;
    margin-top: 0.3rem;
}

.camp-category {
    margin-bottom: 0.3rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #e9ecef;
}

.camp-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.camp-category h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
    padding-bottom: 0.1rem;
    border-bottom: 2px solid rgba(var(--nav-accent-rgb), 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unified Cart Additional Styles */
.cart-item.package-line {
    background: linear-gradient(90deg, rgba(var(--nav-accent-rgb),0.15), rgba(var(--nav-accent-rgb),0.05));
    border-left: 4px solid rgba(var(--nav-accent-rgb),0.8);
    font-weight: 600;
}

.cart-item.savings-line {
    background: #0f3d2a;
    color: #caffdd;
    font-weight: 600;
    border-left: 4px solid #24c079;
}

.cart-item.savings-line .cart-item-price { color: #7ef0b4; }

/* Package Badge */
.package-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(90deg, #234,#0b4257);
    color: #fff;
    padding: .5rem .9rem;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    margin-bottom: .6rem;
}
.package-badge .badge-label { text-transform: uppercase; letter-spacing: .5px; opacity: .8; }
.package-badge .badge-name { font-weight: 700; color: #7ef0b4; }
.package-badge .badge-savings { background: #103; padding: .25rem .5rem; border-radius: 6px; color:#7ef0b4; }

/* Reset Cart Button */
.reset-cart-btn {
    background: #531d1d;
    color: #f8d7da;
    border: 1px solid #8a2b2b;
    padding: .45rem .9rem;
    font-size: .75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s ease;
}
.reset-cart-btn:hover { background:#7a2626; color:#fff; }

.camp-category .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.1rem;
    padding: 0.15rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.camp-category .checkbox-group:hover {
    background-color: rgba(var(--nav-accent-rgb), 0.08);
    border-color: rgba(var(--nav-accent-rgb), 0.2);
}

.camp-category .checkbox-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 0.6rem;
    accent-color: rgba(var(--nav-accent-rgb), 1);
    cursor: pointer;
}

.camp-category .checkbox-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
    line-height: 1.2;
}

.camp-category .checkbox-group input[type="checkbox"]:checked + label {
    color: rgba(var(--nav-accent-rgb), 1);
    font-weight: 600;
}

.camp-category .checkbox-group input[type="checkbox"]:checked {
    transform: scale(1.05);
}

/* Highlight for position-specific camps */
.checkbox-group[data-positions="gardien"] label::after {
    content: " 🥅";
    opacity: 0.7;
}

.checkbox-group[data-positions="defence"] label::after {
    content: " 🛡️";
    opacity: 0.7;
}

.checkbox-group[data-positions="avant,defence,gardien"] label::after {
    content: " ⭐";
    opacity: 0.7;
}

/* Duos Collapsible (Nos Duos) */
.duos-collapsible { margin: 0.3rem 0 0.6rem; }
/* Collapsible headers (Duos & Trios) */
.duos-collapsible, .trios-collapsible, .performances-collapsible, .techniques-collapsible, .quatuors-collapsible { margin: 0.3rem 0 0.6rem; }
.duos-collapsible > summary, .trios-collapsible > summary, .performances-collapsible > summary, .techniques-collapsible > summary, .quatuors-collapsible > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .75rem;
    border: 1px solid rgba(var(--nav-accent-rgb), 0.35);
    border-radius: 6px;
    background: rgba(var(--nav-accent-rgb), 0.08);
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 2rem;
}
.duos-collapsible > summary,
.trios-collapsible > summary,
.quatuors-collapsible > summary { justify-content: space-between; }
.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .3px;
}
.badge-pro {
    background: linear-gradient(90deg, #533, #b85c2e);
    color: #fffbe6;
    box-shadow: 0 4px 10px rgba(184, 92, 46, 0.35);
}
.badge-pro i { color: #ffe08a; }

.badge-legend {
    background: linear-gradient(90deg, #2b3a1a, #6b8e23);
    color: #f7ffe6;
    box-shadow: 0 4px 10px rgba(107, 142, 35, 0.35);
}
.badge-legend i { color: #ffec99; }

.badge-vip {
    background: linear-gradient(90deg, #2b1a3a, #8e44ad);
    color: #f7eaff;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.35);
}
.badge-vip i { color: #ffd1ff; }
.duos-collapsible > summary::-webkit-details-marker, .trios-collapsible > summary::-webkit-details-marker, .performances-collapsible > summary::-webkit-details-marker, .techniques-collapsible > summary::-webkit-details-marker, .quatuors-collapsible > summary::-webkit-details-marker { display: none; }
.duos-collapsible > summary::after, .trios-collapsible > summary::after, .performances-collapsible > summary::after, .techniques-collapsible > summary::after, .quatuors-collapsible > summary::after {
    content: '▸';
    font-size: 1.2rem;
    color: var(--primary-dark);
    transition: transform .2s ease;
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}
.duos-collapsible[open] > summary::after, .trios-collapsible[open] > summary::after, .performances-collapsible[open] > summary::after, .techniques-collapsible[open] > summary::after, .quatuors-collapsible[open] > summary::after { transform: translateY(-50%) rotate(90deg); }
.duos-collapsible > summary:hover, .trios-collapsible > summary:hover, .performances-collapsible > summary:hover, .techniques-collapsible > summary:hover, .quatuors-collapsible > summary:hover { background: rgba(var(--nav-accent-rgb), 0.12); }
.duos-collapsible > summary:focus, .trios-collapsible > summary:focus, .performances-collapsible > summary:focus, .techniques-collapsible > summary:focus, .quatuors-collapsible > summary:focus { outline: none; box-shadow: 0 0 0 3px rgba(var(--nav-accent-rgb), 0.2); }

.cart-container {
    position: sticky;
    top: 80px;
    width: 280px;
    background: white;
    border: 2px solid rgba(var(--nav-accent-rgb), 0.2);
    border-radius: 10px;
    padding: 0.75rem;
    height: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(var(--nav-accent-rgb), 0.1);
    margin-bottom: 0.5rem;
}

.cart-header i {
    color: rgba(var(--nav-accent-rgb), 1);
    font-size: 1.1rem;
}

.cart-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Package Suggestion */
.package-suggestion {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 6px;
    padding: 0.6rem;
    margin-bottom: 0.6rem;
    color: white;
    animation: slideIn 0.3s ease-out;
}

.package-suggestion-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.package-suggestion-content i.fas.fa-gift {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.3rem;
}

.package-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.package-info p {
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.2;
}

.package-suggestion-content .accept-package-btn,
.package-suggestion-content .dismiss-package-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

.accept-package-btn {
    background: white;
    color: #28a745;
}

.accept-package-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.dismiss-package-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-top: 0.2rem;
}

.dismiss-package-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-items {
    min-height: 60px;
    margin-bottom: 0.5rem;
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin: 1rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
    margin-bottom: 0.3rem;
    background: rgba(var(--nav-accent-rgb), 0.05);
    border-radius: 4px;
    border-left: 2px solid rgba(var(--nav-accent-rgb), 1);
}

.cart-item-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    margin-right: 0.3rem;
}

.cart-item-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(var(--nav-accent-rgb), 1);
}

.cart-total {
    padding-top: 0.5rem;
    border-top: 2px solid rgba(var(--nav-accent-rgb), 0.2);
    text-align: center;
}

.total-cad, .total-eur {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.total-cad strong, .total-eur strong {
    color: var(--primary-dark);
}

#total-cad, #total-eur {
    color: rgba(var(--nav-accent-rgb), 1);
    font-size: 1.1rem;
}

/* Responsive pour le panier */
@media (max-width: 1024px) {
    .camps-selection-container {
        flex-direction: column;
    }
    
    .cart-container {
        position: relative;
        top: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .package-suggestion {
        margin: 1rem 0;
    }
}
