.sold-out {
    color: #fff;
    /* Couleur du texte */
    background-color: #ff4e4e;
    /* Couleur de fond */
    padding: 10px 20px;
    /* Espacement intérieur */
    border-radius: 30px;
    /* Bordure arrondie */
    font-weight: bold;
    /* Texte en gras */
    text-transform: uppercase;
    /* Texte en majuscules */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    /* Ombre portée */
    display: inline-block;
    margin-bottom: 15px;
    /* Marge en bas */
}

/* Désactiver le hover et les interactions quand quantité = 0 */
.addToPan[disabled],
.addToPan[aria-disabled="true"] {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .6;
}

.addToPan[disabled]:hover,
.addToPan[aria-disabled="true"]:hover {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .6;
    /* éviter tout effet visuel au hover */
    filter: none;
    transform: none;
}

/* pageChoiceTicket Header Styles */
.pageChoiceTicket {
    width: 100%;
    padding: 0;
    margin: 0;
}

.pageChoiceTicket .event-top-header {
    background: linear-gradient(135deg, #015214f3 0%, #20c997 100%) !important;
    padding: 15px 20px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.pageChoiceTicket .event-top-header::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 200% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    animation: shimmer 3s infinite !important;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.pageChoiceTicket .sport-type {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.pageChoiceTicket .event-title {
    color: white !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
}

/* Styles pour l'animation des images */
.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
    display: inline-block;
}

.image-slider-container .img-default {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 1s ease-in-out;
    position: relative;
}

/* Styles pour les indicateurs de limite */
.limite-indicator {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 8px;
}

.limite-indicator .text-muted {
    font-weight: 500;
    color: #6c757d !important;
}

/* Alertes améliorées */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 100%);
    color: #0c4a6e;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    color: #78350f;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #f87171 100%);
    color: #7f1d1d;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.alert-success {
    background: linear-gradient(135deg, #dcfce7 0%, #4ade80 100%);
    color: #14532d;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-slider-container .img-occurrence {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

@media (max-width: 768px) {
    .pageChoiceTicket .sec1 .sous_sec1 img.imgEv {
        width: 100% !important;
        height: auto !important;
        max-height: 300px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .image-slider-container .img-occurrence {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .pageChoiceTicket .sec1 .sous_sec1 img.imgEv {
        width: 100% !important;
        height: auto !important;
        max-height: 250px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .image-slider-container .img-occurrence {
        max-height: 250px;
    }
}

/* Styles pour la modale de message */
#messageModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#messageModal .modal-header {
    border-radius: 15px 15px 0 0;
    padding: 20px;
}

#messageModal .modal-header.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

#messageModal .modal-header.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

#messageModal .modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

#messageModal .modal-title i {
    margin-right: 10px;
    font-size: 1.5rem;
}

#messageModal .modal-body {
    padding: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

#messageModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 15px 20px;
}

#messageModal .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
}

#messageModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.occurrence-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.occurrence-helper {
    color: #6B7280;
    font-size: 0.85rem;
    text-align: center;
    margin: 0 0 0.75rem 0;
}

.occurrence-select-wrapper {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.occurrence-select-wrapper::after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2563EB;
    pointer-events: none;
    font-size: 0.9rem;
}

