:root {
    --brand-color: #e63946;
    --brand-gradient: linear-gradient(90deg, #ff3b5c, #ff6b3d);
    --brand-light: #ffe8eb;
}

body {
    font-family: 'Arial', sans-serif;
}
.display_flex {
    display: flex;
}
.align_items_center {
    align-items: center;
}
.justify_content_between {
    justify-content: space-between;
}
.bg_transparent {    
    background: transparent !important;
}

.custom-modal {
    border-radius: 12px !important;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-light-grey {
    color: #e0e0e0;
}

.w-15px {
    width: 18px;
    text-align: center;
}

.lh-sm {
    line-height: 1.2;
}

.icon-btn {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background-color: white;
}

.text-brand {
    color: var(--brand-color) !important;
}

.bg-brand-light {
    background-color: var(--brand-light);
}

.badge-brand {
    background-color: var(--brand-color);
    color: white;
}

.btn-brand {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: white;
}

.btn-brand:hover {
    background-color: #d62828;
    color: white;
}

#dateContainer {
    scroll-behavior: smooth;
    gap: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#dateContainer::-webkit-scrollbar {
    display: none;
}

.date-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    min-width: 80px;
    flex-shrink: 0;
}

.event-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
}

.custom-event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.date-card.active {
    background-color: #fffcfc;
    border: 1px solid var(--brand-color);
    border-bottom: 3px solid var(--brand-color);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.1);
}
.date-card.active {
  /* background: #ff4d4d; */
  color: #fff;
  border-color: #ff4d4d;
}

.date-card .day {
    font-size: 10px;
    font-weight: bold;
    color: #6c757d;
}

.date-card .date {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    color: #343a40;
    margin: 2px 0;
}

.date-card .month {
    font-size: 10px;
    font-weight: bold;
    color: #6c757d;
}

.date-card.active .day,
.date-card.active .date,
.date-card.active .month {
    color: var(--brand-color);
}

.event-card {
    background-color: #fff;
    border-color: #f0f0f0 !important;
}

.event-img-wrapper {
    position: relative;
    min-height: 120px;
}

.object-cover {
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9px;
    padding: 4px 6px;
    border-radius: 4px;
}

.ticket-section {
    background-color: #fafafa;
}

.qty-selector {
    height: 28px;
}

.qty-selector button {
    line-height: 1;
    padding: 0 8px;
    border: none;
    background: transparent;
    box-shadow: none !important;
}

.qty-selector button:hover {
    background-color: #f8f9fa;
}

.btn-checkout {
    background: var(--brand-gradient);
    border: none;
    transition: transform 0.2s;
    font-size: 18px;
}

.btn-checkout:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}




@media (max-width: 992.98px) {
    .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }
    .width_full {
        width: 100%;
    }

    .custom-modal {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .modal-header {
        flex-shrink: 0;
    }

    .modal-body {
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .event-img-wrapper {
        height: 240px;
        margin-bottom: 10px;
    }

    .ticket-section {
        border-left: none !important;
        border-top: 1px dashed #e0e0e0;
        padding-top: 15px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-top: 10px;
    }

    .ticket-section>div {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 12px !important;
        gap: 10px;
    }

    .ticket-section>div>.d-flex {
        width: 100%;
        justify-content: space-between;
    }

    .modal-footer {
        flex-shrink: 0;
        flex-direction: column;
        align-items: stretch !important;
        position: relative;
        z-index: 10;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        gap: 12px;
        padding: 15px !important;
    }

    .modal-footer>.d-flex:first-child {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
    }

    .checkout-actions {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .checkout-total {
        text-align: left !important;
        margin-right: 0 !important;
    }

    .btn-checkout {
        flex-grow: 1;
        margin-left: 15px;
        font-size: 14px !important;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    
}
.desc-text {
    padding-left: 0px !important; 
}

.date-card .date {
    font-size: 18px;
}

