/* Front-end custom css */

/* Reserved Seating */
.modal-big .modal-container {
    width: 100%;
}

.modal-big .modal-container .modal-content {
    min-height: 800px;
}

.modal-small .modal-container {
    width: auto;
    margin: auto;
}

.modal-small .modal-container .modal-content {
    min-height: auto;
}

.is-relative {
    position: relative;
}

.seat-container {
    position: relative;
    overflow: auto;
    width: 800px;
    margin: 0 auto;
    padding: 0;
    display: block;
    transform-origin: 0 0;


}

.seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 8px;
    border: 2px solid #777;
}

.seat-mark {
    position: absolute;
    z-index: 999;
    height: 24px;
    width: 24px;
    border-radius: 8px;
    background-color: #ff6300;
    color: #fff;
    line-height: 2.5 !important;
    text-align: center;
    box-shadow: 1px 1px 5px -2px #000;
    font-size: 8px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.seat-disabled {
    background-color: #999;
    cursor: not-allowed !important;
}

.seat-reserved {
    background-color: #bd3372;
    cursor: not-allowed !important;
}

.seat-select {
    background-color: #38c172;
}

.seat-disabled-col {
    color: #999;
}

.seat-reserved-col {
    color: #bd3372;
}

.seat-select-col {
    color: #38c172;
}

.seat-available-col {
    color: #1b89ef;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.m-auto {
    margin: auto;
}

.no-display {
    display: none;
}

.seat-checkbox {
    position: absolute;
    z-index: 999999;
    height: 24px;
    width: 24px;
    padding: 0 !important;
    margin: 0 !important;
    display: none;
    cursor: pointer;
}


/* Authorize.net */
.wrapper-cc {
    display: flex;
    padding: 2rem;
}

@media screen and (max-width: 700px),
(max-height: 500px) {
    .wrapper-cc {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.card-form {
    max-width: 570px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .card-form {
        margin: 0 auto;
    }
}

.card-form__inner {
    background: #fff;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 10px;
    padding: 35px;
    padding-top: 180px;
}

@media screen and (max-width: 480px) {
    .card-form__inner {
        padding: 25px;
        padding-top: 165px;
    }
}

@media screen and (max-width: 360px) {
    .card-form__inner {
        padding: 15px;
        padding-top: 165px;
    }
}

.card-form__row {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .card-form__row {
        flex-wrap: wrap;
    }
}

.card-form__col {
    flex: auto;
    margin-right: 35px;
}

.card-form__col:last-child {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    .card-form__col {
        margin-right: 0;
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .card-form__col:last-child {
        margin-bottom: 0;
    }
}

.card-form__col.-cvv {
    max-width: 150px;
}

@media screen and (max-width: 480px) {
    .card-form__col.-cvv {
        max-width: initial;
    }
}

.card-form__group {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-form__group .card-input__input {
    flex: 1;
    margin-right: 15px;
}

.card-form__group .card-input__input:last-child {
    margin-right: 0;
}

.card-form__button {
    width: 100%;
    height: 55px;
    background: #2364d2;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
    box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-form__button {
        margin-top: 10px;
    }
}

.card-item {
    max-width: 430px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item {
        max-width: 310px;
        height: 220px;
        width: 90%;
    }
}

@media screen and (max-width: 360px) {
    .card-item {
        height: 180px;
    }
}

.card-item.-active .card-item__side.-front {
    transform: perspective(1000px) rotateY(180deg) rotateX(0deg) rotateZ(0deg);
}

.card-item.-active .card-item__side.-back {
    transform: perspective(1000px) rotateY(0) rotateX(0deg) rotateZ(0deg);
}

.card-item__focus {
    position: absolute;
    z-index: 3;
    border-radius: 5px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.card-item__focus:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #08142f;
    height: 100%;
    border-radius: 5px;
    filter: blur(25px);
    opacity: 0.5;
}

.card-item__focus.-active {
    opacity: 1;
}

.card-item__side {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px 0 rgba(14, 42, 90, 0.55);
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg) rotate(0deg);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    backface-visibility: hidden;
    height: 100%;
}

.card-item__side.-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: perspective(2000px) rotateY(-180deg) rotateX(0deg) rotate(0deg);
    z-index: 2;
    padding: 0;
    height: 100%;
}

.card-item__side.-back .card-item__cover {
    transform: rotateY(-180deg);
}

.card-item__bg {
    max-width: 100%;
    display: block;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-item__cover {
    height: 100%;
    background-color: #1c1d27;
    position: absolute;
    height: 100%;
    background-color: #1c1d27;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card-item__cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 2, 29, 0.45);
}

.card-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media screen and (max-width: 480px) {
    .card-item__top {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__top {
        margin-bottom: 15px;
    }
}

.card-item__chip {
    width: 60px;
}

@media screen and (max-width: 480px) {
    .card-item__chip {
        width: 50px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__chip {
        width: 40px;
    }
}

.card-item__type {
    height: 45px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 100px;
    margin-left: auto;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__type {
        height: 40px;
        max-width: 90px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__type {
        height: 30px;
    }
}

.card-item__typeImg {
    max-width: 100%;
    object-fit: contain;
    max-height: 100%;
    object-position: top right;
}

.card-item__info {
    color: #fff;
    width: 100%;
    max-width: calc(100% - 85px);
    padding: 10px 15px;
    font-weight: 500;
    display: block;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__info {
        padding: 10px;
    }
}

.card-item__holder {
    opacity: 0.7;
    font-size: 13px;
    margin-bottom: 6px;
}

@media screen and (max-width: 480px) {
    .card-item__holder {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.card-item__wrapper {
    padding: 25px 15px;
    position: relative;
    z-index: 4;
    height: 100%;
    text-shadow: 7px 6px 10px rgba(14, 42, 90, 0.8);
    user-select: none;
}

@media screen and (max-width: 480px) {
    .card-item__wrapper {
        padding: 20px 10px;
    }
}

.card-item__name {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .card-item__name {
        font-size: 16px;
    }
}

.card-item__nameItem {
    display: inline-block;
    min-width: 8px;
    position: relative;
}

.card-item__number {
    font-weight: 500;
    line-height: 1;
    color: #fff;
    font-size: 27px;
    margin-bottom: 35px;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__number {
        font-size: 21px;
        margin-bottom: 15px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__number {
        font-size: 19px;
        margin-bottom: 10px;
        padding: 10px 10px;
    }
}

.card-item__numberItem {
    width: 16px;
    display: inline-block;
}

.card-item__numberItem.-active {
    width: 30px;
}

@media screen and (max-width: 480px) {
    .card-item__numberItem {
        width: 13px;
    }

    .card-item__numberItem.-active {
        width: 16px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__numberItem {
        width: 12px;
    }

    .card-item__numberItem.-active {
        width: 8px;
    }
}

.card-item__content {
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.card-item__date {
    flex-wrap: wrap;
    font-size: 18px;
    margin-left: auto;
    padding: 10px;
    display: inline-flex;
    width: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__date {
        font-size: 16px;
    }
}

.card-item__dateItem {
    position: relative;
}

.card-item__dateItem span {
    width: 22px;
    display: inline-block;
}

.card-item__dateTitle {
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 6px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__dateTitle {
        font-size: 12px;
        padding-bottom: 5px;
    }
}

.card-item__band {
    background: rgba(0, 0, 19, 0.8);
    width: 100%;
    height: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 480px) {
    .card-item__band {
        margin-top: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__band {
        height: 40px;
        margin-top: 10px;
    }
}

.card-item__cvv {
    text-align: right;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.card-item__cvv .card-item__type {
    opacity: 0.7;
}

@media screen and (max-width: 360px) {
    .card-item__cvv {
        padding: 10px 15px;
    }
}

.card-item__cvvTitle {
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.card-item__cvvBand {
    height: 45px;
    background: #fff;
    margin-bottom: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #1a3b5d;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0px 10px 20px -7px rgba(32, 56, 117, 0.35);
}

@media screen and (max-width: 480px) {
    .card-item__cvvBand {
        height: 40px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__cvvBand {
        margin-bottom: 15px;
    }

}

.card-list {
    margin-bottom: -130px;
}

@media screen and (max-width: 480px) {
    .card-list {
        margin-bottom: -120px;
    }

    .site-slogan {
        text-wrap: wrap;
    }
}

.nav-header.header-position .navbar .site-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3.4rem !important;
    margin-top: 0.2rem !important;
}

/* Categories Stories - Instagram style */
.categories-stories {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-stories::-webkit-scrollbar {
    display: none;
}
.category-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 90px;
}
.category-story-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6300, #fa0000);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-story-item:hover .category-story-ring {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(255, 99, 0, 0.35);
}
.category-story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
}
.category-story-label {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #343a40;
    text-align: center;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 768px) {
    .categories-stories {
        gap: 28px;
    }
    .category-story-item {
        min-width: 110px;
    }
    .category-story-ring {
        width: 100px;
        height: 100px;
        padding: 3.5px;
    }
    .category-story-avatar {
        border: 3.5px solid #fff;
    }
    .category-story-label {
        margin-top: 8px;
        font-size: 13.5px;
        font-weight: 600;
        max-width: 110px;
    }
}

/* Primary color overrides for theme.css */
.menu-fixed .navbar-nav .nav-link:hover {
    color: #ff6300 !important;
}
.card-form__button {
    background: linear-gradient(135deg, #ff6300, #fa0000) !important;
    box-shadow: 3px 10px 20px 0px rgba(255, 99, 0, 0.3) !important;
}

.card-input {
    margin-bottom: 20px;
}

.card-input__label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a3b5d;
    width: 100%;
    display: block;
    user-select: none;
}

.card-input__input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ced6e0;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    padding: 5px 15px;
    background: none;
    color: #1a3b5d;
}

.card-input__input:hover,
.card-input__input:focus {
    border-color: #3d9cff;
}

.card-input__input:focus {
    box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35);
}

.card-input__input.-select {
    -webkit-appearance: none;
    background-image: url('data:image/png; base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNrM1sEJwkAQBdCsngXPHsQO9O5FS7AAMVYgdqAd2IGCDWgFnryLFQiCZ8EGnJUNimiyM/tnk4HNEAg/8y6ZmMRVqz9eUJvRaSbvutCZ347bXVJy/ZnvTmdJ862Me+hAbZCTs6GHpyUi1tTSvPnqTpoWZPUa7W7ncT3vK4h4zVejy8QzM3WhVUO8ykI6jOxoGA4ig3BLHcNFSCGqGAkig2yqgpEiMsjSfY9LxYQg7L6r0X6wS29YJiYQYecemY+wHrXD1+bklGhpAhBDeu/JfIVGxaAQ9sb8CI+CQSJ+QmJg0Ii/EE2MBiIXooHRQhRCkBhNhBcEhLkwf05ZCG8ICCOpk0MULmvDSY2M8UawIRExLIQIEgHDRoghihgRIgiigBEjgiFATBACAgFgghEwSAAGgoBCBBgYAg5hYKAIFYgHBo6w9RRgAFfy160QuV8NAAAAAElFTkSuQmCC');
    background-size: 12px;
    background-position: 90% center;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.slide-fade-up-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-up-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-up-enter {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.slide-fade-up-leave-to {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
}

.slide-fade-right-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-right-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-right-enter {
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
    pointer-events: none;
}

.slide-fade-right-leave-to {
    opacity: 0;
    transform: translateX(-10px) rotate(45deg);
    pointer-events: none;
}

.iframe-full iframe {
    width: 100%;
    height: 80vh;
}

.star-active {
    color: #FBC02D;
    margin-top: 10px;
    margin-bottom: 10px
}

.star-active:hover {
    color: #F9A825;
    cursor: pointer
}

.star-inactive {
    color: #CFD8DC;
    margin-top: 10px;
    margin-bottom: 10px
}

.profile-pic {
    width: 10%;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 20px
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: #f2b600
}

#review_modal {
    display: none;
}

.VueCarousel-pagination {
    position: absolute;
    bottom: 2%;
}

#card-element {
    margin-bottom: 2rem;
}

.w-95 {
    width: 95% !important;
}

@media (max-width: 767px) {
    .ticket-title {
        font-size: .7rem;
    }

    .ticket-price {
        font-size: .7rem;
    }

    .w-m-50 {
        width: 50% !important;
    }
}

.ticket-selected-text {
    color: #38c172;
}


/* api-seat-img */
.api-seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #777;
}

@media (max-width: 768px) {
    .api-seat-img {
        width: unset;
    }

}


/* api-seat-img */

#loading-screen {
    z-index: 99999;
    position: fixed;
    overflow: hidden;
    top: 0;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 100%;
    background: linear-gradient(155deg, #ff6300 0%, #fa0000 50%, #ff6300 100%);
}

.invalid-feedback {
    display: block;
}

.custom-dropdown {
    position: relative;

}

.dropdownmenu {
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border: none;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    width: 208px;
    /* top: 200px; */
    right: 150px;
    z-index: 99999;
}

.dropdownmenu li {
    position: relative;
    left: -30px;
}

.dropdownmenu a {
    width: 200px;
    padding: 1px;
}


/* */

@media only screen and (min-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        /* top: 200px; */
        right: 130px;
    }
}

@media only screen and (max-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        top: -12px;
        right: 90px;
        z-index: 99999;
    }
}

/* ========================================
   Checkout Page
   ======================================== */
.checkout-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}
.checkout-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
}
.checkout-hero .hero-content { position: relative; z-index: 1; }

/* Step bar */
.co-step-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 15px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 32px;
    width: 100%;
}
.co-steps {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.co-step {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 14px;
}
.co-step__circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.4);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.co-step__label {
    color: rgba(255,255,255,.4);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all .3s ease;
    letter-spacing: 0.01em;
}

/* Active step */
.co-step--active .co-step__circle {
    background: #ff6300;
    border-color: #ff6300;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,99,0,.4), inset 0 0 8px rgba(255,255,255,0.2);
    transform: scale(1.15);
}
.co-step--active .co-step__label { color: #fff; }

/* Completed step */
.co-step--done .co-step__circle,
.co-step__circle--on {
    background: rgba(255,99,0,.15) !important;
    border-color: #ff6300 !important;
    color: #ff6300 !important;
    box-shadow: none !important;
    transform: scale(1);
}
.co-step--done .co-step__label { color: rgba(255,255,255,.9) !important; }

/* Connector line */
.co-step__line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,.08);
    flex-shrink: 0;
    margin: 0 16px;
    transition: all .4s ease;
}
.co-step__line--active {
    background: #ff6300;
    box-shadow: 0 0 12px rgba(255,99,0,.3);
}

@media (max-width: 768px) {
    .co-step__line { width: 40px; margin: 0 10px; }
}
@media (max-width: 576px) {
    .co-step__label { display: none; }
    .co-step__line { width: 30px; margin: 0 8px; }
    .co-step-bar { padding: 20px 0 10px; }
}

/* Checkout layout */
#breadcrumb-section { display: none !important; }
.sticky-summary { position: sticky; top: 80px; }
.ticket-card { transition: box-shadow .2s, border-color .2s; }
.ticket-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

/* Payment options */
.payment-option { cursor: pointer; border: 2px solid #e9ecef; border-radius: 12px; padding: 14px 18px; transition: all .2s; }
.payment-option:hover,
.payment-option.selected { border-color: #ff6300; background: #fff5f0; }
.payment-option input[type=radio] { accent-color: #ff6300; }

/* Provider pills */
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.provider-pill { position: relative; border: 2px solid #dee2e6; border-radius: 10px; padding: 10px 6px 8px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; display: flex; flex-direction: column; align-items: center; gap: 5px; background: #fff; user-select: none; overflow: hidden; }
.provider-pill:hover { border-color: #ffb380; background: #fff5f0; }
.provider-pill.active { border-color: #ff6300; background: #fff0e6; box-shadow: 0 0 0 3px rgba(255,99,0,.22); }
.provider-pill.active::before { content: '\2713'; position: absolute; top: 4px; right: 5px; width: 16px; height: 16px; background: #ff6300; color: #fff; border-radius: 50%; font-size: 10px; line-height: 16px; text-align: center; font-weight: 900; z-index: 2; }
.provider-pill .pill-img-wrap { width: 100%; height: 32px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.provider-pill .pill-img-wrap img { width: 48px !important; height: 26px !important; max-width: 48px !important; max-height: 26px !important; min-width: unset !important; min-height: unset !important; object-fit: contain !important; display: block; }
.provider-pill .pill-name { font-size: 0.67rem; color: #495057; font-weight: 600; text-align: center; line-height: 1.2; }
.provider-pill.active .pill-name { color: #cc5000; font-weight: 700; }

/* Order summary */
.order-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.order-row.total { font-weight: 700; font-size: 1.1rem; border-top: 2px solid #e9ecef; margin-top: 8px; padding-top: 12px; }
.btn-checkout { font-size: 1.05rem; padding: 14px 0; border-radius: 12px; font-weight: 600; }
.section-label { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; color: #6c757d; margin-bottom: 12px; }
.qty-select { max-width: 90px; border-radius: 8px; }
.back-link { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; }
.back-link:hover { color: #fff; }

/* Attendee fields positioning fix */
@media (min-width: 992px) {
    .attendee-component { position: relative; z-index: 10; }
}

/* Mobile navbar menu background fix */
@media (max-width: 991.98px) {
    .nav-header .navbar-collapse {
        background: #1a1a2e;
        border-radius: 12px;
        padding: 16px 20px;
        margin-top: 10px;
        box-shadow: 0 8px 32px rgba(0,0,0,.18);
    }
    .nav-header .navbar-collapse .nav-link {
        color: #fff !important;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-header .navbar-collapse .nav-link:hover,
    .nav-header .navbar-collapse .nav-link:focus {
        color: #ff6300 !important;
    }
    .nav-header .navbar-collapse .nav-link.dropdown-toggle::after {
        border-top-color: #fff;
    }
    .nav-header .navbar-collapse .dropdown-menu {
        background: #252542;
        border: none;
        border-radius: 8px;
    }
    .nav-header .navbar-collapse .dropdown-menu .dropdown-item {
        color: rgba(255,255,255,.85);
    }
    .nav-header .navbar-collapse .dropdown-menu .dropdown-item:hover,
    .nav-header .navbar-collapse .dropdown-menu .dropdown-item.active {
        background: rgba(255,99,0,.15);
        color: #ff6300;
    }
}

/* ===== BILETINIAL-STYLE HEADER ===== */
.blt-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    height: 60px;
    display: flex;
    align-items: center;
}
.blt-header .blt-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.blt-logo img { height: 36px; }
.blt-logo { flex-shrink: 0; }
.blt-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

/* Center group */
.blt-center-group {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.blt-cat-btn {
    display: flex; align-items: center; gap: 7px;
    border: none; background: none;
    font-size: 14px; font-weight: 400; color: #333;
    cursor: pointer; padding: 7px 10px;
    border-radius: 20px;
    transition: all .2s;
    white-space: nowrap;
    line-height: 1;
}
.blt-cat-btn:hover { background: #f0f0f0; }
.blt-cat-btn i { font-size: 15px; color: #555; font-weight: 300; }
.blt-cat-btn.active { background: #f0f0f0; }
.blt-search {
    flex: 1;
    display: flex; align-items: center;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 0 16px;
    height: 40px;
    gap: 8px;
    min-width: 320px;
    max-width: 520px;
}
.blt-search i { color: #888; font-size: 14px; }
.blt-search input {
    border: none; background: none; outline: none;
    font-size: 14px; color: #333; width: 100%;
}
.blt-search input::placeholder { color: #999; }
.blt-city-btn {
    display: flex; align-items: center; gap: 7px;
    border: none; background: none;
    font-size: 14px; font-weight: 400; color: #333;
    cursor: pointer; padding: 7px 10px;
    border-radius: 20px;
    transition: background .2s;
    white-space: nowrap;
    line-height: 1;
}
.blt-city-btn:hover { background: #f0f0f0; }
.blt-city-btn i { color: #555; font-size: 15px; font-weight: 300; }
.blt-spacer { flex: 1; }
.blt-action-btn {
    border: none; background: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #888;
    cursor: pointer; transition: background .2s, color .2s;
    position: relative;
    text-decoration: none;
    font-weight: 300;
}
.blt-action-btn:hover { background: #f0f0f0; color: #333; }
.blt-mega-overlay {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1040;
}
.blt-mega-overlay.open { display: block; }
.blt-mega-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #fff;
    z-index: 1045;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 24px 0 32px;
}
.blt-mega-menu.open { display: block; }
.blt-mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.blt-cat-icons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 28px;
}
.blt-cat-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    color: #222;
    min-width: 80px;
    position: relative;
}
.blt-cat-item:hover { background: #f5f5f5; color: #222; text-decoration: none; }
.blt-cat-item .blt-cat-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #f5f5f5;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #444;
    transition: background .2s, color .2s;
}
.blt-cat-item:hover .blt-cat-icon-wrap { background: #efe9ff; color: #7c3aed; }
.blt-cat-item .blt-cat-label { font-size: 12px; font-weight: 600; white-space: nowrap; color: #333; }
.blt-cat-badge {
    position: absolute; top: 6px; right: 10px;
    background: #27ae60; color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 1px 5px; border-radius: 6px;
}
.blt-mega-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.blt-mega-col h5 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; }
.blt-mega-col .blt-col-desc { font-size: 12px; color: #888; margin-bottom: 12px; }
.blt-mega-col a {
    display: block;
    font-size: 13px; color: #27ae60;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color .15s;
}
.blt-mega-col a:hover { color: #1e8449; text-decoration: underline; }
.blt-recommend-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blt-recommend-item .blt-rec-title { font-size: 13px; font-weight: 600; color: #27ae60; line-height: 1.3; }
.blt-recommend-item .blt-rec-sub { font-size: 11px; color: #888; }
.blt-city-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.blt-city-modal-overlay.open { display: flex; }
.blt-city-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.blt-city-modal * { box-sizing: border-box; }
.blt-city-modal h4 { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 4px 0; }
.blt-city-modal .blt-modal-desc { font-size: 13px; color: #888; margin: 0 0 12px 0; line-height: 1.4; }
.blt-city-modal select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 14px; color: #333;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: 0;
    height: 44px;
}
.blt-city-modal select:focus { border-color: #27ae60; outline: none; }
.blt-modal-section { margin-bottom: 20px; }
.blt-modal-section:last-child { margin-bottom: 0; }
.blt-city-save-btn {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    margin-top: 24px;
    transition: background .2s;
}
.blt-city-save-btn:hover { background: #1e8449; }
.blt-profile-dropdown {
    position: absolute;
    top: 48px; right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid #e8e8e8;
    z-index: 2000;
    display: none;
    overflow: hidden;
}
.blt-profile-dropdown.open { display: block; }
.blt-profile-dropdown a, .blt-profile-dropdown button {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 18px;
    font-size: 14px; color: #333;
    text-decoration: none;
    border: none; background: none; width: 100%; text-align: left;
    cursor: pointer;
    transition: background .15s;
}
.blt-profile-dropdown a:hover, .blt-profile-dropdown button:hover { background: #f5f5f5; color: #111; }
.blt-profile-dropdown .blt-dd-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.blt-notif-dot {
    position: absolute; top: 6px; right: 6px;
    width: 8px; height: 8px;
    background: #e74c3c; border-radius: 50%;
    border: 1.5px solid #fff;
}
.blt-mobile-toggle {
    display: none;
    border: none; background: none;
    font-size: 22px; color: #333; cursor: pointer;
    margin: 0; padding: 0;
}
.blt-mobile-drawer {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1200;
    overflow-y: auto;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
}
.blt-mobile-drawer.open { display: flex; }
.blt-mobile-drawer a {
    display: block; padding: 12px 8px;
    font-size: 15px; color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}
body { padding-top: 60px !important; }
@media (max-width: 991px) {
    .blt-center-group { display: none !important; }
    .blt-header .blt-inner {
        display: flex;
        align-items: center;
        position: relative;
        padding: 0 10px;
        gap: 0;
    }
    .blt-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 18px;
        color: #333;
        width: 40px;
        height: 40px;
        cursor: pointer;
        flex-shrink: 0;
        order: -1;
        z-index: 2;
    }
    .blt-logo {
        position: absolute !important;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        margin: 0 !important;
    }
    .blt-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 0;
        margin-left: auto;
        z-index: 2;
    }
    .blt-actions .blt-profile-dropdown { display: none !important; }
    .blt-mobile-search-btn { display: flex !important; }
}

@media (min-width: 992px) {
    .blt-mobile-search-btn { display: none !important; }
    .blt-mob-overlay,
    .blt-mob-drawer,
    .blt-mob-search-panel { display: none !important; }
    .blt-lang-mobile { display: none !important; }
    .blt-lang-desktop { display: flex !important; }
    /* Masaüstünde header inner flex kalır */
    .blt-header .blt-inner {
        display: flex !important;
    }
    .blt-logo {
        position: static;
        transform: none;
    }
    .blt-mobile-toggle { display: none !important; }
}
@media (max-width: 991px) {
    .blt-lang-desktop { display: none !important; }
    .blt-lang-mobile { display: flex !important; }
}

/* ===== MOBİL DRAWER ===== */
.blt-mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
}
.blt-mob-overlay.open { display: block; }

.blt-mob-drawer {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    background: #fff;
    z-index: 2001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s ease;
    flex-direction: column;
}
.blt-mob-drawer.open {
    display: flex;
    transform: translateX(0);
}
.blt-mob-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 16px 12px;
    border-bottom: 1px solid #f0f0f0;
}
.blt-mob-drawer-tag {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}
.blt-mob-drawer-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}
.blt-mob-drawer-desc {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    line-height: 1.4;
}
.blt-mob-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-top: 4px;
}
.blt-mob-drawer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
}
.blt-mob-drawer-profile-icon {
    font-size: 26px;
    color: #555;
    line-height: 1;
}
.blt-mob-drawer-divider {
    height: 6px;
    background: #f7f7f7;
    margin: 4px 0;
}
.blt-mob-drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background .12s;
}
.blt-mob-drawer-item:hover { background: #fafafa; }
.blt-mob-drawer-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #444;
    flex-shrink: 0;
}
.blt-mob-drawer-item-label { flex: 1; }
.blt-mob-drawer-arrow { color: #ccc; font-size: 12px; }

/* ===== MOBİL SEARCH PANEL ===== */
.blt-mob-search-panel {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2010;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .25s ease;
}
.blt-mob-search-panel.open {
    display: block;
    transform: translateY(0);
}
.blt-mob-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    border-bottom: 1px solid #eee;
}
.blt-mob-search-input {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    color: #222;
}
.blt-mob-search-input:focus { border-color: #999; }
.blt-mob-search-submit {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
}
.blt-mob-search-close {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 16px;
    color: #555;
}
.blt-mob-search-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}
.blt-mob-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blt-mob-tag {
    display: inline-block;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all .12s;
}
.blt-mob-tag:hover { border-color: #999; background: #f7f7f7; }
/* Country row: flag + select */
.blt-country-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blt-flag-box {
    width: 48px;
    height: 34px;
    border-radius: 4px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.blt-country-row select {
    flex: 1;
    min-width: 0;
}
/* Login page - country code select */
.blt-cc-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 110px;
}
.blt-cc-icon {
    position: absolute;
    left: 10px;
    z-index: 5;
    pointer-events: none;
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
}
.blt-cc-select {
    padding-left: 30px !important;
    max-width: 110px;
    border-radius: 8px 0 0 8px !important;
    cursor: pointer;
}
/* ===== FILTER BAR ===== */
.blt-filter-wrap {
    margin-bottom: 24px;
}
.blt-filter-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 0 6px 0 0;
    gap: 0;
}
.blt-filter-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s;
    border-radius: 50px;
}
.blt-filter-cell:hover { background: #f7f7f7; }
.blt-filter-cell--grow { flex: 1; }
.blt-filter-cell--equal { flex: 1; }
.blt-fc-icon {
    font-size: 18px;
    color: #888;
    flex-shrink: 0;
    line-height: 1;
}
.blt-fc-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.blt-fc-label {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    letter-spacing: .3px;
    line-height: 1;
}
.blt-fc-value {
    font-size: 13px;
    color: #aaa;
    line-height: 1.2;
    white-space: nowrap;
}
.blt-fc-input {
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
    background: transparent;
    width: 100%;
    padding: 0;
    line-height: 1.2;
}
.blt-fc-input::placeholder { color: #aaa; }
.blt-fc-select {
    border: none;
    outline: none;
    font-size: 13px;
    color: #555;
    background: transparent;
    width: 100%;
    padding: 0 18px 0 0;
    line-height: 1.4;
    cursor: pointer;
    min-width: 0;
}
.blt-fc-select:focus { outline: none; box-shadow: none; }
.blt-fc-select option { font-size: 14px; color: #333; }
.blt-fc-datepicker { border: none !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; width: 100% !important; }
.blt-fc-datepicker input { border: none !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; font-size: 13px !important; color: #555 !important; cursor: pointer; width: 100% !important; }
.blt-fc-datepicker .mx-icon-calendar,
.blt-fc-datepicker .mx-icon-clear { display: none !important; }
.blt-filter-divider {
    width: 1px;
    height: 32px;
    background: #e5e5e5;
    flex-shrink: 0;
}
.blt-filter-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #e0e0e0;
    color: #999;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    margin: 5px;
    transition: all .2s;
    flex-shrink: 0;
}
.blt-filter-btn:hover { background: #d0d0d0; }
.blt-filter-btn--active { background: #111 !important; color: #fff !important; }
.blt-filter-btn--active:hover { background: #333 !important; }
@media (max-width: 768px) {
    .blt-reset-label { display: none; }
}

/* Quick filter chips */
.blt-filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    justify-content: center;
}
.blt-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #333;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all .15s;
}
.blt-chip:hover { border-color: #999; background: #f7f7f7; }
.blt-chip.active { background: #111; color: #fff; border-color: #111; }
.blt-chip--reset { border-color: #e74c3c; color: #e74c3c; }
.blt-chip--reset:hover { background: #fdf0f0; border-color: #c0392b; color: #c0392b; }

@media (max-width: 768px) {
    .blt-filter-wrap {
        margin-left: 2px;
        margin-right: 2px;
    }
    .blt-filter-bar {
        border-radius: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        overflow-x: visible;
    }
    .blt-filter-divider { display: none; }
    .blt-filter-cell {
        padding: 12px 14px;
        flex-shrink: 0;
        width: 100%;
        border-radius: 12px;
    }
    .blt-filter-cell--equal { flex: none; min-width: 0; }
    .blt-fc-text { width: 100%; }
    .blt-fc-select,
    .blt-fc-input,
    .blt-fc-datepicker,
    .blt-fc-datepicker input { width: 100% !important; }
    .blt-filter-btn {
        width: 100%;
        justify-content: center;
        margin: 8px 0 0 0;
        flex-shrink: 0;
        border-radius: 12px;
    }
    .blt-reset-label { display: none; }
}
/* ===== END FILTER BAR ===== */
/* ===== END BILETINIAL HEADER ===== */

/* Footer Grid Desktop Columns Fix */
@media (min-width: 992px) {
    footer .row {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
    }
    footer .col-lg-4 {
        flex: 0 0 auto !important;
        width: 33.33333333% !important;
    }
    footer .col-lg-2 {
        flex: 0 0 auto !important;
        width: 16.66666667% !important;
    }
    footer .col-lg-3 {
        flex: 0 0 auto !important;
        width: 25% !important;
    }
}

/* Premium Event page cover banner styling */
.cover-img-bg {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: #111;
}
.cover-img-bg:before {
    display: none !important; /* remove blurred backdrop */
}
.cover-img-bg .cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    opacity: 0.9;
}
@media (max-width: 991.98px) {
    .cover-img-bg {
        height: 360px;
    }
}
@media (max-width: 575.98px) {
    .cover-img-bg {
        height: 250px;
    }
}

/* ===== Mobile ticket schedule spacing ===== */
@media (max-width: 768px) {
    #buy-tickets .card-body.p-4 {
        padding: 1rem 0.5rem !important;
    }
    #buy-tickets .bg-white.rounded-3 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    #buy-tickets .nav-lb-tab {
        padding-left: 0;
        padding-right: 0;
    }
    #buy-tickets .tab-content.v-scroll,
    #buy-tickets .tab-content {
        padding: 0.5rem 0 !important;
    }
    #buy-tickets .schedule-info {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    #buy-tickets .lgx-single-schedule .card-body {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}