.occurrence-select-wrapper .occurrence-select {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.25s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.occurrence-select-wrapper .occurrence-select:focus {
    outline: none;
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.occurrence-select option[disabled] {
    color: #9CA3AF;
    background: #F3F4F6;
}

.occurrence-summary {
    margin-top: 1rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #ffffff;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.occurrence-summary h4 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.occurrence-summary span {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.occurrence-summary small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .occurrence-wrapper {
        padding: 1.5rem;
    }

    .occurrence-grid {
        grid-template-columns: 1fr;
    }
}

.pageChoiceTicket {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.pageChoiceTicket .sec1 {
    padding: 20px;
    height: 90vh;
    /* background-color: #007bff; */
    max-height: 700px;
}

.pageChoiceTicket .event-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;

    flex-direction: column;
}

.pageChoiceTicket .event-card.expanded {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.pageChoiceTicket .event-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pageChoiceTicket .event-header h1 {
    color: white;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pageChoiceTicket .event-image-bg {
    position: relative;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
    flex: 1;
}

.pageChoiceTicket .event-image-bg .image-slider-container {
    height: 100%;
}

.pageChoiceTicket .event-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageChoiceTicket .event-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.pageChoiceTicket .event-content {
    width: 100%;
    color: white;
}

.pageChoiceTicket .event-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.pageChoiceTicket .event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.pageChoiceTicket .meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.pageChoiceTicket .meta-item i {
    color: #28a745;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.pageChoiceTicket .meta-item span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.pageChoiceTicket .event-description-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pageChoiceTicket .event-description-preview,
.pageChoiceTicket .event-description-full {
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 18px;
}

.pageChoiceTicket .event-description-preview p,
.pageChoiceTicket .event-description-full p {
    color: white;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.pageChoiceTicket .btn-see-more {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.pageChoiceTicket .btn-see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.pageChoiceTicket .btn-see-more i {
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .pageChoiceTicket {
        padding: 15px;
    }

    .pageChoiceTicket .row.NewDesign {
        flex-direction: column;
        gap: 20px;
    }

    .pageChoiceTicket .sec1 {
        order: 1;
        padding: 15px;
        height: auto;
        max-height: none;
    }

    .pageChoiceTicket .sec2 {
        order: 2;
        padding: 15px;
    }

    .pageChoiceTicket .event-card {
        height: auto;
        min-height: 400px;
    }

    .pageChoiceTicket .event-image-bg {
        height: 250px;
    }

    .pageChoiceTicket .event-content {
        padding: 15px;
    }

    .pageChoiceTicket .event-top-header {
        padding: 12px 15px !important;
    }

    .pageChoiceTicket .event-title {
        font-size: 24px !important;
    }

    .pageChoiceTicket .sport-type {
        font-size: 12px !important;
        padding: 6px 15px !important;
    }
}

@media (max-width: 768px) {
    .pageChoiceTicket {
        padding: 10px;
    }

    .pageChoiceTicket .row.NewDesign {
        flex-direction: column;
        gap: 15px;
    }

    .pageChoiceTicket .sec1 {
        order: 1;
        padding: 10px;
        height: auto;
        max-height: none;
    }

    .pageChoiceTicket .sec2 {
        order: 2;
        padding: 10px;
    }

    .pageChoiceTicket .event-card {
        height: auto;
        min-height: 350px;
    }

    .pageChoiceTicket .event-header {
        padding: 15px;
    }

    .pageChoiceTicket .event-header h1 {
        font-size: 20px;
    }

    .pageChoiceTicket .event-image-bg {
        height: 200px;
    }

    .pageChoiceTicket .event-content {
        padding: 15px;
    }

    .pageChoiceTicket .event-meta {
        gap: 8px;
    }

    .pageChoiceTicket .meta-item {
        padding: 8px 10px;
    }

    .pageChoiceTicket .event-top-header {
        padding: 10px 15px !important;
    }

    .pageChoiceTicket .event-title {
        font-size: 20px !important;
    }

    .pageChoiceTicket .sport-type {
        font-size: 11px !important;
        padding: 5px 12px !important;
    }
}

.pageChoiceTicket .sec2 {
    background: linear-gradient(135deg, #d6ffcb 0%, #fdc5c5 100%);

    background-size: cover;
    background-repeat: repeat-y;
    position: relative;
}

.pageChoiceTicket .sec2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../img/site/ticket/Accueil.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    opacity: 0.1;
    z-index: 0;
}

.pageChoiceTicket .sec2 .content {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.pageChoiceTicket .sec2 .content .variousCont {
    text-align: left;
}

.pageChoiceTicket .sec2 .content .variousCont .contain {
    /* display: flex; */
    justify-content: space-between;
    padding: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec {
    width: 100%;
    padding: 15px;
    position: relative;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec center {
    display: flex;
    justify-content: space-between;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec:nth-child(1) {
    border-right: 2px solid rgba(226, 232, 240, 0.8);
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec span {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .type-ticket {
    width: 80px;

}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .entry_name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .total {
    font-size: 18px;
    font-weight: 700;
    color: #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera input {
    text-align: center;
    width: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button {
    color: #1e293b !important;
    font-size: 32px;
    border: none;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.pageChoiceTicket .sec2 .content .variousCont .contain .sec .resteBIllet {
    color: #059669 !important;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.pageChoiceTicket .sec2 .content .variousCont .addToPan {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pageChoiceTicket .sec2 .content .variousCont .addToPan:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

@media (max-width: 929px) {
    .pageChoiceTicket .sec2 .content {
        padding: 20px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain {
        flex-direction: column;
        gap: 15px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec {
        padding: 15px;
        text-align: center;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec:nth-child(1) {
        border-right: none;
        border-bottom: 2px solid rgba(226, 232, 240, 0.8);
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .type-ticket {
        width: 70px;
        margin: 0 auto 10px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .entry_name {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .prix {
        font-size: 16px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera {
        margin-top: 15px;
        justify-content: center;
        gap: 10px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera input {
        width: 70px;
        font-size: 24px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .total {
        font-size: 16px;
        padding: 6px 12px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .resteBIllet {
        font-size: 12px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .addToPan {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pageChoiceTicket .sec2 .content {
        padding: 15px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain {
        padding: 10px;
        gap: 12px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec {
        padding: 12px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .type-ticket {
        width: 60px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .entry_name {
        font-size: 16px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .prix {
        font-size: 14px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera input {
        width: 60px;
        font-size: 20px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .total {
        font-size: 14px;
        padding: 4px 8px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .resteBIllet {
        font-size: 11px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .addToPan {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pageChoiceTicket .sec2 .content {
        padding: 12px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain {
        padding: 8px;
        gap: 10px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec {
        padding: 10px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .type-ticket {
        width: 50px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .entry_name {
        font-size: 14px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .prix {
        font-size: 13px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera input {
        width: 50px;
        font-size: 18px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .total {
        font-size: 13px;
        padding: 3px 6px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .contain .sec .resteBIllet {
        font-size: 10px;
    }

    .pageChoiceTicket .sec2 .content .variousCont .addToPan {
        @media (max-width: 480px) {
            .pageChoiceTicket {
                padding: 8px;
            }

            .pageChoiceTicket .row.NewDesign {
                flex-direction: column;
                gap: 12px;
            }

            .pageChoiceTicket .sec1 {
                order: 1;
                padding: 8px;
            }

            .pageChoiceTicket .sec2 {
                order: 2;
                padding: 8px;
            }

            .pageChoiceTicket .event-card {
                min-height: 300px;
            }

            .pageChoiceTicket .event-image-bg {
                height: 180px;
            }

            .pageChoiceTicket .event-content {
                padding: 12px;
            }

            .pageChoiceTicket .event-content h4 {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .pageChoiceTicket .meta-item {
                padding: 6px 8px;
                gap: 10px;
            }

            .pageChoiceTicket .meta-item i {
                font-size: 16px;
                width: 18px;
            }

            .pageChoiceTicket .meta-item span {
                font-size: 14px;
            }

            .pageChoiceTicket .event-description-preview p,
            .pageChoiceTicket .event-description-full p {
                font-size: 14px;
                line-height: 1.5;
            }

            .pageChoiceTicket .btn-see-more {
                padding: 8px 16px;
                font-size: 14px;
            }

            .pageChoiceTicket .event-top-header {
                padding: 8px 12px !important;
            }

            .pageChoiceTicket .event-title {
                font-size: 18px !important;
            }

            .pageChoiceTicket .sport-type {
                font-size: 10px !important;
                padding: 4px 10px !important;
                margin-bottom: 10px !important;
            }
        }

        /* Responsive Design - Très petits mobiles */
        @media (max-width: 360px) {
            .pageChoiceTicket .event-title {
                font-size: 16px !important;
            }

            .pageChoiceTicket .sport-type {
                font-size: 9px !important;
                padding: 3px 8px !important;
            }

            .pageChoiceTicket .event-image-bg {
                height: 150px;
            }

            .pageChoiceTicket .meta-item span {
                font-size: 12px;
            }

            .pageChoiceTicket .event-content h4 {
                font-size: 16px;
            }
        }

        .pageChoiceTicket .sec2 .content {
            padding: 20px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec {
            width: 100%;
            padding: 10px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .type-ticket {
            width: 100px;
            margin-top: 10px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec span {
            font-size: 20px;
            font-weight: 500;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .entry_name {
            font-size: 22px;
            font-weight: 700;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .total {
            font-size: 15px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera {
            /* background: #2C591E; */
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera input {
            text-align: center;
            width: 50px;
            border-radius: 5px;
            background-color: #373C3F;
            color: white;
            font-size: 30px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .opera button {
            color: black !important;
            font-size: 30px;
            border: none;
        }

        .pageChoiceTicket .sec2 .content .variousCont .contain .sec .resteBIllet {
            color: green !important;
            font-size: 14px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .addToPan {
            background-color: rgb(255, 255, 255);
            padding: 10px;
            color: green;
            border: 1px solid rgb(0, 125, 0);
            border-radius: 8px;
            font-weight: 700;
            margin-top: 10px;
        }

        .pageChoiceTicket .sec2 .content .variousCont .addToPan:hover {
            background-color: rgba(1, 72, 1, 0.918);
            color: white;
            transition: 0.3s ease-in;

        }

        /* pageChoiceTicket */