/*
* Consolidated CSS File - TicketPulse
* Combines styles.css and alt-styles.css with duplicates removed
* Primary color definitions from styles.css take precedence
* Structure and layout from alt-styles.css preserved
*/

/* ================================================================
   GOOGLE FONTS & ROOT VARIABLES
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* Primary Color System (from styles.css - takes precedence) */
:root,
[data-bs-theme=light] {
    --bs-blue: #0c72c6;
    --bs-primary: #440099;
    --bs-primary-rgb: 68, 0, 152;
    --footer-bg-color: #191e25;
    --bs-light: #f8f4f3;
    --bs-light-rgb: 248, 244, 243;
    --bs-dark-rgb: 25, 30, 37;
    --bs-warning: #ffb14f;
    --bs-warning-rgb: 255, 177, 79;
    --bs-font-caveat: 'Caveat', cursive;
    --bs-font-sans-serif: "Wix Madefor Display", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-gradient: linear-gradient(#f8f4f3, #fff);

    /* Additional colors from alt-styles.css */
    --primary-color: #440099;
    --primary-hover: #007bff;
    --secondary-color: #39364f;
    --light-gray: #f8f7fa;
    --medium-gray: #eeedf2;
    --dark-gray: #6f7287;
    --text-color: #39364f;

    --gradient-primary: linear-gradient(135deg, #440099 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #39364f 0%, #f5576c 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

[data-bs-theme=dark] {
    --bs-body-bg: #1e242d;
    --bs-light: #12161c;
    --bs-light-rgb: 18, 22, 28;
    --bs-border-color: #30353b;
    --bs-gradient: linear-gradient(#12161c, #1e242d);
}

/* ================================================================
   GLOBAL STYLES
================================================================ */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    padding-top: 90px;
}

a {
    text-decoration: none;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}

[data-bs-theme=dark] p {
    color: #91989e;
}

[data-bs-theme=dark] .bg-primary p {
    color: var(--bs-white);
}

/* ================================================================
   UTILITY CLASSES
================================================================ */
[data-bs-theme=dark] .text-dark {
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

/* Shadow System */
.shadow-sm {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.shadow {
    -webkit-box-shadow: 2px 2px 20px 0 rgb(82 66 47 / 12%) !important;
    box-shadow: 2px 2px 20px 0 rgb(82 66 47 / 12%) !important;
}

.shadow-end {
    -webkit-box-shadow: rgba(0, 0, 0, .06) 10px 0px 6px -5px;
    box-shadow: rgba(0, 0, 0, .06) 10px 0px 6px -5px;
}

[dir=rtl] .shadow-end {
    -webkit-box-shadow: rgba(0, 0, 0, 0.06) -10px 0px 6px -5px;
    box-shadow: rgba(0, 0, 0, 0.06) -10px 0px 6px -5px;
}

.shadow-start {
    -webkit-box-shadow: rgba(0, 0, 0, 0.06) -10px 0px 6px -5px;
    box-shadow: rgba(0, 0, 0, 0.06) -10px 0px 6px -5px;
}

[dir=rtl] .shadow-start {
    -webkit-box-shadow: rgba(0, 0, 0, .06) 10px 0px 6px -5px;
    box-shadow: rgba(0, 0, 0, .06) 10px 0px 6px -5px;
}

/* Typography Utilities */
.font-caveat {
    font-family: var(--bs-font-caveat) !important;
}

.top-auto {
    top: auto !important;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Border Radius Utilities */
.rounded-bottom-left-4 {
    border-bottom-left-radius: 1rem;
}

.rounded-bottom-right-4 {
    border-bottom-right-radius: 1rem;
}

.rounded-top-left-4 {
    border-top-left-radius: 1rem;
}

.rounded-top-right-4 {
    border-top-left-radius: 1rem;
}

/* Background Utilities */
.bg-blur {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .2);
}

.bg-center {
    background-position: center !important;
}

.bg-bottom {
    background-position: bottom !important;
}

.bg-cover {
    background-size: cover !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}

.bg-size-contain {
    background-size: contain !important;
}

/* Font Size Utilities (10px to 60px) */
.fs-10 { font-size: 10px !important; }
.fs-11 { font-size: 11px !important; }
.fs-12 { font-size: 12px !important; }
.fs-13 { font-size: 13px !important; }
.fs-14 { font-size: 14px !important; }
.fs-15 { font-size: 15px !important; }
.fs-16 { font-size: 16px !important; }
.fs-17 { font-size: 17px !important; }
.fs-18 { font-size: 18px !important; }
.fs-19 { font-size: 19px !important; }
.fs-20 { font-size: 20px !important; }
.fs-21 { font-size: 21px !important; }
.fs-22 { font-size: 22px !important; }
.fs-23 { font-size: 23px !important; }
.fs-24 { font-size: 24px !important; }
.fs-25 { font-size: 25px !important; }
.fs-26 { font-size: 26px !important; }
.fs-27 { font-size: 27px !important; }
.fs-28 { font-size: 28px !important; }
.fs-29 { font-size: 29px !important; }
.fs-30 { font-size: 30px !important; }
.fs-31 { font-size: 31px !important; }
.fs-32 { font-size: 32px !important; }
.fs-33 { font-size: 33px !important; }
.fs-34 { font-size: 34px !important; }
.fs-35 { font-size: 35px !important; }
.fs-36 { font-size: 36px !important; }
.fs-37 { font-size: 37px !important; }
.fs-38 { font-size: 38px !important; }
.fs-39 { font-size: 39px !important; }
.fs-40 { font-size: 40px !important; }
.fs-41 { font-size: 41px !important; }
.fs-42 { font-size: 42px !important; }
.fs-43 { font-size: 43px !important; }
.fs-44 { font-size: 44px !important; }
.fs-45 { font-size: 45px !important; }
.fs-46 { font-size: 46px !important; }
.fs-47 { font-size: 47px !important; }
.fs-48 { font-size: 48px !important; }
.fs-49 { font-size: 49px !important; }
.fs-50 { font-size: 50px !important; }
.fs-51 { font-size: 51px !important; }
.fs-52 { font-size: 52px !important; }
.fs-53 { font-size: 53px !important; }
.fs-54 { font-size: 54px !important; }
.fs-55 { font-size: 55px !important; }
.fs-56 { font-size: 56px !important; }
.fs-57 { font-size: 57px !important; }
.fs-58 { font-size: 58px !important; }
.fs-59 { font-size: 59px !important; }
.fs-60 { font-size: 60px !important; }
.fs-61 { font-size: 61px !important; }
.fs-62 { font-size: 62px !important; }

/* Gutters */
@media (min-width: 1400px) {
    .g-xxl-6,
    .gx-xxl-6 {
        --bs-gutter-x: 6rem;
    }
}

/* ================================================================
   BUTTON SYSTEM (Primary color overrides from styles.css)
================================================================ */
.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-border-radius: 0.5rem;
}

.btn-group-lg>.btn,
.btn-lg {
    --bs-btn-padding-y: 0.739rem;
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-font-size: 1.1rem;
    --bs-btn-border-radius: 0.6rem;
}

.btn-group-sm>.btn,
.btn-sm {
    --bs-btn-padding-y: 0.4rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.4rem;
}

/* Primary Button - using primary color system */
.btn-primary {
    --bs-btn-bg: #440099;
    --bs-btn-border-color: #440099;
    --bs-btn-hover-bg: #eb3616;
    --bs-btn-hover-border-color: #eb3616;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: #eb3616;
    --bs-btn-active-border-color: #eb3616;
    --bs-btn-disabled-bg: #440099;
    --bs-btn-disabled-border-color: #440099;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    --bs-btn-color: #440099;
    --bs-btn-border-color: #440099;
    --bs-btn-hover-bg: #eb3616;
    --bs-btn-hover-border-color: #eb3616;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-bg: #eb3616;
    --bs-btn-active-border-color: #eb3616;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #eb3616;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #eb3616;
    --bs-gradient: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-default {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d3d4d5;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #fff;
}

[data-bs-theme=dark] .btn-default {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-body-bg);
    --bs-btn-border-color: var(--bs-body-bg);
}

.btn-outline-default {
    --bs-btn-color: #212529;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #ced4da;
    --bs-btn-hover-color: #440099;
    --bs-btn-hover-bg: #cdcdcd;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #440099;
    --bs-btn-active-bg: #e7e7e7;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #440099;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #ced4da;
}

.btn-light {
    --bs-btn-bg: #f8f4f3;
    --bs-btn-border-color: #f8f4f3;
    --bs-btn-hover-bg: #f7edeb;
    --bs-btn-hover-border-color: #f7edeb;
    --bs-btn-active-bg: #f7edeb;
    --bs-btn-active-border-color: #f7edeb;
    --bs-btn-disabled-bg: #f7edeb;
    --bs-btn-disabled-border-color: #f7edeb;
}

[data-bs-theme=dark] .btn-light {
    --bs-btn-color: #fff;
    --bs-btn-bg: #12161c;
    --bs-btn-border-color: #12161c;
}

.btn-warning {
    --bs-btn-color: #0e0e0e;
    --bs-btn-bg: #ffd105;
    --bs-btn-border-color: #ffd105;
    --bs-btn-hover-color: #0e0e0e;
    --bs-btn-hover-bg: #e7be05;
    --bs-btn-hover-border-color: #e7be05;
    --bs-btn-active-bg: #e7be05;
    --bs-btn-active-color: #0e0e0e;
    --bs-btn-active-border-color: #e7be05;
    --bs-btn-disabled-bg: #ffd105;
    --bs-btn-disabled-color: #0e0e0e;
    --bs-btn-disabled-border-color: #ffd105;
}

.btn-dark {
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-bg: #0e0e0e;
    --bs-btn-hover-border-color: #0e0e0e;
    --bs-btn-active-bg: #0e0e0e;
    --bs-btn-active-border-color: #0e0e0e;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
}

.btn-outline-secondary {
    border-color: var(--dark-gray);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--medium-gray);
    color: var(--secondary-color);
    border-color: var(--dark-gray);
}

.btn-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: all 0.2s ease;
}

.btn-user:hover {
    background-color: var(--medium-gray);
}

.btn-user.primary {
    color: var(--primary-color);
}

/* Additional Button Styles */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-icon {
    height: 36px;
    width: 36px;
}

.btn-icon-md {
    height: 42px;
    width: 42px;
}

/* ================================================================
   SECTION STYLES (Structure from alt-styles.css)
================================================================ */
.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section-home {
    padding: 3rem 0;
    background-color: #fff !important; 
    margin-top: 1.5rem;
}

.hero-text h1 {
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.categories-section {
    background-color: #fff;
}

.category-card {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.icon-container {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Events Section */
.events-section {
    background-color: var(--light-gray);
}

.event-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-img-top {
    object-fit: cover;
    height: 150px;
}

.event-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 200;
}

.event-price {
    font-weight: 300;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.organizer {
    font-size: 0.65rem;
    color: var(--dark-gray);
}

/* Online Events Section */
.online-events-section {
    background-color: #fff;
}

.online-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 10;
}

/* Create Events Section */
.create-events-section {
    background-color: var(--primary-color);
}

.create-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.create-benefits li {
    margin-bottom: 0.75rem;
}

/* ================================================================
   CARD SYSTEM
================================================================ */
.card {
    --bs-card-spacer-y: 1.5rem;
    --bs-card-spacer-x: 1.5rem;
    --bs-card-border-color: var(--bs-border-color);
    --bs-card-cap-bg: transform;
    --bs-card-border-radius: var(--bs-border-radius-xl);
    --bs-card-inner-border-radius: calc(var(--bs-border-radius-xl) - (var(--bs-border-width)));
}

.card-header,
.card-footer {
    width: calc(100% - var(--bs-card-spacer-x)*2);
    padding-right: 0;
    padding-left: 0;
    margin: auto;
}

/* Card hover effects */
.card-hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.card-hover:hover {
    -webkit-transform: translate(0px, -6px);
    -ms-transform: translate(0px, -6px);
    transform: translate(0px, -6px);
}

.card-image-hover::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.card-hover-bg:hover .card-image-hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Card Image Containers */
.card-img-wrap {
    height: 0;
    padding-bottom: 65%;
    overflow: hidden;
    position: relative;
}

.event-image-container {
    min-height: 40vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 576px) {
    .event-image-container {
        min-height: 20vh;
    }
}

.image-container {
    height: 100%;
    min-height: 600px;
    max-height: 600px;
    position: relative;
}

@media (max-width: 768px) {
    .image-container {
        height: 300px;
        min-height: auto;
        max-height: auto;
    }
}

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

.event-header-gallery {
    position: relative;
    overflow: hidden;
    height: 50vh;
}

.secondary-media {
    height: 24vh;
}

@media (max-width: 576px) {
    .main-media {
        min-height: 30vh;
    }
}

/* Card Badges */
.card-badge {
    top: 25px;
    left: 2px;
    overflow: visible;
    padding: 5px 10px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    letter-spacing: 1px;
    font-size: 0.719rem !important;
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
}

[dir=rtl] .card-badge {
    border-radius: 6px 0 0 6px;
}

.card-badge+.card-badge {
    top: 60px;
}

.card-start {
    font-size: 14px;
}

/* ================================================================
   SEARCH BAR SYSTEM
================================================================ */
.search-bar {
    background-color: white;
    padding: 1.5rem 0;
}

.search-bar-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.search-select-input {
    position: relative;
}

.search-select-input input {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--medium-gray);
}

/* ================================================================
   FORM CONTROLS
================================================================ */
.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: -11px;
    left: 10px;
    pointer-events: none;
    z-index: 4;
    background: var(--bs-white);
    padding: 0 10px;
    font-weight: 500;
    color: var(--bs-dark);
}

[data-bs-theme=dark] .form-group label {
    color: var(--bs-white);
    background: var(--bs-body-bg);
}

.form-control,
.form-select {
    font-size: 15px;
    font-weight: 500;
    height: 52px;
    border-radius: 0.5rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
}

.form-control:focus,
.form-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 1rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-color: var(--bs-primary);
}

textarea.form-control {
    height: auto;
}

.form-group textarea.form-control {
    height: auto;
    padding: 15px 20px;
}

/* Form Checkbox */
.form-check {
    padding-left: 2em;
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-top: .15em;
    border-color: #dee2e6;
}

.form-check .form-check-input {
    margin-left: -2em;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    border-radius: .4em;
}

.form-check-label {
    font-weight: 500;
    color: var(--bs-dark);
}

[data-bs-theme=dark] .form-check-label {
    color: var(--bs-white);
}

/* ================================================================
   NAVBAR SYSTEM
================================================================ */
.navbar {
    --bs-navbar-padding-y: 1rem;
    --bs-navbar-collapse-border-color: var(--bs-border-color);
}

@media(max-width: 991px) {
    [dir=rtl] .navbar {
        overflow: hidden;
    }
}

@media(max-width: 576px) {
    .navbar .container,
    .navbar .container-fluid,
    .navbar .container-lg,
    .navbar .container-md,
    .navbar .container-sm,
    .navbar .container-xl,
    .navbar .container-xxl {
        --bs-gutter-x: 2rem;
    }
}

.custom-navbar.navbar {
    border-radius: var(--bs-border-radius-lg);
}

.navbar {
    z-index: 9;
    --bs-navbar-color: #2f2e41;
    --bs-navbar-nav-link-padding-x: 0.7rem;
    --bs-navbar-active-color: var(--bs-primary);
    --bs-navbar-hover-color: var(--bs-primary);
    --bs-navbar-border-color: var(--bs-primary);
    background-color: var(--bs-white);
}

[data-bs-theme=dark] .navbar {
    background-color: var(--bs-body-bg);
}

.nav-item .nav-link {
    color: var(--secondary-color);
}

.nav-item .nav-link:hover {
    color: var(--secondary-color);
}

/* Navbar Brand */
.custom-navbar .navbar-brand img {
    height: 30px;
}

.navbar-brand img {
    height: 64px;
    object-fit: contain;
}

@media(min-width: 576px) {
    .navbar-brand img,
    .custom-navbar .navbar-brand img {
        height: 64px;
        object-fit: contain;
    }
}

.logo-white {
    display: none;
}

[data-bs-theme=dark] .logo-dark {
    display: none;
}

[data-bs-theme=dark] .logo-white {
    display: block;
}

/* ================================================================
   HERO HEADER SYSTEM
================================================================ */
.hero-header {
    padding: 7rem 0 5rem;
}

.hero-header.dark-overlay::after {
    opacity: 0.4;
}

.hero-header-subtitle {
    letter-spacing: .1em;
}

.hero-header-map {
    height: 500px;
}

.hero-header-rounded {
    padding: 6rem 0 11.625rem;
}

.hero-header-grid {
    padding: 3rem 0;
    min-height: 200px;
}

.region-header {
    padding: 3rem 0;
    min-height: 200px;
}

@media(max-width: 767px) {
    .region-header,
    .hero-header {
        height: auto !important;
    }
}

@media(min-width: 576px) {
    .hero-header-grid {
        padding: 5rem 0;
    }

    .hero-header-map {
        height: 600px;
    }
}

@media(min-width: 768px) {
    .hero-header {
        padding: 12rem 0;
    }

    .hero-header-grid {
        padding: 8rem 0;
    }

    .hero-header-rounded {
        padding: 12rem 0 17.625rem;
    }

    .hero-header-map {
        height: 800px;
    }
}

@media(min-width: 992px) {
    .hero-header-grid {
        padding: 12rem 0;
    }
}

@media(min-width: 1200px) {
    .hero-header.vh-100 {
        height: calc(100vh - 32px) !important;
    }

    .hero-header-rounded .bg-image {
        border-bottom-left-radius: 22%;
        border-bottom-right-radius: 60%;
    }

    .hero-header-rounded.dark-overlay::after {
        border-bottom-left-radius: 22%;
        border-bottom-right-radius: 60%;
    }
}

/* ================================================================
   FOOTER SYSTEM
================================================================ */
.footer {
    background-color: var(--secondary-color);
}

.footer-links a {
    color: #b9b8c3;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Dark Footer */
.footer-dark {
    background-color: var(--footer-bg-color);
    color: white;
    padding-bottom: 2rem;
}

.footer-dark h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-dark a {
    color: #b9b8c3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-dark a:hover {
    color: white;
}

.whatsapp-number {
    color: white;
}

.social-icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.inst {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fb {
    background-color: #3b5998;
}

.footer-logo img {
    height: 40px;
    object-fit: contain;
}

.copy {
    font-size: 0.9rem;
    color: #b9b8c3;
}

/* ================================================================
   CUSTOM EVENT/TICKET SYSTEM COMPONENTS
================================================================ */
.media-thumbnail {
    height: 113px;
}

.cursor-pointer {
    cursor: pointer;
}

.aspect-square {
    aspect-ratio: 1/1;
}

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

.user-icon {
    background-color: var(--bs-primary);
    width: 6rem;
    height: 6rem;
    overflow: hidden;
}

.user-icon div i {
    color: var(--bs-light);
}

.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 576px) {
    .affiliates-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.region-card-header {
    position: relative;
    overflow: hidden;
    height: 15vh;
}

.region-card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-screen {
    height: 80vh;
    width: 100%;
    overflow-y: scroll;
    position: relative;
}

.bg-dark-opacity-25 {
    background: rgba(25, 30, 37, 0.60);
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}




/* ================================================================
   BLOG SECTION STYLES
================================================================ */
.blog-section {
    background-color: var(--light-gray);
}

.blog-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.blog-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .card-title {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.blog-card .card-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-read-more:hover {
    color: var(--primary-hover);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.blog-card .card-footer {
    background-color: transparent;
    border-top: 1px solid var(--medium-gray);
    padding: 0.75rem 1.25rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
================================================================ */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .create-events-section img {
        margin-top: 2rem;
    }

    .card-img-top {
        height: 140px;
    }

    .filters-col {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 992px) {
    .search-bar-title {
        font-size: 1.5rem;
    }

    .sidebar {
        margin-bottom: 2rem;
    }
}

/* ================================================================
   ANIMATIONS AND SPECIAL EFFECTS
================================================================ */

/* Ticket Indicator Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(209, 65, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(209, 65, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(209, 65, 12, 0);
    }
}

.card-badge.text-bg-primary {
    animation: pulse 2s infinite;
}

/* Enhanced Card Appearance */
.event-card {
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15%;
    right: 15%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Ticket Status Indicators */
.ticket-status {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.status-selling-fast {
    background-color: #f5a623;
}

.status-almost-sold {
    background-color: #d0021b;
}

/* ================================================================
   BACKGROUND OVERRIDES (Primary color system takes precedence)
================================================================ */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-bg-primary {
    background-color: var(--primary-color) !important;
}

.text-bg-success {
    background-color: #00c999 !important;
}

/* ================================================================
   MISC UTILITY CLASSES
================================================================ */
.hidden-sm, .hidden-md {
    /* Add responsive visibility rules as needed */
}

/* Progress bars */
.progress,
.progress-stacked {
    --bs-progress-bar-bg: #440099;
    --bs-progress-height: .4rem;
}

.progress-bar {
    border-radius: 10px;
}

/* Tooltips */
.tooltip {
    font-family: 'Wix Madefor Display', sans-serif;
}

/* HR elements */
hr {
    opacity: 1;
    color: #dee2e6;
}

[data-bs-theme=dark] hr {
    border-color: var(--bs-border-color);
}

/* Badge system */
.badge {
    --bs-badge-padding-x: 0.8em;
    --bs-badge-padding-y: 0.4em;
}

/* Custom spacing utilities as needed */
.z-100 {
    z-index: 100;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.calendar-container {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.date-shortcuts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shortcut-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 2rem;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.shortcut-btn:hover {
    border-color: #440099;
    color: #440099;
}

.shortcut-btn.active {
    background: #440099;
    color: white;
    border-color: #440099;
}

.nav-btn {
    width: 36px;
    height: 36px;
    padding: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f4f3;
    border: 2px solid transparent;
    padding: 0.25rem;
    position: relative;
}

.calendar-date:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 0, 152, 0.2);
    border-color: #440099;
}

.calendar-date.selected {
    background: #440099;
    color: white;
    border-color: #440099;
}

.calendar-date.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-date.best-price {
    animation: pulse 1s infinite;
}

.date-price {
    font-size: 0.625rem;
    font-weight: 600;
    opacity: 0.8;
}

.availability-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.availability-high { background: #28a745; }
.availability-medium { background: #ffb14f; }
.availability-low { background: #dc3545; }

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(68, 0, 152, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px 5px rgba(68, 0, 152, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(68, 0, 152, 0); }
}

/* Primary Color System */
:root {
    --bs-primary: #440099;
    --primary-color: #440099;
    --primary-hover: #b4380b;
    --secondary-color: #39364f;
    --light-gray: #f8f7fa;
    --medium-gray: #eeedf2;
    --dark-gray: #6f7287;
    --text-color: #39364f;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

.font-caveat {
    font-family: 'Caveat', cursive !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(68, 0, 152, 0.8), rgba(180, 67, 11, 0.6));
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 4rem 0;
}

/* Floating Ticket Bar */
.floating-ticket-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.floating-ticket-bar.show {
    transform: translateY(0);
}

/* Journey Progress */
.journey-progress {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.progress-step {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    font-weight: 500;
}

.progress-step.active {
    color: var(--primary-color);
}

.progress-step.completed {
    color: var(--success-color);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    border: 2px solid currentColor;
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: currentColor;
    color: white;
}

/* Ticket Cards */
.ticket-quick-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.ticket-card {
    border: 2px solid var(--medium-gray);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: white;
}

.ticket-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(68, 0, 152, 0.15);
}

.ticket-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(68, 0, 152, 0.05), rgba(68, 0, 152, 0.1));
}

.popularity-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--warning-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.recommended-badge {
    background: var(--success-color);
}

/* Expandable Sections */
.expandable-section {
    border: 1px solid var(--medium-gray);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.section-header {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.section-header:hover {
    background: var(--medium-gray);
}

.section-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-content.expanded {
    padding: 1.5rem;
    max-height: 1000px;
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, var(--light-gray), white);
    padding: 1rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

.live-activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.activity-pulse {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
     0% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.7; transform: scale(1.2); }
     100% { opacity: 1; transform: scale(1); }
 }

/* Urgency Indicators */
.urgency-indicator {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: gentle-pulse 3s infinite;
}

@keyframes gentle-pulse {
     0%, 100% { transform: scale(1); }
     50% { transform: scale(1.05); }
 }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #5a0db3);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #c94514);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 0, 152, 0.3);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 0;
    }

    .ticket-quick-select {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

.product-thumb {
    height: 180px;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.search-filter-section {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: 15px 15px 0 0;
}

.search-box {
    position: relative;
}

.search-input {
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.filter-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.stats-section {
    background: white;
    padding: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--gradient-secondary);
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.promoters-grid {
    padding: 4rem 0;
}

.promoter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.promoter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.promoter-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.promoter-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.promoter-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.promoter-location {
    opacity: 0.9;
    font-size: 0.9rem;
}

.promoter-body {
    padding: 1.5rem;
}

.promoter-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promoter-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.promoter-tags {
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.btn-view-events {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-events:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warning-color);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pagination-section {
    padding: 2rem 0;
    background: white;
}

.pagination {
    justify-content: center;
}

.page-link {
    border: none;
    padding: 0.8rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 10px;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-filter-section {
        margin-top: -20px;
    }

    .promoter-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem;
        background: white;
        border-radius: 8px;
    }
}

.promoter-hero {
    padding: 60px 0;
    background: var(--gradient-primary);
}

.promoter-profile-image {
    position: relative;
    display: inline-block;
}

.promoter-avatar-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: var(--shadow-lg);
}

.featured-badge-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warning-color);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.promoter-title {
    color: white;
    margin-bottom: 1rem;
}

.promoter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.promoter-stats-inline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-inline {
    text-align: center;
    color: white;
}

.stat-inline .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-inline .stat-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.social-links .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.social-links .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.promoter-details-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.sidebar-card {
    position: sticky;
    top: 2rem;
}

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

.card-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.venue-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.venue-item:last-child {
    margin-bottom: 0;
}

.venue-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.venue-address {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.custom-nav-pills .nav-link {
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-nav-pills .nav-link:hover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.1);
}

.custom-nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-dropdown-sm {
    width: auto;
    min-width: 150px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.event-card, .product-card {
    transition: all 0.3s ease;
}

.event-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-image-container, .product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.event-image, .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image,
.product-card:hover .product-image {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 50px;
    box-shadow: var(--shadow);
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.event-title {
    font-weight: 600;
    margin-bottom: 0.5rem;

}

.event-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-badge {
    font-size: 0.8rem;
    color: #6c757d;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;

}

.product-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-sale {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--danger-color);
}

.price-original {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.about-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.about-stats .stat-item {
    padding: 1rem;
}

.about-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-stats .stat-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .promoter-hero {
        padding: 40px 0;
        text-align: center;
    }

    .promoter-avatar-large {
        width: 150px;
        height: 150px;
    }

    .promoter-stats-inline {
        justify-content: center;
    }

    .section-header-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .sidebar-card {
        position: static;
    }
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--gradient-secondary);
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Regions Grid */
.promoters-grid {
    padding: 4rem 0;
}

.promoter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.promoter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Region Card Specific */
.region-card {
    position: relative;
}

.region-header {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.region-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.region-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.region-card:hover .region-image {
    transform: scale(1.1);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.region-flag {
    font-size: 1.1rem;
    font-weight: 600;
}

.promoter-body {
    padding: 1.5rem;
}

.region-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  
}

.region-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promoter-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.promoter-tags {
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warning-color);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Affiliates & Promoters Horizontal Section */
.partners-section {
    background: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.partner-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.affiliate-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.promoter-mini-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.partner-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-location {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.partner-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.partner-stat {
    text-align: center;
}

.partner-stat-value {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

/* Advertisement Spaces */


.btn-view-events {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-events:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

/* Pagination */
.pagination-section {
    padding: 2rem 0;
    background: white;
}

.pagination {
    justify-content: center;
}

.page-link {
    border: none;
    padding: 0.8rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 10px;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-filter-section {
        margin-top: -20px;
    }

    .promoter-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem;
        background: white;
        border-radius: 8px;
    }

    .partner-card {
        min-width: 250px;
    }
}

/* Hero Section */
.region-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.region-hero-content {
    position: relative;
}

.region-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.region-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.region-stats-hero {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255,255,255,0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: var(--shadow-lg);
}

.gallery-container {
    padding: 2rem;
    border-radius: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 1rem;
    height: 520px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.section-header {
    display: flex;

    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Promoter Cards */
.promoter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.promoter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promoter-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.promoter-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 1rem;
}

.promoter-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promoter-location {
    font-size: 0.9rem;
    opacity: 0.9;
}

.promoter-body {
    padding: 1.5rem;
}

.promoter-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

/* Event Cards */
.event-card {
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 50px;
    box-shadow: var(--shadow);
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;

}

.event-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-badge {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Affiliate Cards */
.affiliate-card {
    background: var(--gradient-secondary);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.affiliate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.affiliate-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.affiliate-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.affiliate-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Advertisement Spaces */
.ad-space {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.ad-space:hover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.05);
}

.ad-banner {
    min-height: 120px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6c757d;
}

.ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fill and crop to the box */
    display: block;
}

.ad-sidebar {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6c757d;
}
.ad-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fill and crop to the box */
    display: block;
    border-radius: 6px;  /* optional, matches your card style */
}

/* Buttons */
.btn-view-events {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-events:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

/* Tabs */
.custom-nav-pills .nav-link {
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-nav-pills .nav-link:hover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.1);
}

.custom-nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .region-title {
        font-size: 2.5rem;
    }

    .region-stats-hero {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
        height: auto;
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Cookie Policy Page Styles */

/* Hero Section Fixes */
.hero {
    position: relative;
    min-height: 400px;
}

.hero .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero.dark-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero .overlay-content {
    position: relative;
    z-index: 3;
}

/* Contact Section Fixes */
.email-link {
    color: inherit;
    text-decoration: none;
}

.email-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Social Media Links */
.fb, .ins {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fb:hover, .ins:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.fb {
    background-color: #1877f2;
}

.fb:hover {
    background-color: #166fe5;
}

.ins {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ins:hover {
    opacity: 0.8;
}

/* TikTok link fix - remove list styling */
.hero li {
    list-style: none;
}

.hero .d-flex.gap-3 li {
    margin: 0;
    padding: 0;
}

.hero .d-flex.gap-3 li a {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .d-flex.gap-3 li a:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* Cookie page styles */

.cookie-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.contact-section-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.contact-link:hover {
    color: #667eea;
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    margin-right: 12px;
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok {
    background: #000;
}

/* Cookie Policy Content Styles */
.cookie-content {
    padding: 3rem 0;
    background: #ffffff;
}

.cookie-policy-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.cookie-policy-content h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.cookie-policy-content h2 {
    color: #495057;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.cookie-policy-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cookie-policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.cookie-policy-content ul li {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.cookie-policy-content ul li::marker {
    color: #667eea;
}

/* Links styling */
.cookie-policy-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-policy-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cookie-hero {
        min-height: 100vh;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .cookie-policy-section {
        padding: 2rem 1rem;
    }

    .cookie-policy-content h1 {
        font-size: 2rem;
    }

    .cookie-policy-content h2 {
        font-size: 1.5rem;
    }

    .cookie-policy-content p,
    .cookie-policy-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1rem;
    }
}

/* Utility classes for spacing */
.section-spacing {
    margin-bottom: 2rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Contact us page styles */

.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.contact-section-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.contact-link:hover {
    color: #667eea;
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    margin-right: 12px;
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok {
    background: #000;
}

.contact-content {
    padding: 3rem 0;
    background: #ffffff;
}

.contact-form-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c !important;
    margin-bottom: 4rem;
    text-align: center;
    padding: 0 1rem;
}


@media (max-width: 768px) {
    .contact-hero {
        min-height: 100vh;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1rem;
    }
}


/* Filter Styles */

@media (max-width: 1199.98px) {
    .js-sidebar-filters-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .js-sidebar-filters-mobile.show {
        opacity: 1;
        visibility: visible;
    }

    .js-sidebar-filters-mobile .filters-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .js-sidebar-filters-mobile.show .filters-container {
        transform: translateX(0);
    }

    .sidebar-filters-header {
        background: white;
        border-bottom: 1px solid #dee2e6;
    }

    /* Sticky Toolbar Styles */
    .mobile-sticky-toolbar {
        position: sticky;
        top: 70px;
        z-index: 100;
        background: white;
        border-bottom: 1px solid #dee2e6;
        margin: 0 -15px 20px -15px;
        padding: 12px 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Desktop - always show */
@media (min-width: 1200px) {
    .js-sidebar-filters-mobile {
        display: block !important;
        position: static !important;
        background: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-sticky-toolbar {
        display: none !important;
    }

    .sidebar-filters-header {
        display: none !important;
    }
}

.filter-close {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
}

.filter-close:hover {
    background: #e9ecef;
}

.mobile-sticky-toolbar .btn {
    transition: all 0.2s ease;
}

.mobile-sticky-toolbar .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fixed-top {
    z-index: 1030 !important;
}

/* Policy Page Styles */
.cart-header {
    background: var(--tp-gradient);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.cart-container {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.cart-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.cart-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #f8f9fa;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.item-details {
    flex: 1;
    margin-left: 1rem;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tp-dark);
    margin-bottom: 0.5rem;
}

.item-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--tp-primary);
    border: none;
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--tp-primary);
    color: white;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 0.25rem;
}

.remove-btn {
    color: var(--tp-danger);
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: #c82333;
    transform: scale(1.2);
}

.currency-selector {
    position: relative;
    z-index: 1050;
}

.currency-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 140px;
    color: white;
    font-weight: 500;
}

.currency-dropdown:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--tp-primary);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.currency-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.currency-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--tp-primary);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1051;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.currency-options.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.currency-option {
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.currency-option:hover {
    background: #f8f9fa;
}

.currency-option.selected {
    background: rgba(68, 0, 153, 0.1);
    font-weight: 600;
    color: var(--tp-primary);
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--tp-primary);
}

.checkout-options {
    margin-top: 1.5rem;
}

.checkout-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.checkout-option:hover {
    border-color: var(--tp-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(68, 0, 153, 0.1);
}

.checkout-option.selected {
    border-color: var(--tp-primary);
    background: rgba(68, 0, 153, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(68, 0, 153, 0.2);
}

.checkout-option::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.checkout-option.selected::before {
    background: var(--tp-primary);
    border-color: var(--tp-primary);
}

.checkout-option.selected::after {
    content: '✓';
    position: absolute;
    top: 0.95rem;
    right: 1rem;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tp-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-description {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--tp-primary);
}

.savings-badge {
    background: var(--tp-success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.installment-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.installment-options h6 {
    color: var(--tp-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.installment-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.installment-plan {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.installment-plan:hover {
    border-color: var(--tp-primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(68, 0, 153, 0.1);
}

.installment-plan.selected {
    border-color: var(--tp-primary);
    background: rgba(68, 0, 153, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(68, 0, 153, 0.15);
}

.installment-plan::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.installment-plan.selected::before {
    background: var(--tp-primary);
    border-color: var(--tp-primary);
}

.installment-plan.selected::after {
    content: '✓';
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.plan-title {
    font-weight: 600;
    color: var(--tp-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.plan-amount {
    font-size: 1rem;
    font-weight: bold;
    color: var(--tp-primary);
    margin-bottom: 0.25rem;
}

.plan-total {
    font-size: 0.8rem;
    color: #6c757d;
}

.installment-info {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
    border-left: 3px solid var(--tp-success);
}

.installment-schedule {
    font-size: 0.85rem;
    color: var(--tp-dark);
}

.btn-tp {
    background: var(--tp-gradient);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(68, 0, 153, 0.3);
    width: 100%;
}

.btn-tp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68, 0, 153, 0.4);
    color: white;
}

.btn-tp:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.conversion-note {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
}

.region-info {
    background: rgba(23, 162, 184, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--tp-info);
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .item-details {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .quantity-controls {
        justify-content: space-between;
        width: 100%;
    }

    .summary-card {
        max-height: none;
        margin-top: 1rem;
    }

    .cart-container {
        max-height: none;
        overflow-y: visible;
    }

    .currency-selector {
        margin-top: 1rem;
    }

    .currency-dropdown {
        min-width: 120px;
        justify-content: center;
    }
}
/* checkout styles */
/* ===== TicketPulse Cart (scoped) ===== */
.tp-cart {
    /* local aliases to your design tokens so we don't re-declare :root */
    --tp-primary: var(--primary-color, #440099);
    --tp-secondary: var(--primary-hover, #6f42c1);
    --tp-success: var(--success-color, #28a745);
    --tp-info: var(--warning-color, #17a2b8);
    --tp-dark: var(--text-color, #1f2530);
    --tp-muted: #6c757d;
    --tp-border: #e9ecef;
    --tp-surface: #ffffff;
    --tp-surface-2: #f8f9fb;
    --tp-surface-3: #f3f5f7;
    --tp-gradient: linear-gradient(135deg, #5a21b6, var(--primary-color, #440099) 60%, #2a0066);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
    --shadow-md: 0 2px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
}

/* general text resets inside cart only */
.tp-cart h1,.tp-cart h2,.tp-cart h3,.tp-cart h4,.tp-cart h5{color:var(--tp-dark);margin:0}

/* ===== Page Header ===== */
.tp-cart .cart-header{
    padding:2.25rem 0;
    background:linear-gradient(180deg, rgba(68,0,153,.05), rgba(68,0,153,0));
    border-bottom:1px solid var(--tp-border);
    margin-bottom:1rem;
}
.tp-cart .cart-header h1{
    font-weight:700;letter-spacing:.2px;display:flex;align-items:center;gap:.75rem;
}
.tp-cart .cart-header .opacity-75{color:var(--tp-muted)!important}

/* ===== Currency Selector ===== */
.tp-cart .currency-selector{position:relative;display:inline-block;min-width:210px}
.tp-cart .currency-dropdown{
    display:flex;align-items:center;gap:.6rem;padding:.6rem .875rem;border:1.5px solid var(--tp-border);
    border-radius:999px;background:var(--tp-surface);cursor:pointer;box-shadow:var(--shadow-sm);
    transition:all .2s ease;user-select:none;
}
.tp-cart .currency-dropdown:hover{border-color:var(--tp-primary);transform:translateY(-1px)}
.tp-cart .currency-dropdown i{margin-left:auto;color:var(--tp-muted)}
.tp-cart .currency-flag{width:24px;height:18px;border-radius:3px;object-fit:cover;box-shadow:0 1px 3px rgba(0,0,0,.2)}
.tp-cart .currency-options{
    position:absolute;top:calc(100% + .5rem);left:0;right:0;background:var(--tp-surface);
    border:2px solid var(--tp-primary);border-radius:10px;box-shadow:var(--shadow-lg);z-index:1051;
    display:none;max-height:300px;overflow-y:auto;
}
.tp-cart .currency-options.show{display:block;animation:tp-slideDown .25s ease}
@keyframes tp-slideDown{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.tp-cart .currency-option{
    padding:.7rem .9rem;cursor:pointer;display:flex;align-items:center;gap:.75rem;transition:all .15s ease;
    font-size:.95rem;color:var(--tp-dark);
}
.tp-cart .currency-option:hover{background:var(--tp-surface-3)}
.tp-cart .currency-option.selected{background:rgba(68,0,153,.08);font-weight:600;color:var(--tp-primary)}

/* ===== Cards (scoped) ===== */
.tp-cart .card{border:none;background:var(--tp-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}
.tp-cart .card-header{background:var(--tp-surface-2)!important;border-bottom:1px solid var(--tp-border)!important;
    border-top-left-radius:var(--radius-md)!important;border-top-right-radius:var(--radius-md)!important}
.tp-cart .cart-card .card-header h5{font-weight:700}

/* ===== Cart Items ===== */
.tp-cart .cart-item{align-items:center}
.tp-cart .item-image{max-width:100%;border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}
.tp-cart .item-title{font-weight:600;color:var(--tp-dark);margin-bottom:.25rem}
.tp-cart .item-meta{color:var(--tp-muted);font-size:.9rem;margin-bottom:1rem}
.tp-cart .quantity-controls{display:flex;align-items:center;gap:.5rem}
.tp-cart .quantity-btn{
    width:40px;height:40px;border:1.5px solid var(--tp-border);border-radius:10px;background:var(--tp-surface);
    display:inline-flex;align-items:center;justify-content:center;transition:all .2s ease;box-shadow:var(--shadow-sm)
}
.tp-cart .quantity-btn:hover{border-color:var(--tp-primary);transform:translateY(-1px)}
.tp-cart .quantity-btn:disabled{opacity:.5;cursor:not-allowed;transform:none}
.tp-cart .quantity-input{
    width:72px;text-align:center;border:1.5px solid var(--tp-border);border-radius:10px;height:40px;box-shadow:var(--shadow-sm)
}
.tp-cart .remove-btn-card{border-radius:10px}
.tp-cart .item-price{font-size:1.1rem;color:var(--tp-dark)}

/* ===== Right Column Summary ===== */
.tp-cart .summary-card{position:sticky;top:90px;background:var(--tp-surface);border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
.tp-cart .summary-card .card-header{background:var(--tp-surface-2);border-bottom:2px solid var(--tp-border);font-weight:700}
.tp-cart .summary-row{padding:.6rem 0;font-size:.95rem}
.tp-cart .summary-row-total{margin-top:.8rem;padding-top:.8rem;border-top:2px solid var(--tp-primary);font-size:1.05rem}

/* ===== Payment Options ===== */
.tp-cart .checkout-title{color:var(--tp-dark);font-weight:700;font-size:1rem}
.tp-cart .checkout-options{margin-top:1.25rem}
.tp-cart .checkout-option{
    border:2px solid var(--tp-border);border-radius:12px;padding:1.1rem;margin-bottom:1rem;cursor:pointer;
    transition:all .25s ease;background:var(--tp-surface);position:relative;box-shadow:var(--shadow-sm)
}
.tp-cart .checkout-option:hover{border-color:var(--tp-primary);transform:translateY(-2px);box-shadow:0 6px 16px rgba(68,0,153,.12)}
.tp-cart .checkout-option.selected{border-color:var(--tp-primary);background:rgba(68,0,153,.05);box-shadow:0 8px 20px rgba(68,0,153,.2)}
.tp-cart .checkout-option::before{
    content:'';position:absolute;top:1rem;right:1rem;width:20px;height:20px;border:2px solid #dee2e6;border-radius:50%;
    transition:all .2s ease;background:#fff
}
.tp-cart .checkout-option.selected::before{background:var(--tp-primary);border-color:var(--tp-primary)}
.tp-cart .checkout-option.selected::after{
    content:'✓';position:absolute;top:1.05rem;right:1.35rem;color:#fff;font-size:.8rem;font-weight:700
}
.tp-cart .option-title{font-size:1.05rem;font-weight:700;color:var(--tp-dark);margin-bottom:.35rem;display:flex;align-items:center;gap:.5rem}
.tp-cart .option-title i{color:var(--tp-primary)}
.tp-cart .option-description{color:var(--tp-muted);font-size:.9rem;margin-bottom:.5rem}
.tp-cart .option-price{font-size:1.1rem;font-weight:800;color:var(--tp-primary);display:flex;align-items:center;flex-wrap:wrap;gap:.5rem}
.tp-cart .savings-badge{background:var(--tp-success);color:#fff;padding:.2rem .6rem;border-radius:999px;font-size:.75rem;font-weight:700}

/* ===== Installments ===== */
.tp-cart .installment-options{margin-top:.75rem;padding-top:.75rem;border-top:1px solid var(--tp-border)}
.tp-cart .installment-options h6{color:var(--tp-dark);font-weight:700;font-size:.95rem}
.tp-cart .installment-plans{display:grid;gap:.75rem;margin:1rem 0}
.tp-cart .installment-plan{
    border:2px solid var(--tp-border);border-radius:10px;padding:1rem;cursor:pointer;transition:all .2s ease;background:#fff;position:relative;box-shadow:var(--shadow-sm)
}
.tp-cart .installment-plan:hover{border-color:var(--tp-primary);transform:translateY(-1px);box-shadow:0 4px 12px rgba(68,0,153,.12)}
.tp-cart .installment-plan.selected{border-color:var(--tp-primary);background:rgba(68,0,153,.05);box-shadow:0 4px 12px rgba(68,0,153,.16)}
.tp-cart .installment-plan::before{content:'';position:absolute;top:.75rem;right:.75rem;width:18px;height:18px;border:2px solid #dee2e6;border-radius:50%;transition:all .2s ease;background:#fff}
.tp-cart .installment-plan.selected::before{background:var(--tp-primary);border-color:var(--tp-primary)}
.tp-cart .installment-plan.selected::after{content:'✓';position:absolute;top:.9rem;right:1rem;color:#fff;font-size:.7rem;font-weight:700}
.tp-cart .plan-title{font-weight:700;color:var(--tp-dark);font-size:.95rem;margin-bottom:.35rem}
.tp-cart .plan-amount{font-size:1.05rem;font-weight:800;color:var(--tp-primary);margin-bottom:.2rem}
.tp-cart .plan-total{font-size:.85rem;color:var(--tp-muted)}
.tp-cart .installment-info{
    background:linear-gradient(135deg, rgba(40,167,69,.1), rgba(40,167,69,.05));
    border-radius:10px;padding:.9rem;border-left:4px solid var(--tp-success);font-size:.9rem;line-height:1.6
}

/* ===== Buttons ===== */
.tp-cart .btn-tp{
    background:var(--tp-gradient);border:none;color:#fff;padding:1rem 1.25rem;font-size:1.02rem;font-weight:700;border-radius:12px;
    transition:all .25s ease;box-shadow:0 6px 18px rgba(68,0,153,.3);width:100%;display:flex;align-items:center;justify-content:center;gap:.5rem
}
.tp-cart .btn-tp:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 10px 26px rgba(68,0,153,.4);color:#fff}
.tp-cart .btn-tp:disabled{opacity:.6;transform:none;box-shadow:none;cursor:not-allowed}

/* ===== Info & Terms ===== */
.tp-cart .info-card{background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);border:none}
.tp-cart .conversion-note{font-size:.85rem;color:var(--tp-muted);font-style:italic}
.tp-cart .region-info{
    background:linear-gradient(135deg, rgba(23,162,184,.1), rgba(23,162,184,.05));
    border-radius:10px;padding:1rem 1.1rem;margin-bottom:1.1rem;border-left:4px solid var(--tp-info)
}
.tp-cart .terms-text{font-size:.77rem;color:var(--tp-muted);line-height:1.45;margin:0}
.tp-cart .terms-link{color:var(--tp-primary);font-weight:700;text-decoration:none;font-size:.9rem;transition:all .2s ease}
.tp-cart .terms-link:hover{color:var(--tp-secondary);text-decoration:underline}

/* ===== Empty Cart ===== */
.tp-cart .empty-cart{text-align:center;padding:3rem 1.5rem}
.tp-cart .empty-cart i{font-size:3.2rem;color:#dadfe5;margin-bottom:.6rem}
.tp-cart .empty-cart h4{color:var(--tp-dark);font-weight:700;margin-bottom:.25rem}

/* ===== Dropdown Scrollbar ===== */
.tp-cart .currency-options::-webkit-scrollbar{width:6px}
.tp-cart .currency-options::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}
.tp-cart .currency-options::-webkit-scrollbar-thumb{background:var(--tp-primary);border-radius:10px}
.tp-cart .currency-options::-webkit-scrollbar-thumb:hover{background:var(--tp-secondary)}

/* ===== Responsive ===== */
@media (max-width: 992px){
    .tp-cart .summary-card{position:relative;top:0;margin-top:1.25rem}
}
@media (max-width: 768px){
    .tp-cart .cart-header{padding:1.6rem 0}
    .tp-cart .cart-header h1{font-size:1.45rem}
    .tp-cart .currency-selector{margin-top:.75rem;width:100%}
    .tp-cart .currency-dropdown{width:100%}
    .tp-cart .item-image{max-width:220px;margin:0 auto}
    .tp-cart .quantity-controls{justify-content:flex-start}
    .tp-cart .option-price{font-size:1rem}
    .tp-cart .btn-tp{padding:.9rem 1.1rem;font-size:.97rem}
}

/* reservation styles */

.-tp-reservation .addon-pills { display:flex; flex-wrap:wrap; gap:.5rem; }

.-tp-reservation .addon-pill {
    background:#f8f4f3; border:1px solid #e9ecef; border-radius:2rem; padding:.5rem 1rem;
    font-size:.875rem; cursor:pointer; transition:all .3s; display:flex; align-items:center; gap:.5rem;
}
.-tp-reservation .addon-pill:hover { border-color:#440099; }
.-tp-reservation .addon-pill.selected { background:#440099; color:#fff; border-color:#440099; }
.-tp-reservation .addon-pill input[type="checkbox"] { display:none; }

.-tp-reservation .time-picker-container {
    background:#fff; border-radius:1rem; padding:1.5rem; box-shadow:0 1px 3px rgba(0,0,0,.1);
}

.-tp-reservation .time-slots-container {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:.75rem;
}

.-tp-reservation .time-slot {
    background:#f8f4f3; border:2px solid transparent; border-radius:.75rem; padding:.75rem; text-align:center;
    cursor:pointer; transition:all .3s; position:relative;
}
.-tp-reservation .time-slot:hover {
    border-color:#440099; transform:translateY(-2px); box-shadow:0 4px 12px rgba(68,0,152,.2);
}
.-tp-reservation .time-slot.selected { background:#440099; color:#fff; border-color:#440099; }
.-tp-reservation .time-slot.selected small { color:rgba(255,255,255,.8)!important; }

.-tp-reservation .time-slot-badge {
    position:absolute; top:-8px; right:-8px; background:#ffb14f; color:#fff; font-size:.625rem;
    padding:2px 8px; border-radius:1rem; font-weight:600;
}

.-tp-reservation .skeleton {
    background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%);
    background-size:200% 100%; animation:loading 1.5s infinite;
}

/* Desktop: Show full summary, hide mobile bar */
.-tp-reservation .booking-summary-sticky .desktop-summary {
    display: block;
}

.-tp-reservation .booking-summary-sticky .mobile-summary-bar {
    display: none;
}

.-tp-reservation .booking-summary-sticky {
    position:sticky; top:20px; background:#fff; border-radius:1rem; padding:1.5rem;
    box-shadow:0 4px 20px rgba(0,0,0,.1); max-height:calc(100vh - 40px); overflow-y:auto;
}

.-tp-reservation .summary-header {
    display:flex; justify-content:space-between; align-items:center;
    border-bottom:1px solid #e9ecef; padding-bottom:1rem; margin-bottom:1rem;
}

.-tp-reservation .summary-section { border-top:1px solid #f8f9fa; padding-top:1rem; margin-top:1rem; }
.-tp-reservation .summary-section-title { font-size:.875rem; font-weight:600; color:#495057; margin-bottom:.5rem; }

.-tp-reservation .summary-item {
    display:flex; justify-content:space-between; align-items:start; padding:.5rem 0; font-size:.875rem; gap:1rem;
}
.-tp-reservation .summary-item .text-truncate {
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap; min-width:0;
}
.-tp-reservation .summary-item .text-end { text-align:right; white-space:nowrap; }

.-tp-reservation .d-flex { display:flex; }
.-tp-reservation .flex-column { flex-direction:column; }
.-tp-reservation .mb-1 { margin-bottom:.25rem; }

.-tp-reservation .summary-label { color:#6c757d; }
.-tp-reservation .summary-value { font-weight:600; color:#212529; text-align:right; }

.-tp-reservation .price-breakdown { border-top:2px solid #e9ecef; margin-top:1rem; padding-top:1rem; }
.-tp-reservation .price-total { font-size:1.5rem; font-weight:700; color:#440099; }

.-tp-reservation .btn-continue {
    background:#440099; color:#fff; border:none; padding:1rem 2rem; border-radius:2rem; font-weight:600;
    width:100%; margin-top:1.5rem; transition:all .3s; cursor:pointer; font-size:1rem;
}
.-tp-reservation .btn-continue:hover:not(:disabled) {
    background:#5a1db8; transform:translateY(-2px); box-shadow:0 6px 20px rgba(68,0,152,.3);
}
.-tp-reservation .btn-continue:disabled { opacity:.6; cursor:not-allowed; }

.-tp-reservation .trust-badges {
    display:flex; flex-direction:column; gap:.75rem; margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid #e9ecef;
}
.-tp-reservation .trust-badge { display:flex; align-items:center; gap:.5rem; font-size:.75rem; color:#6c757d; }
.-tp-reservation .trust-badge i { color:#28a745; flex-shrink:0; font-size:1rem; }

.-tp-reservation .calendar-container {
    background:#fff; border-radius:1rem; padding:1.5rem; box-shadow:0 1px 3px rgba(0,0,0,.1);
}
.-tp-reservation .date-shortcuts { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1rem; }
.-tp-reservation .shortcut-btn {
    background:#f8f9fa; border:1px solid #dee2e6; border-radius:2rem; padding:.5rem 1rem; font-size:.875rem;
    cursor:pointer; transition:all .3s; display:flex; align-items:center; gap:.5rem; color:#495057;
}
.-tp-reservation .shortcut-btn:hover { border-color:#440099; background:rgba(68,0,152,.1); color:#440099; }
.-tp-reservation .shortcut-btn.active { background:#440099; color:#fff; border-color:#440099; }

.-tp-reservation .calendar-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:.25rem; }
.-tp-reservation .calendar-date {
    aspect-ratio:1; display:flex; flex-direction:column; align-items:center; justify-content:center; border-radius:.5rem;
    cursor:pointer; transition:all .3s; padding:.25rem; position:relative; min-height:60px; font-size:.875rem;
    background:#f8f9fa; border:1px solid #e9ecef; color:#495057;
}
.-tp-reservation .calendar-date:hover:not(.disabled){
    background:rgba(68,0,152,.1); border-color:#440099; transform:scale(1.05); color:#440099;
}
.-tp-reservation .calendar-date.selected{
    background:#440099; color:#fff; border-color:#440099; box-shadow:0 2px 8px rgba(68,0,152,.3);
}
.-tp-reservation .calendar-date.disabled{ opacity:.4; cursor:not-allowed; background:#f1f3f4; color:#6c757d; }
.-tp-reservation .calendar-date.best-price{ position:relative; }
.-tp-reservation .calendar-date.best-price::after{
    content:'💰'; position:absolute; top:2px; right:2px; font-size:.75rem;
}

.-tp-reservation .date-price { font-size:.625rem; font-weight:600; color:#28a745; margin-top:2px; }
.-tp-reservation .calendar-date.selected .date-price { color:rgba(255,255,255,.9); }
.-tp-reservation .calendar-date:hover:not(.disabled):not(.selected) .date-price { color:#1e7e34; }
.-tp-reservation .date-price.sold-out { color:#dc3545; }

.-tp-reservation .availability-indicator { font-size:.5rem; margin-top:1px; }
.-tp-reservation .availability-text {
    padding:1px 3px; border-radius:2px; background:rgba(40,167,69,.1); color:#28a745; font-weight:500;
}
.-tp-reservation .calendar-date.selected .availability-text { background:rgba(255,255,255,.2); color:#fff; }
.-tp-reservation .calendar-date:hover:not(.disabled):not(.selected) .availability-text {
    background:rgba(30,126,52,.15); color:#1e7e34;
}
.-tp-reservation .availability-high .availability-text { background:rgba(40,167,69,.1); color:#28a745; }
.-tp-reservation .availability-medium .availability-text { background:rgba(255,193,7,.1); color:#b8860b; }
.-tp-reservation .availability-low .availability-text { background:rgba(220,53,69,.1); color:#dc3545; }

.-tp-reservation .price-note { padding:.75rem; background:#f8f9fa; border-radius:.5rem; border-left:3px solid #440099; }

.-tp-reservation .event-header {
    position:relative; height:400px; overflow:hidden; margin-bottom:2rem; margin-top:-2rem;
}
.-tp-reservation .event-header-bg { position:absolute; top:0; left:0; right:0; bottom:0; }
.-tp-reservation .header-bg-image,
.-tp-reservation .header-bg-image img { width:100%; height:100%; object-fit:cover; }
.-tp-reservation .header-overlay {
    position:absolute; top:0; left:0; right:0; bottom:0;
    background:linear-gradient(135deg, rgba(68,0,152,.8), rgba(235,54,22,.6));
}
.-tp-reservation .event-header-content {
    position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:center; color:#fff; padding-top:4rem;
}
.-tp-reservation .reservation-badge {
    background:rgba(255,255,255,.2); color:#fff; padding:.5rem 1rem; border-radius:2rem; font-size:.875rem; font-weight:600;
    display:inline-flex; align-items:center; gap:.5rem; width:fit-content; margin-bottom:1rem;
}
.-tp-reservation .event-title { font-size:2.5rem; font-weight:700; margin-bottom:1rem; line-height:1.2; color:#fff; }
.-tp-reservation .event-meta { display:flex; flex-wrap:wrap; gap:2rem; margin-bottom:.5rem; font-size:1rem; color:#fff; }
.-tp-reservation .event-meta span { display:flex; align-items:center; gap:.5rem; color:#fff; }
.-tp-reservation .event-rating { display:flex; align-items:center; gap:1rem; }
.-tp-reservation .rating-stars {
    background:#4ade80; color:#fff; padding:.25rem .75rem; border-radius:1rem; font-weight:600; font-size:.875rem;
}
.-tp-reservation .rating-count { font-size:.875rem; opacity:.9; color:#fff; }

.-tp-reservation .experience-selector { background:#f8f9fa; border-radius:1rem; padding:1.5rem; }
.-tp-reservation .attribute-group { margin-bottom:2rem; }
.-tp-reservation .attribute-group-title {
    font-size:.875rem; font-weight:600; color:#6c757d; text-transform:uppercase; letter-spacing:.5px; margin-bottom:1rem;
}

.-tp-reservation .attribute-values-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1rem;
}

.-tp-reservation .attribute-card {
    background:#fff; border:2px solid #e9ecef; border-radius:.75rem; padding:1rem; cursor:pointer; transition:all .2s ease;
    position:relative; display:flex; flex-direction:column;
}
.-tp-reservation .attribute-card:hover {
    border-color:#440099; transform:translateY(-2px); box-shadow:0 4px 12px rgba(68,0,152,.1);
}
.-tp-reservation .attribute-card.selected {
    border-color:#440099; background:linear-gradient(135deg, rgba(68,0,152,.05) 0%, rgba(68,0,152,.02) 100%);
    box-shadow:0 4px 12px rgba(68,0,152,.15);
}
.-tp-reservation .selection-indicator { position:absolute; top:.75rem; right:.75rem; color:#440099; font-size:1.25rem; z-index:1; }

.-tp-reservation .attribute-content { display:flex; flex-direction:column; gap:.75rem; }
.-tp-reservation .attribute-image { width:100%; height:120px; object-fit:cover; border-radius:.5rem; }
.-tp-reservation .color-square { width:100%; height:60px; border-radius:.5rem; border:1px solid #dee2e6; }

.-tp-reservation .attribute-info { display:flex; flex-direction:column; gap:.5rem; }
.-tp-reservation .attribute-name { font-size:1rem; font-weight:700; color:#212529; margin:0 0 .5rem 0; line-height:1.3; }
.-tp-reservation .attribute-description { font-size:.875rem; color:#6c757d; margin:0 0 .75rem 0; line-height:1.5; }

.-tp-reservation .price-info {
    display:flex; flex-direction:column; gap:.25rem; padding:.75rem;
    background:linear-gradient(135deg, rgba(68,0,152,.08) 0%, rgba(68,0,152,.02) 100%);
    border-radius:.5rem; margin-bottom:.5rem;
}
.-tp-reservation .price-amount { font-size:1.25rem; font-weight:700; color:#440099; line-height:1; }
.-tp-reservation .price-label { font-size:.75rem; color:#6c757d; text-transform:uppercase; letter-spacing:.5px; }

.-tp-reservation .cost-info {
    display:flex; justify-content:space-between; align-items:center; padding:.5rem .75rem; background:#f8f9fa; border-radius:.375rem; margin-bottom:.5rem;
}
.-tp-reservation .cost-label { font-size:.75rem; color:#6c757d; font-weight:600; }
.-tp-reservation .cost-amount { font-size:.875rem; font-weight:600; color:#212529; }

.-tp-reservation .stock-warning {
    display:flex; align-items:center; gap:.25rem; font-size:.75rem; color:#dc3545; padding:.25rem .5rem; background:#fff5f5; border-radius:.25rem; margin-bottom:.25rem;
}
.-tp-reservation .custom-qty-badge {
    display:flex; align-items:center; gap:.25rem; font-size:.75rem; color:#0d6efd; padding:.25rem .5rem; background:#e7f1ff; border-radius:.25rem;
}

.-tp-reservation .guest-counter-card {
    background:#fff; border-radius:1rem; padding:1.5rem; box-shadow:0 1px 3px rgba(0,0,0,.1); margin-bottom:1.5rem;
}
.-tp-reservation .guest-row { display:flex; justify-content:space-between; align-items:center; padding:1rem 0; }
.-tp-reservation .counter-controls { display:flex; align-items:center; gap:1rem; }

.-tp-reservation .counter-btn {
    width:36px; height:36px; border-radius:50%; border:2px solid #e9ecef; background:#fff; display:flex; align-items:center;
    justify-content:center; cursor:pointer; transition:all .3s; font-size:1.25rem;
}
.-tp-reservation .counter-btn:hover:not(:disabled){ border-color:#440099; color:#440099; background:#f8f4f3; }
.-tp-reservation .counter-btn:disabled{ opacity:.5; cursor:not-allowed; }

.-tp-reservation .progress-indicator { padding:1rem 0; }
.-tp-reservation .progress-steps {
    display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:1rem;
}
.-tp-reservation .progress-step {
    display:flex; flex-direction:column; align-items:center; cursor:pointer; transition:all .3s; padding:.5rem; border-radius:.5rem;
}
.-tp-reservation .progress-step:hover { background:rgba(68,0,152,.05); }

.-tp-reservation .step-circle {
    width:40px; height:40px; border-radius:50%; background:#e9ecef; color:#6c757d; display:flex; align-items:center;
    justify-content:center; font-weight:600; font-size:.875rem; transition:all .3s; margin-bottom:.5rem;
}
.-tp-reservation .progress-step.active .step-circle { background:#440099; color:#fff; }
.-tp-reservation .progress-step.completed .step-circle { background:#28a745; color:#fff; }

.-tp-reservation .step-label { font-size:.75rem; font-weight:600; color:#6c757d; text-align:center; }
.-tp-reservation .progress-step.active .step-label { color:#440099; }
.-tp-reservation .progress-step.completed .step-label { color:#28a745; }

.-tp-reservation .progress-line { width:40px; height:2px; background:#e9ecef; transition:all .3s; }
.-tp-reservation .progress-line.completed { background:#28a745; }

.-tp-reservation .trust-indicators { background:#f8f9fa; padding:3rem 0; margin-top:3rem; }
.-tp-reservation .trust-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.-tp-reservation .trust-item { display:flex; align-items:flex-start; gap:1rem; text-align:left; }
.-tp-reservation .trust-icon {
    width:48px; height:48px; background:#440099; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.25rem; flex-shrink:0;
}
.-tp-reservation .trust-title { font-weight:600; margin-bottom:.5rem; color:#212529; }
.-tp-reservation .trust-description { color:#6c757d; font-size:.875rem; margin:0; line-height:1.4; }

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {
    /* Update booking summary sticky for mobile FIRST */
    .-tp-reservation .booking-summary-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: #fff;
        border-top: 1px solid #e9ecef;
        border-radius: 0;
        padding: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1030;
        max-height: none;
        overflow: visible;
    }

    /* Hide desktop summary on mobile */
    .-tp-reservation .booking-summary-sticky .desktop-summary {
        display: none !important;
    }

    /* Show and style mobile summary bar */
    .-tp-reservation .booking-summary-sticky .mobile-summary-bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

    /* Mobile price display */
    .-tp-reservation .mobile-price {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .-tp-reservation .mobile-price-label {
        font-size: 0.75rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    .-tp-reservation .mobile-price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #440099;
        line-height: 1;
    }

    /* Mobile button adjustments */
    .-tp-reservation .mobile-summary-bar .btn-continue {
        margin: 0;
        width: auto;
        flex: 1;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        max-width: 200px;
    }

    /* Other mobile adjustments */
    .-tp-reservation .calendar-date { min-height: 50px; font-size: .75rem; }
    .-tp-reservation .date-price { font-size: .5rem; }
    .-tp-reservation .availability-text { font-size: .45rem; }
    .-tp-reservation .event-header { height: 350px; }
    .-tp-reservation .event-title { font-size: 2rem; }
    .-tp-reservation .event-meta { flex-direction: column; gap: .5rem; }
    .-tp-reservation .attribute-values-grid { grid-template-columns: 1fr; }
    .-tp-reservation .progress-steps { gap: .5rem; }
    .-tp-reservation .progress-line { width: 20px; }
    .-tp-reservation .step-label { font-size: .625rem; }
}

/* Extra small screens */
@media (max-width: 576px) {
    .-tp-reservation .mobile-price-amount {
        font-size: 1.25rem;
    }

    .-tp-reservation .mobile-summary-bar .btn-continue {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Navbar - highest z-index */
.navbar.fixed-top {
    z-index: 1050;
}

/* Navbar collapse - needs proper positioning on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .navbar-collapse .navbar-nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Mobile Cart Icon */
.mobile-cart-icon {
    margin-left: auto;
    margin-right: 0.75rem;
    z-index: 1051; /* Above navbar collapse */
}

.mobile-cart-icon .d-flex {
    flex-direction: row !important;
    gap: 0.5rem;
}

.mobile-cart-icon .btn {
    margin: 0 !important;
}

/* Fix badge positioning on mobile */
.mobile-cart-icon .nav-item {
    position: relative;
}

.mobile-cart-icon .btn-user {
    position: relative;
    padding: 0.5rem;
}

.mobile-cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25em 0.4em;
}

/* Ensure icons are visible */
.mobile-cart-icon i {
    font-size: 1.1rem;
}

/* Journey Progress Bar - below navbar and menu */
.journey-progress {
    position: sticky;
    top: 90px;
    z-index: 1020; /* Below navbar and menu */
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .journey-progress {
        padding: 0.75rem 0;
        top: 100px;
    }

    .journey-progress .progress-steps {
        gap: 0.5rem;
        justify-content: space-between;
    }

    .journey-progress .progress-step {
        flex: 1;
        min-width: 0;
    }

    .journey-progress .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .journey-progress .progress-step span {
        font-size: 0.7rem;
        line-height: 1.2;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .journey-progress {
        top: 100px;
    }

    .journey-progress .step-circle {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .journey-progress .progress-step span {
        font-size: 0.65rem;
    }
}

/* Floating Ticket Bar - Base Styles */
.floating-ticket-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.15s ease;
    z-index: 1040;
    will-change: transform;
}

.floating-ticket-bar.show {
    transform: translateY(0);
}

/* Action Button Group - Desktop (Vertical Stack) */
.action-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.action-btn-group .btn {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4rem !important;
}

/* Floating Ticket Bar Mobile Improvements */
@media (max-width: 768px) {
    .floating-ticket-bar .row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .floating-ticket-bar .col-md-6,
    .floating-ticket-bar .col-md-3 {
        width: 100%;
        max-width: 100%;
        text-align: left !important;
    }

    /* Mobile: Horizontal layout */
    .floating-ticket-bar .action-btn-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .floating-ticket-bar .action-btn-group .btn {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .floating-ticket-bar .btn {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

    .floating-ticket-bar h6 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .floating-ticket-bar small {
        font-size: 0.75rem;
        display: block;
    }

    .floating-ticket-bar {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .floating-ticket-bar .btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
        gap: 0.3rem !important;
    }

    .floating-ticket-bar .btn i {
        font-size: 0.85rem;
    }

    .floating-ticket-bar .action-btn-group {
        gap: 0.4rem;
    }
}

/* Product Item Mobile Improvements */
@media (max-width: 768px) {
    /* Hide product image */
    .ticket-card .product-thumb {
        display: none;
    }

    /* Reduce padding and spacing */
    .ticket-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Make product name smaller */
    .ticket-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    /* Adjust price display */
    .ticket-card .fs-18 {
        font-size: 1rem !important;
    }

    /* Make description text smaller */
    .ticket-card .text-muted.small {
        font-size: 0.8rem;
    }

    /* Hide "Product Description" heading on mobile */
    .ticket-card .row.mb-3 h6:first-of-type {
        display: none;
    }

    /* Make select button full width */
    .ticket-card .d-flex.justify-content-between.align-items-center .btn {
        width: 100%;
    }

    /* Reduce horizontal rule spacing */
    .ticket-card hr {
        margin: 0.75rem 0;
    }

    /* Adjust options section */
    .ticket-card .p-2 {
        padding: 0.5rem !important;
    }

    .ticket-card .form-select {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .ticket-card {
        padding: 0.75rem;
    }

    .ticket-card h5 {
        font-size: 1rem;
    }
}

.get-tickets {
    margin-top: 2rem;
}