/* ZOZO EVENT GLOBAL VARIABLES */
/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {

/* SECONDARY */
--zozo-secondary-color: #0f172a;
--zozo-secondary-hover: #1f2937;

/* TEXT COLORS */
--zozo-text-color: #0b1220;
--zozo-text-light: #64748b;
--zozo-text-white: #ffffff;

/* BACKGROUNDS */
--zozo-bg-color: #ffffff;
--zozo-bg-light: #f6faf8;
--zozo-bg-dark: #07130f;
--zozo-card-bg: rgba(255, 255, 255, 0.78);

/* BORDER */
--zozo-border-color: rgba(15, 23, 42, 0.06);
--zozo-border-hover: rgba(16, 185, 129, 0.28);

/* SHADOWS */
--zozo-shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.06);
--zozo-shadow-md: 0 14px 40px rgba(15, 23, 42, 0.10);
--zozo-shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.14);

/* BUTTONS */
--zozo-btn-bg: var( --zozo-primary);
--zozo-btn-hover: var(--zozo-primary-hover);
--zozo-btn-active: var(--zozo-primary-active);
--zozo-btn-color: #ffffff;

/* TRANSITION */
--zozo-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --zozo-primary:          #10b981;
  --zozo-primary-hover: rgb(1, 78, 78);
  --zozo-primary-active: #0b8a5f;
  --zozo-primary-dark:     #059669;
  --zozo-primary-light:    #d1fae5;
  --zozo-primary-glow:     rgba(16,185,129,.15);
  --zozo-primary-ring:     rgba(16,185,129,.25);

  --zozo-dark:             #0f172a;
  --zozo-dark-2:           #111827;
  --zozo-dark-3:           #1e293b;
  --zozo-dark-muted:       #334155;

  --zozo-white:            #ffffff;
  --zozo-bg:               #f8fafc;
  --zozo-bg-2:             #f1f5f9;

  --zozo-text:             #475569;
  --zozo-text-light:       #94a3b8;

  --zozo-border:           rgba(16,185,129,.10);
  --zozo-border-soft:      #e2e8f0;

  --zozo-radius-sm:        10px;
  --zozo-radius-md:        16px;
  --zozo-radius-lg:        24px;
  --zozo-radius-xl:        32px;
  --zozo-radius-pill:      999px;

  --zozo-shadow-xs:        0 1px 3px rgba(15,23,42,.05), 0 1px 2px rgba(15,23,42,.04);
  --zozo-shadow-sm:        0 4px 16px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --zozo-shadow-md:        0 10px 30px rgba(16,185,129,.06), 0 1px 6px rgba(15,23,42,.04);
  --zozo-shadow-lg:        0 20px 60px rgba(16,185,129,.08), 0 4px 16px rgba(15,23,42,.06);
  --zozo-shadow-glow:      0 0 40px rgba(16,185,129,.18);

  --zozo-font:             'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --zozo-ease:             cubic-bezier(.4,0,.2,1);
  --zozo-duration:         0.24s;
}

#event-builder-full-calendar {
    max-width: 1000px;
    margin: 20px 48px 0px 200px ;
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.zozo-calendar-wrapper{
    max-width: 1600px;
}
.fc-scroller .fc-col-header {
    margin-bottom: 0px;
}
/* Event list items */
.fc-event {
    background-color: #0073aa;
    border: 1px solid #005177;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    padding: 3px 6px;
    cursor: pointer;
}

/* Header toolbar buttons */
.fc-toolbar button {
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin: 0 2px;
    cursor: pointer;
}

.fc-toolbar button:hover {
    background: #005177;
}

@media(max-width:768px) {
    #event-builder-full-calendar {
        padding: 5px ;
        width: 100%;
        margin: 0px;
    }

    .fc-button {
        padding: 4px 8px;
        font-size: 12px;
    }

    .fc-daygrid-event,
    .fc-timegrid-event,
    .fc-list-event {
        font-size: 12px;
    }
    .fc .fc-toolbar{
        display: block;
    }
}

.zozo-register-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px 30px;
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: inherit;
    transition: var(--zozo-transition);
}
.zozo-register-form p {
    margin-bottom: 18px;
}

.zozo-register-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zozo-text-color);
    letter-spacing: 0.2px;
}

.zozo-register-form input[type="text"],
.zozo-register-form input[type="email"],
.zozo-register-form input[type="password"],
.zozo-register-form select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: var(--zozo-bg-color);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-sm);
    color: var(--zozo-text-color);
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}
.zozo-register-form input::placeholder {
    color: var(--zozo-text-light);
}
.zozo-register-form input[type="text"]:focus,
.zozo-register-form input[type="email"]:focus,
.zozo-register-form input[type="password"]:focus,
.zozo-register-form select:focus {
    border-color: var( --zozo-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    outline: none;
    transform: translateY(-1px);
}
.zozo-register-form select {
    cursor: pointer;
}
.zozo-register-form input[type="submit"] {
    width: 100%;
    height: 54px;
    margin-top: 10px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border: none;
    border-radius: var(--zozo-radius-sm);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: var(--zozo-transition);
}

.zozo-register-form input[type="submit"]:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-3px);
}
.zozo-register-form input[type="submit"]:active {
    transform: scale(0.98);
}
.zozo-register-form:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}
/* Responsive */
@media (max-width: 768px) {
    .zozo-register-form {
        padding: 20px 15px;
    }
}


/* Login Form Container */
.zozo-login-form {
    max-width: 450px;
    margin: 30px auto;
    padding: 25px 30px;
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: inherit;
    transition: var(--zozo-transition);
}

.zozo-login-form p {
    margin-bottom: 18px;
}

.zozo-login-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zozo-text-color);
    letter-spacing: 0.2px;
}

.zozo-login-form input[type="text"],
.zozo-login-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: var(--zozo-bg-color);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-sm);
    color: var(--zozo-text-color);
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}

.zozo-login-form input::placeholder {
    color: var(--zozo-text-light);
}

.zozo-login-form input[type="text"]:focus,
.zozo-login-form input[type="password"]:focus {
    border-color: var( --zozo-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    outline: none;
    transform: translateY(-1px);
}
.zozo-login-form input[type="submit"] {
    height: 52px;
    padding: 0 22px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--zozo-radius-sm);
    cursor: pointer;
    margin-right: 10px;
    transition: var(--zozo-transition);
}

.zozo-login-form input[type="submit"]:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-3px);
}

.zozo-login-form input[type="submit"]:active {
    transform: scale(0.98);
}

.zozo-login-form input[name="zozo_guest_login"] {
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-color),
        var(--zozo-secondary-hover)
    );
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}
.zozo-login-form input[name="zozo_guest_login"]:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-hover),
        var(--zozo-secondary-color)
    );
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.24);
}
.zozo-login-form:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}
/* Responsive */
@media (max-width: 768px) {
    .zozo-login-form {
        padding: 20px 15px;
    }

    .zozo-login-form input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}


.fc-custom-dropdown {
    margin: 0 5px;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    line-height: 0px;
    min-height: 40px;
}

#fc-dropdown-container {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fc-custom-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    min-width: 120px;
}

.fc-custom-dropdown:hover,
.fc-custom-dropdown:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}

.fc-custom-dropdown option {
    color: #000;
    background-color: #fff;
}


.fc-custom-dropdown {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
    padding-right: 30px;
}


.fc .fc-toolbar-title {
    font-size: 1.75em;
    margin: 0;
    text-align: center;
}

/* Load More Button */
.zozo-loadmore-btn {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border: none;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--zozo-transition);
}

.zozo-loadmore-btn:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-3px);
}

.zozo-timetable-container {
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    margin-bottom: 2rem;
    transition: var(--zozo-transition);
}

.zozo-timetable-container:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.timetable-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--zozo-border-color);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    gap: 14px;
    flex-wrap: wrap;
}

.timetable-left,
.timetable-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tt-label {
    margin: 0;
    font-weight: 700;
    color: var(--zozo-text-color);
    font-size: 15px;
    letter-spacing: 0.2px;
}

.tt-nav-btn,
.tt-today-btn {
    height: 42px;
    padding: 0 18px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border: none;
    border-radius: var(--zozo-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zozo-transition);
}

.tt-nav-btn:hover,
.tt-today-btn:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-2px);
}

#add-event-btn {
    height: 45px;
    padding: 0 20px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border: none;
    border-radius: var(--zozo-radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--zozo-transition);
}

#add-event-btn:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-2px);
}

.tt-view-mode {
    height: 42px;
    padding: 0 14px;
    text-align: center;
    text-align-last: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--zozo-bg-color);
    color: var(--zozo-text-color);
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}

.tt-view-mode:hover {
    border-color: var( --zozo-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.tt-view-mode:focus {
    outline: none;
    border-color: var( --zozo-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.marup {
    margin: 17px;
}

/* FullCalendar */
.fc .fc-toolbar-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.fc-timegrid-slot {
    height: 2rem;
}

.fc-event {
    border: none;
    border-radius: var(--zozo-radius-sm);
    padding: 4px 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--zozo-transition);
}

.fc-event:hover {
    transform: translateY(-2px);
}

.fc-day-today {
    background: rgba(124, 58, 237, 0.08) !important;
}

.zozo-cover-split {
    display: flex;
    height: 80vh;
    overflow: hidden;
    border-radius: var(--zozo-radius-lg);
    border: 1px solid var(--zozo-border-color);
    box-shadow: var(--zozo-shadow-lg);
    margin-bottom: 50px;
    background: var(--zozo-bg-color);
    position: relative;
}

.cover-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cover-text {
    flex: 0.8;
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-color) 0%,
        var(--zozo-secondary-hover) 100%
    );
    color: var(--zozo-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cover-text::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -90px;
    width: 220px;
    height: 180%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 72%
    );
    transform: rotate(28deg);
}

.cover-text::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.1),
            transparent 40%
        );
    pointer-events: none;
}

.cover-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 50px;
    animation: fadeIn 1s ease;
}

.cover-date {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var( --zozo-primary);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cover-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--zozo-text-white);
}

.cover-subtitle {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
}

.cover-btn,
.event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: none;
    margin: 0 0 10px 10px;
    transition: var(--zozo-transition);
}

.cover-btn:hover,
.event-btn:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    color: var(--zozo-text-white);
    transform: translateY(-3px);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive*/
@media (max-width: 768px) {
    .zozo-cover-split {
        flex-direction: column;
        height: auto;
        padding: 0 10px 0 10px;
    }

    .cover-image,
    .cover-text {
        flex: unset;
        width: 100%;
        height: 50vh;
    }

    .cover-text {
        padding: 40px 20px;
        text-align: center;
    }

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

/* COUNTDOWN VIEW STYLES */
.zozo-countdown-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.zozo-countdown-modern {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--zozo-radius-lg);
    border: 1px solid var(--zozo-border-color);
    background: var(--zozo-card-bg);
    box-shadow: var(--zozo-shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 60px 258px 0;
    justify-content: center;
    transition: var(--zozo-transition);
}

.zozo-countdown-modern:hover {
    border-color: var(--zozo-border-hover);
    transform: translateY(-3px);
}

.countdown-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    object-fit: cover;
}

.countdown-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.55),
        rgba(15, 23, 42, 0.18)
    );
}

.countdown-content {
    flex: 0.8;
    background: linear-gradient(
        135deg,
        var(--zozo-bg-color) 0%,
        var(--zozo-bg-light) 100%
    );
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}



.countdown-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--zozo-text-color);
    margin-bottom: 12px;
    text-decoration: none;
}

.event-label {
    color: var( --zozo-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.88rem;
    display: inline-block;
    margin-bottom: 10px;
}

.event-date {
    font-size: 1rem;
    color: var(--zozo-text-light);
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 20px;
}

.timer-box {
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-color),
        var(--zozo-secondary-hover)
    );
    border: 1px solid rgba(255,255,255,0.06);
    flex: 1;
    text-align: center;
    border-radius: var(--zozo-radius-md);
    padding: 22px 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
    transition: var(--zozo-transition);
}

.timer-box:hover {
    background: var(--zozo-bg-color);
    border-color: var( --zozo-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.18);
}

.timer-box span {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    color: var(--zozo-text-white);
    transition: var(--zozo-transition);
}

.timer-box small {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.72);
    transition: var(--zozo-transition);
}

.timer-box:hover span,
.timer-box:hover small {
    color: var(--zozo-text-color);
}

.style-circle .timer-box span {
    border: 3px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    width: 82px;
    height: 82px;
    line-height: 76px;
    margin: 0 auto 12px;
    display: inline-block;
    transition: var(--zozo-transition);
}

.style-circle .timer-box:hover span {
    border-color: var( --zozo-primary);
}

.style-line .timer-box span {
    display: block;
    border-bottom: 3px solid rgba(255,255,255,0.18);
    padding-bottom: 10px;
}

.style-line .timer-box:hover span {
    border-color: var( --zozo-primary);
}

.style-plain .timer-box span {
    color: var(--zozo-text-white);
    font-size: 2.3rem;
    font-weight: 900;
}

.cd-ended {
    font-size: 1.2rem;
    color: #ff4d4d;
    font-weight: 700;
    display: block;
    text-align: center;
    padding: 24px;
}
.page-numbers{
    display: flex;
    justify-content: center;
    list-style: none;
}
/* Responsive */
@media (max-width: 768px) {
    .zozo-countdown-modern {
        flex-direction: column;
    }

    .countdown-image {
        min-height: 250px;
    }

    .countdown-content {
        padding: 25px;
        text-align: center;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* yearly-view */
.zozo-yearly-container {
    font-family: "Inter", "Segoe UI", sans-serif;
    margin: 2rem auto;
    max-width: 1400px;
}

.yearly-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.yearly-toolbar h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--zozo-text-color);
    letter-spacing: -0.5px;
}

.yearly-toolbar button {
    height: 46px;
    padding: 0 24px;
    border: none;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border-radius: var(--zozo-radius-sm);
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--zozo-transition);
}

.yearly-toolbar button:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-3px);
}

.zozo-yearly-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.zozo-year-month {
    width: 100%;
    padding: 1.6rem 1.8rem;
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--zozo-transition);
    position: relative;
    overflow: hidden;
}

.zozo-year-month:hover {
    transform: translateY(-6px);
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.zozo-year-month h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
    color: var( --zozo-primary);
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    background: var(--zozo-bg-light);
    padding: 10px;
    border-radius: var(--zozo-radius-sm);
    border: 1px solid var(--zozo-border-color);
    position: relative;
    z-index: 2;
}

.day {
    min-height: 72px;
    border: 1px solid var(--zozo-border-color);
    border-radius: 8px;
    padding: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--zozo-bg-color);
    transition: var(--zozo-transition);
}

.day:hover {
    border-color: var( --zozo-primary);
    transform: translateY(-2px);
    box-shadow: var(--zozo-shadow-sm);
}

.day.empty {
    background: transparent;
    border: none;
    box-shadow: none;
}

.day-num {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--zozo-text-color);
    position: absolute;
    top: 6px;
    right: 8px;
}
/* Event Grid */
.zozo-events-grid-wrap,
.zozo-events-list-wrap,
.zozo-events-countdown-wrap,
.zozo-events-cover-wrap {
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
    background: transparent;
    padding: 20px;
}

.zozo-events-masonry-wrap {
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
    background: linear-gradient(
        180deg,
        var(--zozo-bg-color),
        var(--zozo-bg-light)
    );
    padding: 60px 40px;
    border-top: 1px solid var(--zozo-border-color);
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-events-timeline-wrap {
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
    background: linear-gradient(
        180deg,
        var(--zozo-bg-color),
        var(--zozo-bg-light)
    );
    padding: 60px 40px;
    border-top: 1px solid var(--zozo-border-color);
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-events-yearly-wrap {
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
    background: linear-gradient(
        180deg,
        var(--zozo-bg-color),
        var(--zozo-bg-light)
    );
    padding: 60px 40px;
    border-top: 1px solid var(--zozo-border-color);
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-events-timetable-wrap,
.timetable-toolbar {
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
    background: linear-gradient(
        180deg,
        var(--zozo-bg-color),
        var(--zozo-bg-light)
    );
    padding: 60px 40px;
    border-top: 1px solid var(--zozo-border-color);
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-events-grid.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.zozo-event-gcard {
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    overflow: hidden;
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--zozo-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.zozo-event-gcard::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.04),
            transparent 42%
        );
    pointer-events: none;
    z-index: 1;
}

.zozo-event-gcard:hover {
    transform: translateY(-8px);
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.zozo-event-thumb {
    position: relative;
    overflow: hidden;
}

.zozo-event-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.zozo-event-gcard:hover .zozo-event-thumb img {
    transform: scale(1.08);
}

.zozo-event-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.22),
            transparent 55%
        );
    pointer-events: none;
}
/* Date Badge */
.zozo-event-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 58px;
    padding: 8px 6px;
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-color),
        var(--zozo-secondary-hover)
    );
    color: var(--zozo-text-white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--zozo-radius-sm);
    text-align: center;
    font-weight: 800;
    line-height: 1.15;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    transition: var(--zozo-transition);
}

.zozo-event-gcard:hover .zozo-event-date-badge {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.34);
}

.zozo-event-date-badge .day {
    display: block;
    min-height: 34px;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--zozo-text-color);
}

.zozo-event-date-badge .month {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.zozo-event-date-badge .year {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.75;
    color: rgba(255,255,255,0.72);
}

.grid-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    color: var(--zozo-text-color);
    position: relative;
    z-index: 2;
}

.grid-title {
    margin-bottom: 14px;
    text-align: left;
    line-height: 1.3;
    margin: 0 0 10px 10px;
}

.grid-title a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--zozo-text-color);
    letter-spacing: -0.4px;
    padding: 0;
    transition: var(--zozo-transition);
}

.grid-title a:hover {
    color: var( --zozo-primary);
}

.zozo-event-desc {
    color: var(--zozo-text-light);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 24px;
    padding-left: 0;
    text-align: center;
}
.zozo-event-grid-desc{
    color: var(--zozo-text-light);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 24px;
    padding-left: 0;
    margin: 0 0 10px 10px;
}
.event-btn:hover {
    transform: translateY(-3px);
}
/* Responsive */
@media (max-width: 768px) {
    .zozo-events-grid.modern {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* Wrapper */
.zozo-events-pagination {
    text-align: center;
    margin: 40px 0;
}

.zozo-events-pagination a,
.zozo-events-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    margin: 0 6px;
    padding: 0 16px;
    border-radius: var(--zozo-radius-sm);
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    color: var(--zozo-text-color);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--zozo-shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--zozo-transition);
}

.zozo-events-pagination a:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    border-color: transparent;
    color: var(--zozo-btn-color);
    transform: translateY(-2px);
}

.zozo-events-pagination .current {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    font-weight: 700;
    border-color: transparent;
}

.zozo-pagination {
    text-align: center;
    margin: 40px 0;
    font-family: inherit;
}

.zozo-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.zozo-pagination li {
    display: inline-block;
}

.zozo-pagination a,
.zozo-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--zozo-radius-sm);
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    color: var(--zozo-text-color);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--zozo-shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--zozo-transition);
}

.zozo-pagination a:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    border-color: transparent;
    color: var(--zozo-btn-color);
    transform: translateY(-2px);
}

.zozo-pagination .current {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    font-weight: 700;
    border-color: transparent;
    pointer-events: none;
}

.zozo-pagination .disabled {
    opacity: 0.45;
    pointer-events: none;
}


/*  List View */
.zozo-events-list-modern {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--zozo-radius-md);
}

.zozo-list-item {
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    align-items: stretch;
    gap: 25px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border-radius: var(--zozo-radius-md);
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    color: var(--zozo-text-color);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--zozo-transition);
}

.zozo-list-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.04),
            transparent 45%
        );
    pointer-events: none;
}

.zozo-list-item:hover {
    transform: translateY(-6px);
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.zozo-list-date {
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--zozo-secondary-color),
        var(--zozo-secondary-hover)
    );
    color: var(--zozo-text-white);
    border-radius: var(--zozo-radius-sm);
    padding: 14px 0;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--zozo-transition);
}

.zozo-list-item:hover .zozo-list-date {
    transform: translateY(-2px);
}

.zozo-list-date .month {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zozo-primary-light);
}

.zozo-list-date .list-day {
    font-size: 2.1rem;
    font-weight: 900;
    padding: 16px 6px;
    color: var(--zozo-primary-dark);
    background-color: var(--zozo-bg-light);
}

.zozo-list-date .year {
    font-size: 0.74rem;
    font-weight: 600;
    opacity: 0.72;
    color: var(--zozo-primary-light);
}

.zozo-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.zozo-list-content a{
    align-self: center;
}

.zozo-event-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.zozo-event-title a {
    color: var(--zozo-text-color);
    text-decoration: none;
    transition: var(--zozo-transition);
}

.zozo-event-title a:hover {
    color: var( --zozo-primary);
}

.list-title {
    text-align: left;
}

.zozo-event-listmeta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var( --zozo-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.zozo-event-desc {
    font-size: 0.96rem;
    color: var(--zozo-text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.zozo-list-thumb {
    overflow: hidden;
    border-radius: var(--zozo-radius-sm);
    position: relative;
}

.zozo-list-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.18),
            transparent 55%
        );
    pointer-events: none;
}

.zozo-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--zozo-radius-sm);
    transition: transform 0.45s ease;
}

.zozo-list-item:hover .zozo-list-thumb img {
    transform: scale(1.06);
}

.event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    align-self: flex-start;
    transition: var(--zozo-transition);
}

.event-btn:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    color: var(--zozo-btn-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .zozo-list-item {
        grid-template-columns: 80px 1fr;
    }

    .zozo-list-thumb {
        display: none;
    }
}

@media (max-width: 768px) {
    .zozo-list-item {
        grid-template-columns: 1fr;
    }

    .zozo-list-date {
        align-self: flex-start;
        margin-bottom: 10px;
        width: 70px;
    }
}

/* Event style */
.event {
    margin-top: 16px;
    font-size: 0.75rem;
    line-height: 1.3;
    overflow: hidden;
}

.event a {
    position: relative;
    display: inline-block;
    color: var( --zozo-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--zozo-transition);
}

.event a:hover {
    color: var(--zozo-primary-hover);
    text-decoration: underline;
}

.event .time {
    color: var(--zozo-text-light);
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 3px;
    display: inline-block;
}

.no-events {
    font-size: 0.92rem;
    color: var(--zozo-text-light);
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.yearly-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    width: 1761px;
    margin-left: -150px;
}

.yearly-sidebar {
    flex: 0 0 280px;
    background: var(--zozo-card-bg);
    border-radius: var(--zozo-radius-md);
    padding: 1.2rem;
    border: 1px solid var(--zozo-border-color);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: -20px;
    transition: var(--zozo-transition);
}

.yearly-sidebar:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.zozo-yearly-grid {
    flex: 1;
}

.yearly-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--zozo-text-color);
    margin-bottom: 1.2rem;
    letter-spacing: -0.2px;
}

.sidebar-events {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.sidebar-events .sidebar-event {
    display: block;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var( --zozo-primary);
    text-decoration: none;
    border-radius: var(--zozo-radius-sm);
    background: rgba(124, 58, 237, 0.05);
    transition: var(--zozo-transition);
}

.sidebar-events .sidebar-event:hover {
    color: var(--zozo-text-white);
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    transform: translateX(4px);
}

.event-thumbs {
    display: none;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    padding: 6px;
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-sm);
    box-shadow: var(--zozo-shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    overflow: hidden;
    animation: fadeInTooltip 0.22s ease-out;
}

.event-thumbs::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: var(--zozo-card-bg) transparent transparent transparent;
}

.event a:hover .event-thumbs {
    display: block;
}

.event-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Fade animation */
@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


/* Fade animation */
@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


@media (max-width: 992px) {
    .yearly-layout {
        flex-direction: column;
    }

    .yearly-sidebar {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .zozo-yearly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zozo-yearly-grid {
        grid-template-columns: 1fr;
    }
}

/* timeline-view-css */
.zozo-filter-bar {
    position: sticky;
    top: 0;
    background: var(--zozo-card-bg);
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    display: flex;
    justify-content: flex-end;
    padding: 14px 22px;
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 20;
    transition: var(--zozo-transition);
}

.zozo-filter-bar:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group input {
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-sm);
    background: var(--zozo-bg-color);
    color: var(--zozo-text-color);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}

.filter-group input::placeholder {
    color: var(--zozo-text-light);
}

.filter-group input:focus {
    outline: none;
    border-color: var( --zozo-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.filter-group button {
    height: 44px;
    padding: 0 18px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    border: none;
    border-radius: var(--zozo-radius-sm);
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--zozo-transition);
}

.filter-group button:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-2px);
}

#zozo-timeline {
    height: 600px;
    min-height: 500px;
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-md);
    background: linear-gradient(
        180deg,
        var(--zozo-bg-color),
        var(--zozo-bg-light)
    );
    overflow-x: auto;
    box-shadow: var(--zozo-shadow-md);
    transition: var(--zozo-transition);
}

#zozo-timeline:hover {
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.vis-item {
    min-height: 42px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.25em;
    border: none !important;
    border-radius: var(--zozo-radius-sm);
    transition: var(--zozo-transition);
}

.vis-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.vis-item .timeline-title {
    color: var(--zozo-text-white);
    font-size: 14px;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
}

.vis-timeline .vis-content {
    overflow-y: visible;
}

.vis-time-axis .vis-text {
    color: var(--zozo-text-color);
    font-weight: 600;
    font-size: 13px;
}

.vis-time-axis .vis-grid.vis-minor {
    border-color: rgba(15, 23, 42, 0.06);
}

.vis-time-axis .vis-grid.vis-major {
    border-color: rgba(15, 23, 42, 0.12);
}

.zozo-event-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.zozo-event-card {
    padding: 18px;
    box-sizing: border-box;
    border-radius: var(--zozo-radius-md);
    border: 1px solid var(--zozo-border-color);
    background: var(--zozo-card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: var(--zozo-transition);
}

.zozo-event-card:hover {

    border-color: var(--zozo-border-hover);

}

.zozo-event-thumb img {
    max-width: 100%;
    border-radius: var(--zozo-radius-sm);
    transition: transform 0.45s ease;
}

.zozo-event-card:hover .zozo-event-thumb img {
    transform: scale(1.04);
}

.zozo-shortcode-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.zozo-shortcode-card {
    width: calc(33.33% - 24px);
    box-sizing: border-box;
    padding: 18px;
    border-radius: var(--zozo-radius-md);
    border: 1px solid var(--zozo-border-color);
    background: var(--zozo-card-bg);
    box-shadow: var(--zozo-shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: var(--zozo-transition);
}

.zozo-shortcode-card:hover {
    transform: translateY(-6px);
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-lg);
}

.zozo-thumb img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: var(--zozo-radius-sm);
    transition: transform 0.45s ease;
}

.zozo-shortcode-card:hover .zozo-thumb img {
    transform: scale(1.04);
}

#zozo_login_submit,
#zozo_guest_login,
#zozo_login_guests,
input[name="zozo_guest_logout"],
input[name="zozo_guest_switch_user"] {
    min-height: 52px;
    padding: 0 24px;
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-btn-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--zozo-radius-sm);
    cursor: pointer;
    margin-right: 10px;
    transition: var(--zozo-transition);
}

#zozo_login_submit:hover,
#zozo_guest_login:hover,
#zozo_login_guests:hover,
input[name="zozo_guest_logout"]:hover,
input[name="zozo_guest_switch_user"]:hover {
    background: linear-gradient(
        135deg,
        var(--zozo-btn-hover),
        var(--zozo-btn-active)
    );
    transform: translateY(-3px);
}

.zozo-login-form a,
.zozo-register-form a,
.guest-dashboard a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var( --zozo-primary);
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--zozo-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--zozo-transition);
    margin: 5px 10px 0 0;
    border: none;
}

.zozo-login-form a:hover,
.zozo-register-form a:hover,
.guest-dashboard a:hover {
    color: var(--zozo-primary-hover);
    background: rgba(124, 58, 237, 0.08);
    text-decoration: none;
}

.guest-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zozo-location-thumb {
    position: relative;
    overflow: hidden;
}

.zozo-location-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.zozo-sidebar-location-card:hover .zozo-location-thumb img {
    transform: scale(1.06);
}

.zozo-location-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.24),
            transparent 55%
        );
    pointer-events: none;
}

.meta-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    color: var( --zozo-primary);
    font-size: 16px;
    margin: 4px 0 0 4px;
    transition: var(--zozo-transition);
}
.meta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.meta-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #94a3b8;
}

.meta-value {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--zozo-text-color);
    word-break: break-word;
}

.meta-value a,
.meta-content a {
    color: var( --zozo-primary);
    text-decoration: none;
    transition: var(--zozo-transition);
}

.meta-value a:hover,
.meta-content a:hover {
    color: var(--zozo-primary-hover);
}

.zozo-organizer-role {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: rgba(124, 58, 237, 0.1);
    color: var( --zozo-primary);
}

.zozo-organizer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.zozo-organizer-socials a {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zozo-bg-light);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--zozo-text-color);
    text-decoration: none;
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}

.zozo-organizer-socials a:hover {
    transform: translateY(-4px);
    background: linear-gradient(
        135deg,
        var(--zozo-btn-bg),
        var(--zozo-btn-hover)
    );
    color: var(--zozo-text-white);
}


@media (max-width:767px){

    .zozo-location-content,
    .zozo-sidebar-organizer-card{
        padding:18px;
    }

    .zozo-location-name,
    .zozo-organizer-name{
        font-size:22px;
    }

    .zozo-location-thumb img{
        height:180px;
    }

    .zozo-location-meta li,
    .zozo-organizer-meta li{
        padding:14px;
        border-radius:16px;
    }

    .meta-icon{
        width:42px;
        height:42px;
        min-width:42px;
        border-radius:12px;
        font-size:14px;
    }

    .meta-value{
        font-size:14px;
    }

}

/* event-details-widget */
.zozo-sidebar-event-details{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.zozo-sidebar-event-details-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.zozo-sidebar-event-details-icon{
    width:38px;
    height:38px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--zozo-primary-light);
    color:var(--zozo-primary);
    font-size:15px;
}

.zozo-sidebar-event-details-content{
    flex:1;
    min-width:0;
}

.zozo-sidebar-event-details-label{
    display:block;
    margin-bottom:2px;
    color:var(--zozo-text-light);
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.05em;
    line-height:1.3;
}

.zozo-sidebar-event-details-value{
    display:block;
    color:var(--zozo-dark);
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    word-break:break-word;
}

.zozo-sidebar-event-details-item:not(:last-child){
    padding-bottom:14px;
    border-bottom:1px solid var(--zozo-border-soft);
}
/* speaker-wp-widget-styles */
.zozo-sidebar-speakers{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.zozo-sidebar-speaker-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.zozo-sidebar-speaker-card:not(:last-child){
    padding-bottom:18px;
    border-bottom:1px solid var(--zozo-border-soft);
}

.zozo-sidebar-speaker-thumb{
    flex-shrink:0;
}

.zozo-sidebar-speaker-thumb img,
.zozo-speaker-no-image{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    background:var(--zozo-bg-2);
}

.zozo-sidebar-speaker-content{
    flex:1;
    min-width:0;
}

.zozo-sidebar-speaker-name{
    margin:0 0 8px;
    font-size:20px;
    line-height:1.2;
    font-weight:700;
    color:var(--zozo-dark);
}

.zozo-sidebar-speaker-designation{
    display:inline-block;
    padding:8px 16px;
    border-radius:var(--zozo-radius-pill);
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
}
/* event-countdown-wp-widget */
.zozo-event-countdown{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.count-box{
    background:var(--zozo-primary-light);
    border-radius:10px;
    text-align:center;
    padding:14px 8px;
}

.count-num{
    display:block;
    color:var(--zozo-primary-dark);
    font-size:32px;
    font-weight:700;
    line-height:1;
}

.count-label{
    display:block;
    margin-top:6px;
    color:var(--zozo-primary-dark);
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.flip{
    animation:zozoFlip .4s ease;
}

@keyframes zozoFlip{

    0%{
        transform:rotateX(90deg);
        opacity:.5;
    }

    100%{
        transform:rotateX(0);
        opacity:1;
    }
}

.event-live{
    width:100%;
    text-align:center;
    padding:14px;
    border-radius:10px;
    background:#10b981;
    color:#fff;
    font-weight:600;
}


.zozo-container-wrap.container {
    max-width: 1400px;
    margin: 0 auto;
}

.zozo-event-single-wrapper {
    gap: 40px;
}

.zozo-latest-events li,
.zozo-past-events li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
    padding: 10px;
    border-radius: var(--zozo-radius-sm);
    transition: var(--zozo-transition);
}

.zozo-latest-events li:hover,
.zozo-past-events li:hover {
    background: rgba(124, 58, 237, 0.05);
}

.zozo-latest-events img,
.zozo-past-events img{
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--zozo-radius-sm);
    box-shadow: var(--zozo-shadow-sm);
    transition: transform 0.4s ease;
}

.zozo-latest-events li:hover img,
.zozo-past-events li:hover img  {
    transform: scale(1.05);
}
.event-info{
    max-width: 180px;
}
.zozo-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 24px;
    justify-content: center;
}

.zozo-event {
    margin-bottom: 25px;
    background: var(--zozo-bg-light);
    padding: 24px;
    border-radius: var(--zozo-radius-md);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--zozo-transition);
}

.zozo-event:hover {
    transform: translateY(-4px);
    background: var(--zozo-bg-color);
    border-color: var(--zozo-border-hover);
    box-shadow: var(--zozo-shadow-md);
}

.zozo-socials a {
    text-decoration: none;
    color: var( --zozo-primary);
    transition: var(--zozo-transition);
}

.zozo-socials a:hover {
    color: var(--zozo-primary-hover);
}

.zozo-event-title {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--zozo-text-white);
    text-align: center;
    overflow: hidden;
}

.zozo-event-title::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.zozo-event-title-overlay {
    background:
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, 0.22),
            transparent 40%
        );
    position: absolute;
    inset: 0;
    z-index: 1;
}

.zozo-event-title .container {
    position: relative;
    z-index: 2;
}

.zozo-event-main-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.6px;
    color: var(--zozo-text-white);
}

.zozo-event-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
}

.zozo-event-breadcrumb {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
}

.zozo-event-breadcrumb a {
    color: var(--zozo-text-white);
    text-decoration: none;
    transition: var(--zozo-transition);
}

.zozo-event-breadcrumb a:hover {
    color: var( --zozo-primary);
}

.zozo-event-breadcrumb .divider {
    margin: 0 8px;
    color: var( --zozo-primary);
}

/* ---------------- */
/* Plugin Title Area — Zozo Event Calendar */
.zozo-page-title {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 200px 0 115px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--zozo-text-white);
    text-align: center;
}

.zozo-page-title .container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.zozo-page-title.align-left .container {
    justify-items: start;
    text-align: left;
}

.zozo-page-title.align-center .container {
    justify-items: center;
    text-align: center;
}

.zozo-page-title.align-right .container {
    justify-items: end;
    text-align: right;
}

.zozo-page-title.align-left .zozo-event-breadcrumb {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
}

.zozo-page-title.align-center .zozo-event-breadcrumb {
    justify-content: center;
    text-align: center;
    margin-left: 0;
}

.zozo-page-title.align-right .zozo-event-breadcrumb {
    justify-content: flex-end;
    text-align: right;
    margin-left: 0;
}

.zozo-page-title .title-heading {
    margin: 0;
    font-size: 3.4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--zozo-text-white);
    text-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.zozo-page-title .zozo-event-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1.5em;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    margin-left: 0;
}

.zozo-page-title .zozo-event-breadcrumb * {
    vertical-align: middle;
    line-height: 1.5em;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.zozo-page-title .zozo-event-breadcrumb a {
    color: var(--zozo-text-white);
    text-decoration: none;
    transition: var(--zozo-transition);
}

.zozo-page-title .zozo-event-breadcrumb a:hover {
    color: var( --zozo-primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .zozo-page-title {
        padding: 70px 15px;
    }

    .zozo-page-title .title-heading {
        font-size: 2rem;
    }

    .zozo-page-title .zozo-event-breadcrumb {
        font-size: 14px;
    }
}


.zozo-taxonomy-profile h1 {
    margin-bottom: 20px;
}

.zozo-taxonomy-events h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--zozo-dark);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.zozo-taxonomy-events h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: var(--zozo-primary);
    margin-top: 12px;
    border-radius: var(--zozo-radius-pill);
}
.zozo-taxonomy-events{
    width: 100%;
    padding: 0 20px 0 20px;
}
.zozo-taxonomy-events.grid {
    width: 100%;
    max-width: 100%;
}

.label {
    margin-right: 8px;
}

.taxnomy-container{
    gap: 30px;
    padding: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}
.taxonomy-navigation{
    display: flex;
    gap: 16px;
}
.zozo-taxnomy-main{
    flex: 2;
}
/* Media Queries */
@media (max-width: 768px) {
    .taxonomy-navigation {
        flex-direction: column;
        padding: 10px;
        width: 100%;
        margin-left: 0px;
        gap: 10px;
    }

    .tax-nav-previous,
    .tax-nav-next {
        padding: 10px 20px;
        width: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .taxonomy-navigation {
        font-size: 14px;
        padding-top: 15px;
        margin-left: 17px;
        border: none;
        width: 265px;
        gap: 10px;
    }

    .zozo-event-search input[type="search"]{
        width: 120px;
    }
    .tax-nav-previous,
    .tax-nav-next {
        padding: 10px 15px;
        width: 265px;
    }

    .taxonomy-navigation a.prev-post,
    .taxonomy-navigation a.next-post {
        font-size: 14px; 
    }
}
/* Responsive */
@media (max-width: 768px) {
    .taxnomy-container {
        flex-direction: column;
    }
    /* .zozo-taxonomy-events{
        width: ;
    } */

}

/* Organizer Single Page */

/* location-single-page */
.zozo-container {
    gap: 40px;
    max-width: 1950px;
    justify-content: center;
}

.zozo-organizer-events {
    padding: 24px;
    border-radius: var(--zozo-radius-md);
    background: var(--zozo-card-bg);
    backdrop-filter: blur(14px);
}

.zozo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(10px);
}

.zozo-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.2rem;
    border-radius: var(--zozo-radius-lg);
    background: var(--zozo-bg-color);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalIn 0.35s ease;
}

.zozo-modal-content::-webkit-scrollbar {
    width: 8px;
}

.zozo-modal-content::-webkit-scrollbar-thumb {
    background: rgba(15,23,42,0.2);
    border-radius: 999px;
}

.zozo-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(15,23,42,0.35);
}
/* Close */
.zozo-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zozo-text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--zozo-transition);
}

.modal-title {
    margin-bottom: 0.25rem;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--zozo-text-color);
}

.modal-subtitle {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--zozo-text-light);
}

.section-title {
    margin: 2rem 0 0.75rem;
    padding-left: 0.75rem;
    border-left: 4px solid var( --zozo-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--zozo-text-color);
}

.zozo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.zozo-field.full-width {
    grid-column: 1 / -1;
}

.zozo-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--zozo-text-color);
    font-weight: 600;
}

.zozo-field input,
.zozo-field select,
.zozo-field textarea {
    width: 100%;
    border: 1px solid var(--zozo-border-color);
    border-radius: 14px;
    background: var(--zozo-bg-light);
    color: var(--zozo-text-color);
    font-size: 0.95rem;
    transition: var(--zozo-transition);
}

.zozo-field input:focus,
.zozo-field select:focus,
.zozo-field textarea:focus {
    outline: none;
    border-color: var(--zozo-border-hover);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}

.input-with-prefix{
    display:flex;
    align-items:center;
    border:1px solid var(--zozo-border-color,#ddd);
    border-radius:var(--zozo-radius-sm,6px);
    background:var(--zozo-input-bg,#fff);
    overflow:hidden;
}

.input-with-prefix span{
    padding:0 .6rem;
    color:var(--zozo-muted-color,#777);
    border-right:1px solid var(--zozo-border-color,#ddd);
    background:var(--zozo-bg-light,#f9f9f9);
    min-height:100%;
    display:flex;
    align-items:center;
}

.input-with-prefix input{
    border:none;
    padding-left:.6rem;
    flex:1;
    outline:none;
    background:transparent;
    color:var(--zozo-text-color,#111827);
}

.modal-actions{
    margin-top:2rem;
    display:flex;
    justify-content:flex-end;
    gap:1rem;
    flex-wrap:wrap;
}

.btn-primary,
.zozo-modal-close{
    padding:.7rem 1.4rem;
    border:none;
    cursor:pointer;
    font-weight:600;
    font-size:.95rem;
    transition:all .2s ease;
}

.btn-primary{
    background:var( --zozo-primary,#2196f3);
    color:var(--zozo-white-color,#fff);
}

.btn-primary:hover{
    background:var(--zozo-primary-hover);
}

/* Animation */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .zozo-grid {
        grid-template-columns: 1fr;
    }

    .zozo-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
    }

    .modal-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
}


.pad input {
    padding: 3px 10px 3px 10px;
    width: 315px;
    height: 37px;
}

/* calendar-sidebar */

.zozo-calendar-wrapper{
    display:flex;
    align-items:flex-start;
    gap:var(--zozo-gap-lg,30px);
}

#event-builder-full-calendar{
    flex:4;
    min-width:0;
}

.zozo-past-events li{
    display:flex;
    gap:10px;
    margin-bottom:15px;
    align-items:center;
    list-style:none;
}

.align-left{
    text-align:left !important;
}

.align-center{
    text-align:center !important;
}

.align-right{
    text-align:right !important;
}

.post-meta .published-date{
    text-align:left;
}

.post-meta .author-name{
    text-align:right;
}

#zozo-tab-menu{
    list-style:none;
    margin:0;
    padding:0;
}

#zozo-tab-menu li{
    padding:8px 12px;
    background:var(--zozo-bg-light,#f1f1f1);
    border:1px solid var(--zozo-border-color,#ccc);
    margin-bottom:5px;
    cursor:move;
    border-radius:var(--zozo-radius-sm,6px);
    transition:all .2s ease;
}

#zozo-tab-menu li.ui-state-highlight{
    background:var(--zozo-highlight-bg,#d1ecf1);
    border:2px dashed var( --zozo-primary,#2196f3);
}

#zozo-tab-contents .tab-content{
    border:1px solid var(--zozo-border-color,#ddd);
    margin-bottom:10px;
    padding:10px;
    background:var(--zozo-white-color,#fff);
    border-radius:var(--zozo-radius-sm,6px);
}

#zozo-tab-contents .ui-state-highlight{
    background:var(--zozo-bg-light,#f9f9f9);
    border:2px dashed var( --zozo-primary,#2196f3);
    height:2em;
}

.zozo-field label i{
    color:var( --zozo-primary,#2196f3);
    margin-right:6px;
}

.section-title i{
    color:var(--zozo-primary-alt,#007bff);
    margin-right:8px;
}

.btn-primary i,
.btn-secondary i {
    margin-right: 5px;
}
.zozo-organizer-profile.organizer-align-left{
    text-align:left;
    justify-content:flex-start;
}

.zozo-organizer-profile.organizer-align-center{
    text-align:center;
    justify-content:center;
}

.zozo-organizer-profile.organizer-align-right{
    text-align:right;
    justify-content:flex-end;
}

.zozo-organizer-profile .organizer-meta{
    list-style:none;
    padding:0;
}

.zozo-organizer-profile.organizer-align-left .organizer-meta{
    text-align:left;
}

.zozo-organizer-profile.organizer-align-center .organizer-meta{
    text-align:center;
}

.zozo-organizer-profile.organizer-align-right .organizer-meta{
    text-align:right;
}

.zozo-organizer-profile.organizer-align-right .organizer-meta li{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:5px;
}

.zozo-organizer-profile.organizer-align-left .organizer-meta li{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:10px;
}

.zozo-organizer-profile.organizer-align-center .organizer-meta li{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.zozo-organizer-profile.organizer-align-right .organizer-meta li i{
    order:2;
    margin-left:0;
    margin-right:5px;
}

.zozo-organizers-swiper{
    overflow:hidden;
    padding: 20px 0 20px 0;
}

.zozo-archive-swiper{
    width:100%;
    overflow:hidden;
}

.zozo-archive-swiper .swiper-slide{
    flex-shrink:0;
    height:360px;
}

.zozo-location-swiper{
    overflow:hidden;
    padding: 20px 0 20px 0;
}

.zozo-location-events{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.zozo-location-swiper .swiper-slide{
    flex-shrink:0;
    height:360px;
}

.zozo-organizers-swiper .swiper-slide,
.zozo-location-swiper .swiper-slide{
    flex-shrink:0;
    height:360px;
    max-width:100%;
}

.zozo-location-profile.location-align-left{
    text-align:left;
    justify-content:flex-start;
}

.zozo-location-profile.location-align-center{
    text-align:center;
    justify-content:center;
}

.zozo-location-profile.location-align-right{
    text-align:right;
    justify-content:flex-end;
}


@media (max-width:768px){

    .location-container{
        flex-direction:column;
    }
}

.zozo-article-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    z-index:1;
}

.zozo-single-layout{
    position:relative;
    z-index:2;
}

.swiper-pagination{
    position:relative;
    top:6px;
}

.view-calendar-btn i{
    font-size:18px;
}

.view-calendar-btn:hover{
    background:var(--zozo-btn-hover,#ffffff);
    color:var(--zozo-black-color,#000000);
    transform:translateY(-2px);
    box-shadow:0 6px 8px rgba(0,0,0,.15);
}
.zozo-calendar-toggle:hover{
    background:var(--zozo-btn-hover,#ffffff);
    color:var(--zozo-black-color,#000000);
    transform:translateY(-2px);
    box-shadow:0 6px 8px rgba(0,0,0,.15);
}

.view-calendar-btn:active{
    transform:translateY(0);
    box-shadow:0 4px 6px rgba(0,0,0,.1);
}
#zozo-event-details-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.zozo-modal-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    backdrop-filter:blur(3px);
}

.zozo-modal-content1{
    position:relative;
    background:var(--zozo-white-color,#fff);
    padding:25px;
    border-radius:var(--zozo-radius-md,8px);
    width:600px;
    max-width:90%;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:2;
}

.xmark1{
    position:absolute;
    top:-4px;
    right:-15px;
    font-size:24px;
    cursor:pointer;
    color:var(--zozo-text-color,#111827);
    transition:all .3s ease;
}

.xmark1:hover{
    color:var(--zozo-danger-color,#ef4444);
}

.zozo-event-thumbnail img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:var(--zozo-radius-sm,6px);
    margin-bottom:0;
    display:block;
}

.zozo-event-buttons{
    display:flex;
    gap:10px;
    margin: 15px 0 15px 0;
    flex-wrap:wrap;
}

.zozo-event-buttons .button{
    padding:8px 12px;
    border-radius:var(--zozo-radius-xs,5px);
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    color:var(--zozo-white-color,#fff);
    transition:all .3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border: none;
}

.edit-btn{
    background:var(--zozo-warning-color,#f39c12);
}

.edit-btn:hover{
    background:var(--zozo-danger-hover,#e0240b);
    transform:translateY(-2px);
}

.readmore-btn{
    background:var(--zozo-info-color,#3498db);
}

.readmore-btn:hover{
    background:var(--zozo-info-hover,#2980b9);
    transform:translateY(-2px);
}
.zozo-book-btn:hover{
    background-color: #fff;
    color: #2196f3;
    border: 1px solid #2196f3;
}
/* filter-bar-styles */
.zozo-filter-bar1{
    background:linear-gradient(135deg,var(--zozo-dark-bg,#0b0f17) 0%,var(--zozo-dark-bg-alt,#1a1f2b) 100%);
    padding:25px 40px;
    border-radius:var(--zozo-radius-lg,12px);
    margin:40px auto;
    color:var(--zozo-white-color,#fff);
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.zozo-filter-bar1 .filter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:20px 30px;
    align-items:end;
}

.filter-item{
    display:flex;
}

.zozo-filter-bar1 .filter-item{
    flex-direction:column;
}

.zozo-filter-bar1 label{
    color:var(--zozo-accent-color,#00bcd4);
    font-weight:600;
    font-size:.9rem;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.zozo-filter-bar1 input[type="text"],
.zozo-filter-bar1 input[type="number"],
.zozo-filter-bar1 input[type="date"],
.zozo-filter-bar1 input[type="time"],
.zozo-filter-bar1 select{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:var(--zozo-white-color,#fff);
    padding:10px 12px;
    border-radius:var(--zozo-radius-sm,6px);
    font-size:.9rem;
    outline:none;
    transition:all .3s ease;
}

.zozo-filter-bar1 input:focus,
.zozo-filter-bar1 select:focus{
    border-color:var(--zozo-accent-color,#00bcd4);
    box-shadow:0 0 5px rgba(0,188,212,.5);
}

.zozo-filter-bar1 input[type="number"]{
    width:100%;
}

.filter-btn{
    background:var(--zozo-black-color,#000000);
    border:none;
    color:var(--zozo-white-color,#fff);
    padding:12px 20px;
    font-weight:600;
    font-size:.95rem;
    border-radius:50px;
    cursor:pointer;
    transition:all .3s ease;
    text-transform:uppercase;
    letter-spacing:.5px;
    align-self:center;
    margin-top:6px;
}

.sts-wrd{
    color:var(--zozo-black-color,#000);
}

.filter-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(7,7,7,.35);
    background-color:var(--zozo-white-color,#ffffff);
    color:var(--zozo-black-color,#000000);
}

@media (max-width:768px){

    .zozo-filter-bar{
        padding:20px;
    }

    .zozo-filter-bar .filter-grid{
        grid-template-columns:1fr;
    }

    .filter-btn{
        width:100%;
    }
}
/* zozo-booking-calendar.css */

#zozo-booking-calendar {
    min-width: 600px;
    min-height: 500px;
    max-width: 100%;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
}

/* style the legend items */
.zozo-calendar-legend {
    margin-left: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.zozo-calendar-legend span {
    display: inline-block;
    margin-right: 15px;
    line-height: 1.2;
}

.zozo-calendar-legend .legend-color {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 3px;
}

/* event-file-styles  */
.zozo-event-files{
    max-width:600px;
    background:var(--zozo-bg-light,#f9f9f9);
    border:1px solid var(--zozo-border-color,#ddd);
    border-radius:var(--zozo-radius-sm,6px);
    padding:15px 20px;
    margin:20px 0;
    box-shadow:0 1px 4px rgba(0,0,0,.1);
    font-family:var(--zozo-font-family,Arial,sans-serif);
    color:var(--zozo-text-color,#333);
}

.zozo-event-files h3{
    font-weight:600;
    font-size:1.3rem;
    margin-bottom:15px;
    border-bottom:1px solid var(--zozo-border-dark,#ccc);
    padding-bottom:6px;
}

.zozo-event-file-list{
    list-style:none;
    padding-left:0;
    margin:0;
}

.zozo-event-file-list li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 10px;
    border-bottom:1px solid var(--zozo-border-light,#e1e1e1);
    font-size:.95rem;
    gap:12px;
}

.zozo-event-file-list li:last-child{
    border-bottom:none;
}

.zozo-file-view{
    color:var( --zozo-primary,#0073aa);
    text-decoration:none;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    max-width:75%;
    transition:all .3s ease;
}

.zozo-file-view:hover{
    text-decoration:underline;
}

.zozo-file-download{
    background-color:var(--zozo-black-color,#000000);
    color:var(--zozo-white-color,#ffffff);
    padding:5px 10px;
    border-radius:var(--zozo-radius-xs,3px);
    text-decoration:none;
    font-size:.85rem;
    white-space:nowrap;
    transition:all .3s ease;
}

.zozo-file-download:hover{
    background-color:var(--zozo-white-color,#ffffff);
    color:var(--zozo-black-color,#000000);
}

/* event-countdown-styles */
.zozo-event-countdown-large{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:16px;
}

.zozo-event-countdown-large .count-item{
    text-align:center;
    padding:3px 15px;
    border-radius:12px;
    background:var(--zozo-primary-light);
}

.zozo-event-countdown-large .count-number{
    display:block;
    font-size:clamp(28px,4vw,52px);
    font-weight:700;
    line-height:1;
    color:var(--zozo-primary-dark);
}

.zozo-event-countdown-large .count-text{
    display:block;
    margin-top:10px;
    color:var(--zozo-primary-dark);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}

.zozo-event-countdown-large .flip{
    animation:zozoCounterFlip .4s ease;
}
.zozo-event-countdown-card h2{
    font-family: var(--zozo-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--zozo-dark);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

@keyframes zozoCounterFlip{
    0%{
        transform:translateY(-8px);
        opacity:.3;
    }
    100%{
        transform:translateY(0);
        opacity:1;
    }
}

@media(max-width:767px){

    .zozo-event-countdown-large{
        grid-template-columns:repeat(2,1fr);
    }

    .zozo-event-countdown-large .count-item{
        padding:18px 10px;
    }
}

@media(max-width:480px){

    .zozo-event-countdown-large{
        gap:10px;
    }

    .zozo-event-countdown-large .count-number{
        font-size:26px;
    }
}

.event-single-title a{
    text-decoration:none;
}

.subhead{
    color:var(--zozo-black-color,#000000);
}

.row.gutter-3-5{
    --bs-gutter-x:5.25rem;
}

@media (max-width:767px){

    .zozo-taxonomy-title{
        font-size:24px;
        gap:8px;
    }

    .zozo-taxonomy-count{
        font-size:12px;
        padding:5px 12px;
    }

    .zozo-taxonomy-description{
        font-size:14px;
    }
}

.zozo-archive-swiper .swiper-wrapper,
.zozo-location-swiper .swiper-wrapper,
.zozo-organizers-swiper .swiper-wrapper,
.zozo-taxonomy-swiper .swiper-wrapper{
    display:flex;
}

.zozo-archive-swiper .swiper-slide,
.zozo-location-swiper .swiper-slide,
.zozo-organizers-swiper .swiper-slide,
.zozo-taxonomy-swiper .swiper-slide{
    flex-shrink:0;
    height:auto;
}

.zozo-taxonomy-events{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.zozo-taxonomy-swiper {
    padding: 20px 0 20px 0;
    width: 1115px;
}

.zozo-taxonomy-swiper .swiper-slide{
    width:auto !important;
    max-width:100%;
}

.swiper-wrapper{
    width:100% !important;
}

.swiper-slide{
    background:var(--zozo-bg-light,#f9f9f9);
    border-radius:var(--zozo-radius-md,8px);
    overflow:hidden;
    transition:transform .25s ease,box-shadow .25s ease;
}

.zozo-single-layout{
    align-items:flex-start;
}

.zozo-left-media img{
    width:100%;
    border-radius:var(--zozo-radius-md,8px);
}

.zozo-right-content{
    padding-left:100px;
}

@media (max-width:768px){

    .zozo-right-content{
        padding-left:0;
        margin-top:20px;
    }
}

.zozo-user-btn{
    background: var( --zozo-primary);
    color: var(--zozo-text-white);
    padding: 8px 14px;
    border-radius: var(--zozo-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--zozo-transition);
}

.zozo-user-btn:hover{
    background: var(--zozo-secondary-hover);
}

.zozo-login-btn{
    background: var( --zozo-primary);
    color: var(--zozo-text-white);
    padding: 8px 14px;
    border-radius: var(--zozo-radius-lg);
    text-decoration: none;
    display: inline-block;
    transition: var(--zozo-transition);
}

.zozo-login-btn:hover{
    background: var(--zozo-primary-hover);
}

.zozo-user-popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--zozo-overlay);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.zozo-user-popup.active{
    display: flex;
}

.zozo-user-card{
    background: var(--zozo-bg-color);
    width: 400px;
    border-radius: var(--zozo-radius-md);
    padding: 20px;
    box-shadow: var(--zozo-shadow-md);
    animation: zozoFade .2s ease-in-out;
}

.zozo-user-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--zozo-border-color);
    margin-bottom: 10px;
}

.zozo-close{
    cursor: pointer;
    font-size: 20px;
    color: var(--zozo-text-light);
}

.zozo-close:hover{
    color: var(--zozo-text-color);
}

.zozo-user-body p{
    margin: 6px 0;
    font-size: 14px;
    color: var(--zozo-text-color);
}

.zozo-user-footer{
    margin-top: 15px;
    text-align: right;
}

@keyframes zozoFade{
    from{transform: scale(0.9); opacity: 0;}
    to{transform: scale(1); opacity: 1;}
}

.zozo-grid-row > [class*='col-']{
    display: flex;
}

.zozo-grid-row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.zozo-organizer-grid .event-card,
.zozo-location-grid .event-card{
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 25px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid var(--zozo-border-soft);
    border-radius: 20px;
    transition: 0.35s;
}

.zozo-organizer-grid .event-card:hover,
.zozo-location-grid .event-card:hover{
    transform: translateY(-8px);
    border-color: var(--zozo-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.zozo-event-card-inner{
    display: flex;
    align-items: center;
    height: 100%;
}

.zozo-archive-grid .zozo-event-card-inner{
    display: grid;
}

.org-event-thumb{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.org-event-thumb img{
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .org-event-thumb img{
    transform: scale(1.05);
}

.event-details{
    flex-grow: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-details h3 a{
    text-decoration: none;
    color: var(--zozo-text-color);
    transition: color 0.2s ease;
}

.event-details h3 a:hover{
    color: var( --zozo-primary);
}

.event-details small{
    color: var(--zozo-text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--zozo-primary);
    font-size: .85rem;
    font-weight: 600;
}

.event-details p{
    font-size: 14px;
    color: var(--zozo-text-light);
    line-height: 1.5;
}
/* HOVER */
.zozo-location-grid .event-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.zozo-taxonomy-grid .event-card {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 25px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid var(--zozo-border-soft);
    border-radius: 20px;
    transition: 0.35s;
}
.zozo-taxonomy-grid .event-card:hover {
    transform: translateY(-8px);
    border-color: var(--zozo-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.zozo-archive-main{
    display: flex;
    flex: 1;
}

.zozo-archive-events{
    width: 100%;
}

.zozo-custom-fields{
    margin-top: 20px;
}

/* Fronend schedule single styles */
.zozo-schedule-wrapper{
    padding:100px 0;
    background:var(--zozo-bg-light);
}

.zozo-schedule-main-title{
    text-align:center;
    margin-bottom:70px;
    font-size:48px;
    font-weight:800;
    text-transform:uppercase;
    color:var(--zozo-text-color);
}

.zozo-sticky-day-row{
    display:flex;
    gap:50px;
    align-items:flex-start;
    margin-bottom:70px;
}

.zozo-sticky-day{
    width:220px;
    flex-shrink:0;
}

.zozo-day-sticky-box{
    position:sticky;
    top:120px;
    background:linear-gradient(90deg,var( --zozo-primary),#4fe1b0);
    color:var(--zozo-text-white);
    padding:35px 25px;
    text-align:center;
    clip-path:polygon(0 0,100% 0,100% 80%,90% 100%,0 100%);
    border-radius:var(--zozo-radius-md);
}

.zozo-day-sticky-box h2{
    margin:0 0 10px;
    font-size:34px;
    color:var(--zozo-text-white);
}

.zozo-day-sticky-box span{
    font-size:15px;
    opacity:.9;
}

.zozo-day-sessions{
    flex:1;
}

.zozo-modern-session-card{
    background:var(--zozo-bg-color);
    display:flex;
    gap:40px;
    padding:35px;
    margin-bottom:25px;
    border-radius:var(--zozo-radius-sm);
    border:1px solid var(--zozo-border-color);
    transition:var(--zozo-transition);
}

.zozo-modern-session-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--zozo-shadow-md);
}

.zozo-session-left{
    width:220px;
    flex-shrink:0;
}

.zozo-session-time{
    font-size:18px;
    font-weight:700;
    color:var( --zozo-primary);
    margin-bottom:15px;
}

.zozo-session-location{
    color:var(--zozo-text-light);
    font-size:14px;
}

.zozo-session-center{
    flex:1;
}

.zozo-session-center h3{
    margin:0 0 15px;
    font-size:28px;
    font-weight:800;
    text-transform:uppercase;
    color:var( --zozo-primary);
}

.zozo-tabs-nav{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.zozo-tab-btn{
    border:none;
    background:linear-gradient(90deg,var(--zozo-bg-dark),var(--zozo-secondary-hover));
    color:var(--zozo-text-white);
    padding:15px 30px;
    border-radius:60px;
    cursor:pointer;
    font-weight:700;
    position:relative;
    transition:var(--zozo-transition);
}

.zozo-tab-btn.active{
    background:var( --zozo-primary);
}

.zozo-tab-btn::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:var( --zozo-primary);
    transition:var(--zozo-transition);
    transform:translateX(-50%);
}

.zozo-tab-btn.active::after{
    width:100%;
}

.zozo-tab-content{
    display:none;
}

.zozo-tab-content.active{
    display:block;
}

.zozo-slider-day-header{
    text-align:center;
    margin-bottom:40px;
}

.zozo-slider-day-header h2{
    font-size:40px;
    margin-bottom:10px;
    color:var(--zozo-text-color);
}

.zozo-session-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.zozo-session-header h3{
    margin:0;
    flex:1;
}

.zozo-session-toggle{
    position:relative;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:linear-gradient(90deg,var( --zozo-primary),var(--zozo-primary-hover));
    transition:var(--zozo-transition);
    font-size:0;
}

.zozo-session-toggle::before,
.zozo-session-toggle::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    background:var(--zozo-text-white);
    transform:translate(-50%, -50%);
    transition:var(--zozo-transition);
}

.zozo-session-toggle::before{
    width:18px;
    height:0px;
    color: #fff;
}

.zozo-session-toggle::after{
    width:2px;
    height:18px;
}

.zozo-modern-session-card.active .zozo-session-toggle::after{
    opacity:0;
}

.zozo-session-description{
    display:none;
    margin-top:20px;
    color:var(--zozo-text-light);
    line-height:1.8;
}

.zozo-session-speakers{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.zozo-speaker-item img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.swiper-pagination{
    position:relative;
    margin-top:40px;
}
.zozo-speakers-label{
    color:var(--zozo-text-light);
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:.5px;
}

.zozo-session-speakers{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.zozo-speaker-item{
    position:relative;
    margin-right:-10px;
    cursor:pointer;
    transition:var(--zozo-transition);
}

.zozo-speaker-item:hover{
    transform:translateY(-5px);
    z-index:10;
}

.zozo-speaker-item img,
.zozo-speaker-placeholder{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    background:linear-gradient(90deg,var(--zozo-bg-dark),var(--zozo-secondary-hover));
    color:var(--zozo-text-white);
    border:3px solid var(--zozo-bg-color);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.zozo-speaker-tooltip{
    position:absolute;
    bottom:70px;
    left:50%;
    transform:translateX(-50%);
    background:var(--zozo-bg-dark);
    color:var(--zozo-text-white);
    padding:8px 14px;
    border-radius:8px;
    font-size:13px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:var(--zozo-transition);
    pointer-events:none;
}

.zozo-speaker-tooltip::after{
    content:"";
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    border-width:6px;
    border-style:solid;
    border-color:var(--zozo-bg-dark) transparent transparent transparent;
}

.zozo-speaker-item:hover .zozo-speaker-tooltip{
    opacity:1;
    visibility:visible;
    bottom:76px;
}
.zozo-session-time,
.zozo-session-location,
.zozo-session-speaker-names{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    font-size:14px;
    color:var(--zozo-text-light);
}

.zozo-session-time i,
.zozo-session-location i,
.zozo-session-speaker-names i{
    font-size:14px;
    color:var(--zozo-text-color);
    min-width:16px;
}

.zozo-sticky-schedule-wrapper{
    position:relative;
}

.zozo-sticky-day-row{
    display:flex;
    gap:40px;
    align-items:flex-start;
    margin-bottom:60px;
}

.zozo-sticky-day{
    width:260px;
    flex-shrink:0;
    position:sticky;
    top:120px;
    align-self:flex-start;
}

.zozo-day-sticky-box{
    padding:30px;
    border-radius:var(--zozo-radius-md);
}

.zozo-day-sticky-box h2{
    margin:0 0 10px;
    font-size:32px;
    line-height:1.2;
    color:var(--zozo-text-white);
}

.zozo-day-sticky-box span{
    display:block;
    opacity:0.7;
    font-size:15px;
}

.zozo-day-sessions{
    flex:1;
    min-width:0;
}

.zozo-modern-session-card{
    margin-bottom:24px;
}

.zozo-schedule-wrapper,
.zozo-sticky-schedule-wrapper,
.container{
    overflow:visible !important;
}
.zozo-single-session-card h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
}

.zozo-session-desc-toggle {
    margin-left: auto;
    flex-shrink: 0;
}
@media(max-width:991px){

    .zozo-sticky-day-row{
        flex-direction:column;
    }

    .zozo-sticky-day{
        position:relative;
        top:0;
        width:100%;
    }

    .zozo-day-sticky-box{
        position:relative;
    }

    .zozo-modern-session-card{
        flex-direction:column;
        gap:20px;
    }

    .zozo-session-left{
        width:100%;
    }
}

@media(max-width:767px){

    .zozo-schedule-main-title{
        font-size:32px;
    }

    .zozo-day-sticky-box h2{
        font-size:28px;
    }

    .zozo-session-center h3{
        font-size:22px;
    }

    .zozo-modern-session-card{
        padding:25px;
    }
}

/* -------------------------------------------------------------------------------------- */


/* Map existing zozo-event-box → premium sidebar card */
.zozo-event-box {
  background: var(--zozo-white);
  border: 1px solid var(--zozo-border);
  border-radius: var(--zozo-radius-lg);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(16,185,129,.08);
  transition: box-shadow var(--zozo-duration) var(--zozo-ease);
}

.zozo-event-box:hover {
  box-shadow: var(--zozo-shadow-lg);
}

.zozo-event-box .widget-title {
  font-family: var(--zozo-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--zozo-dark);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.zozo-latest-wrapper h2 {
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 800;
    color: var(--zozo-text-color);
}

.zozo-latest-events {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zozo-latest-events li,
.zozo-past-events li  {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-latest-events li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.event-thumb img {
    width: 145px;
    height: 145px;
    border-radius: var(--zozo-radius-sm);
    object-fit: cover;
    box-shadow: var(--zozo-shadow-sm);
    transition: var(--zozo-transition);
}

.zozo-latest-events li:hover .event-thumb img {
    transform: scale(1.05);
}

/* Organizer card */
.zozo-sidebar-organizer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zozo-organizer-head{
    display:flex;
    align-items:center;
    gap:15px;
}

.zozo-organizer-thumb img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}

.zozo-organizer-info{
    flex:1;
}

.zozo-organizer-name{
    margin:0;
}

.zozo-organizer-role{
    display:block;
    margin-top:4px;
}

.zozo-organizer-role {
  display: inline-block;
  background: var(--zozo-primary-light);
  color: var(--zozo-primary-dark);
  border-radius: var(--zozo-radius-pill);
  padding: 3px 12px;
  font-family: var(--zozo-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  width: fit-content;
}

.zozo-organizer-name {
  font-family: var(--zozo-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--zozo-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.zozo-organizer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--zozo-text);
}

.zozo-organizer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--zozo-border-soft);
  padding-top: 18px;
}

.zozo-organizer-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zozo-organizer-meta .meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--zozo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zozo-organizer-meta .meta-icon i {
  font-size: 14px;
  color: var(--zozo-primary-dark);
}

.zozo-organizer-meta .meta-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.zozo-organizer-meta .meta-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--zozo-text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.zozo-organizer-meta .meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--zozo-dark);
}

.zozo-organizer-meta a.meta-value {
  color: var(--zozo-primary);
  text-decoration: none;
}

.zozo-organizer-meta a.meta-value:hover {
  text-decoration: underline;
}

.zozo-organizer-socials {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--zozo-border-soft);
  padding-top: 18px;
}

.zozo-organizer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--zozo-bg);
  border: 1px solid var(--zozo-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zozo-text);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--zozo-duration) var(--zozo-ease);
}

.zozo-organizer-socials a:hover {
  background: var(--zozo-primary);
  border-color: var(--zozo-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16,185,129,.3);
}

/* Location widget */
.zozo-sidebar-location-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zozo-location-name {
  font-family: var(--zozo-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--zozo-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.zozo-location-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--zozo-text);
}

.zozo-location-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--zozo-border-soft);
  padding-top: 16px;
}

.zozo-location-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zozo-location-meta .meta-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--zozo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zozo-location-meta .meta-icon i {
  font-size: 12px;
  color: var(--zozo-primary-dark);
}

.zozo-location-meta .meta-content {
  display: flex;
  gap: 6px;
}

.zozo-location-meta .meta-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--zozo-text-light);
  min-width: 64px;
}

.zozo-location-meta .meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--zozo-dark);
}

/* Search widget */
.zozo-event-search .search-form {
  display: flex;
  gap: 8px;
}

.zozo-event-search .search-field {
  flex: 1;
  border: 1.5px solid var(--zozo-border-soft);
  border-radius: var(--zozo-radius-pill);
  padding: 10px 16px;
  font-family: var(--zozo-font);
  font-size: 14px;
  color: var(--zozo-dark);
  background: var(--zozo-bg);
  outline: none;
  transition: all var(--zozo-duration) var(--zozo-ease);
}
.zozo-event-search input[type="search"] {
    flex: 1;
    height: 55px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.zozo-event-search .search-field:focus {
  border-color: var(--zozo-primary);
  box-shadow: 0 0 0 3px var(--zozo-primary-ring);
  background: var(--zozo-white);
}

.zozo-event-search .search-submit {
  background: linear-gradient(135deg, var(--zozo-primary), var(--zozo-primary-dark));
  color: #ffffff;
  border: none;
  border-radius: var(--zozo-radius-pill);
  font-family: var(--zozo-font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--zozo-duration) var(--zozo-ease);
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}

.zozo-event-search .search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16,185,129,.4);
}


.zozo-event-hero-full{
    width:100%;
    flex:0 0 100%;
    max-width:100%;
    padding: 0;
}

.zozo-event-hero-wrap{
    width:100%;
    margin: 30px 0 30px 0;
}

.zozo-hero-thumbnail{
    width:100%;
}

.zozo-hero-thumbnail img{
    width:100%;
    display:block;
}

.zozo-event-content-wrap{
    margin-top:0;
}   
.zozo-event-hero-wrap {
  position: relative;
  border-radius: var(--zozo-radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
  box-shadow: 0 24px 64px rgba(15,23,42,.18);
}

.zozo-event-thumbnail.zozo-hero-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zozo-event-thumbnail.zozo-hero-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zozo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,16,30,.88) 0%,
    rgba(10,16,30,.5) 45%,
    rgba(10,16,30,.08) 100%
  );
  z-index: 1;
}

.zozo-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
  width: 100%;
}

.zozo-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.event-single-title {
  font-family: var(--zozo-font);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.zozo-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--zozo-radius-pill);
  padding: 8px 16px;
  color: rgba(255,255,255,.9);
  font-family: var(--zozo-font);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.zozo-hero-date i {
  color: var(--zozo-primary);
  font-size: 14px;
}

.zozo-event-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zozo-full-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Label badge */
.zozo-event-label-wrapper {
  display: flex;
  align-items: center;
}

.zozo-event-label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zozo-label-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--label-color, #6d28d9) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--label-color, #6d28d9) 22%, transparent);
  border-radius: var(--zozo-radius-pill);
  padding: 4px 12px;
  font-family: var(--zozo-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--label-color, #6d28d9);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.zozo-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Content cards */
.zozo-content-card {
  background: var(--zozo-white);
  border: 1px solid var(--zozo-border);
  border-radius: var(--zozo-radius-lg);
  padding: 32px 36px;
  box-shadow: var(--zozo-shadow-md);
  transition: box-shadow var(--zozo-duration) var(--zozo-ease);
}

.zozo-content-card:hover {
  box-shadow: var(--zozo-shadow-lg);
}

/* Description */
.zozo-event-description .entry-content p {
  font-family: var(--zozo-font);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--zozo-text);
  margin: 0;
}

/* Details card */
.zozo-details-card h2.subhead {
  font-family: var(--zozo-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--zozo-dark);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.zozo-event-single-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 5px;
}

.zozo-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--zozo-bg);
  border: 1px solid var(--zozo-border-soft);
  border-radius: var(--zozo-radius-md);
  padding: 20px 14px;
  transition: all var(--zozo-duration) var(--zozo-ease);
}

.zozo-detail-item:hover {
  border-color: rgba(16,185,129,.25);
  box-shadow: 0 4px 20px rgba(16,185,129,.10);
  transform: translateY(-2px);
}

.zozo-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--zozo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zozo-detail-icon i {
  font-size: 20px;
  color: var(--zozo-primary-dark);
}

.zozo-detail-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.zozo-detail-content .zozo-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--zozo-text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.zozo-detail-content .zozo-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--zozo-dark);
  line-height: 1.4;
}

/* Schedule button */
.zozo-event-schedule-btn-wrap {
  display: flex;
}

.zozo-event-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--zozo-dark);
  color: #ffffff;
  font-family: var(--zozo-font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--zozo-radius-sm);
  padding: 13px 26px;
  text-decoration: none;
  transition: all var(--zozo-duration) var(--zozo-ease);
  box-shadow: 0 4px 16px rgba(15,23,42,.25);
  height: 52px;
  letter-spacing: .01em;
}

.zozo-event-schedule-btn:hover {
  background: var(--zozo-dark-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,.3);
  color: #ffffff;
}

/* shedule-styles */

.zozo-single-schedule-list,
.zozo-single-schedule-tabs,
.zozo-single-schedule-slider{
    padding:32px;
    background:var(--zozo-white);
    border:1px solid var(--zozo-border);
    border-radius:var(--zozo-radius-lg);
    box-shadow:var(--zozo-shadow-sm);
}
.zozo-single-schedule-list h2,
.zozo-single-schedule-tabs h2,
.zozo-single-schedule-slider h2{
    font-family: var(--zozo-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--zozo-dark);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.zozo-single-schedule-list{
    position:relative;
    padding-left:40px;
}

.zozo-single-schedule-list::before{
    content:'';
    position:absolute;
    left:12px;
    top:40px;
    bottom:40px;
    width:2px;
    background:var(--zozo-border-soft);
}

.zozo-single-schedule-list .zozo-single-day-block{
    margin-bottom:40px;
}

.zozo-single-schedule-list .zozo-single-day-head{
    margin-bottom:30px;
    padding-bottom:15px;
    border-bottom:2px solid var(--zozo-border-soft);
}

.zozo-single-schedule-list .zozo-single-day-head h4{
    margin:0;
    font-size:1.4rem;
    color:var(--zozo-dark);
}

.zozo-single-schedule-list .zozo-single-day-head span{
    display:inline-block;
    margin-top:10px;
    padding:8px 16px;
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
    border-radius:var(--zozo-radius-pill);
    font-weight:600;
}

.zozo-single-schedule-list .zozo-single-session-card{
    position:relative;
    padding:0 0 35px 25px;
    margin:0;
    border:none;
    background:none;
    box-shadow:none;
}

.zozo-single-schedule-list .zozo-single-session-card::before{
    content:'';
    position:absolute;
    left:-35px;
    top:6px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--zozo-primary);
    border:3px solid var(--zozo-white);
    box-shadow:0 0 0 3px var(--zozo-primary-light);
}

.zozo-single-schedule-list .zozo-session-time{
    display:block;
    margin-bottom:10px;
    color:var(--zozo-primary);
    font-size:.95rem;
    font-weight:700;
}

.zozo-single-schedule-list h5{
    margin:0 0 8px;
    color:var(--zozo-dark);
    font-size:1.1rem;
}

.zozo-single-schedule-list p{
    margin:0;
    color:var(--zozo-text);
    line-height:1.7;
}

.zozo-single-tabs-nav{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:30px;
    padding-bottom:10px;
}

.zozo-single-tab-btn{
    border:none;
    cursor:pointer;
    padding:12px 24px;
    border-radius:var(--zozo-radius-pill);
    background:var(--zozo-bg-2);
    color:var(--zozo-dark-muted);
    font-weight:600;
    transition:all var(--zozo-duration) var(--zozo-ease);
}

.zozo-single-tab-btn:hover{
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
}

.zozo-single-tab-btn.active{
    background:var(--zozo-primary);
    color:var(--zozo-white);
    box-shadow:var(--zozo-shadow-md);
}

.zozo-single-tab-content{
    display:none;
}

.zozo-single-tab-content.active{
    display:block;
}

.zozo-single-schedule-tabs .zozo-single-session-card{
    display:flex;
    align-items:center;
    gap:24px;
    padding:22px;
    margin-bottom:16px;
    background:var(--zozo-white);
    border:1px solid var(--zozo-border-soft);
    border-radius:var(--zozo-radius-md);
    transition:all var(--zozo-duration) var(--zozo-ease);
}

.zozo-single-schedule-tabs .zozo-single-session-card:hover{
    border-color:var(--zozo-primary);
    box-shadow:var(--zozo-shadow-md);
    transform:translateY(-2px);
}

.zozo-single-schedule-tabs .zozo-single-session-card::before{
    display:none;
}

.zozo-single-schedule-tabs .zozo-session-time{
    flex:0 0 140px;
    text-align:center;
    padding:12px 15px;
    border-radius:14px;
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
    font-weight:700;
}

.zozo-single-schedule-tabs h5,
.zozo-single-schedule-tabs strong{
    display:block;
    margin:0 0 6px;
    color:var(--zozo-dark);
    font-size:1.05rem;
}

.zozo-single-schedule-tabs p,
.zozo-single-schedule-tabs span{
    color:var(--zozo-text);
}


.zozo-slide-day{
    text-align:center;
    margin-bottom:25px;
}

.zozo-slide-day h4{
    margin:0 0 10px;
    color:var(--zozo-dark);
    font-size:1.4rem;
}

.zozo-slide-day span{
    display:inline-block;
    padding:8px 18px;
    border-radius:var(--zozo-radius-pill);
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
    font-weight:600;
}

.zozo-single-schedule-slider .zozo-single-session-card{
    position:relative;
    padding:24px;
    margin-bottom:16px;
    background:var(--zozo-white);
    border:1px solid var(--zozo-border-soft);
    border-radius:var(--zozo-radius-md);
}

.zozo-single-schedule-slider .zozo-single-session-card::before{
    content:'';
    position:absolute;
    left:0;
    top:20px;
    bottom:20px;
    width:4px;
    border-radius:20px;
    background:var(--zozo-primary);
}

.zozo-single-schedule-slider .zozo-session-time{
    display:inline-block;
    margin-bottom:12px;
    color:var(--zozo-primary-dark);
    font-weight:700;
}

.zozo-single-schedule-slider h5{
    margin:0 0 8px;
    color:var(--zozo-dark);
}

.zozo-session-desc-toggle{
    border:none;
    background:transparent;
    color:inherit;
    cursor:pointer;
    padding:0;
    margin:0;
    line-height:1;
    font-size:1.1rem;
    font-weight:700;
}

.zozo-single-schedule-list .zozo-session-time,
.zozo-single-schedule-tabs .zozo-session-time,
.zozo-single-schedule-slider .zozo-session-time{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.zozo-event-schedule-swiper .swiper-button-next,
.zozo-event-schedule-swiper .swiper-button-prev{
    position: absolute;
    top: 65px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--zozo-white);
    border:1px solid var(--zozo-border-soft);
    box-shadow:var(--zozo-shadow-sm);
}

.zozo-event-schedule-swiper .swiper-button-next::after,
.zozo-event-schedule-swiper .swiper-button-prev::after{
    font-size:16px;
    color:var(--zozo-primary);
}

.zozo-event-schedule-swiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#cbd5e1;
    opacity:1;
}

.zozo-event-schedule-swiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:999px;
    background:var(--zozo-primary);
}

@media (max-width:767px){

    .zozo-single-schedule-list,
    .zozo-single-schedule-tabs,
    .zozo-single-schedule-slider{
        padding:20px;
    }

    .zozo-single-schedule-list{
        padding-left:25px;
    }

    .zozo-single-schedule-list .zozo-single-session-card::before{
        left:-22px;
    }

    .zozo-single-tabs-nav{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:6px;
    }

    .zozo-single-tab-btn{
        white-space:nowrap;
    }

    .zozo-single-schedule-tabs .zozo-single-session-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .zozo-single-schedule-tabs .zozo-session-time{
        flex:auto;
        width:100%;
    }
}

.zozo-event-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zozo-map-title {
  font-family: var(--zozo-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--zozo-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.zozo-event-map {
  border-radius: var(--zozo-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zozo-border-soft);
  box-shadow: var(--zozo-shadow-sm);
}

.zozo-event-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.zozo-event-btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.zozo-event-btn-wrap .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--zozo-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--zozo-radius-sm);
  padding: 12px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--zozo-duration) var(--zozo-ease);
  border: 1.5px solid var(--zozo-border-soft);
  background: var(--zozo-white);
  color: var(--zozo-dark);
  height: 48px;
}

.zozo-event-btn-wrap .button:hover {
  border-color: var(--zozo-primary);
  color: var(--zozo-primary);
  box-shadow: 0 0 0 3px var(--zozo-primary-ring);
}

.zozo-calendar-dropdown {
  position: relative;
  display: inline-block;
}

.zozo-calendar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--zozo-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--zozo-radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  border: 1.5px solid var(--zozo-border-soft);
  background: var(--zozo-white);
  color: var(--zozo-dark);
  height: 48px;
  text-decoration: none;
  transition: all var(--zozo-duration) var(--zozo-ease);
}

.zozo-calendar-toggle:hover {
  border-color: var(--zozo-primary);
  color: var(--zozo-primary);
}

.zozo-calendar-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--zozo-white);
  border: 1px solid var(--zozo-border-soft);
  border-radius: var(--zozo-radius-md);
  box-shadow: var(--zozo-shadow-lg);
  padding: 8px;
  z-index: 100;
  flex-direction: column;
  gap: 2px;
}

.zozo-calendar-dropdown:hover .zozo-calendar-menu,
.zozo-calendar-dropdown:focus-within .zozo-calendar-menu {
  display: flex;
}

.zozo-calendar-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--zozo-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--zozo-dark);
  text-decoration: none;
  transition: background var(--zozo-duration) var(--zozo-ease);
}

.zozo-calendar-menu a:hover {
  background: var(--zozo-bg);
  color: var(--zozo-primary);
}

.zozo-calendar-menu a i {
  font-size: 15px;
  color: var(--zozo-primary);
  width: 16px;
  text-align: center;
}

.zozo-post-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
}

.zozo-post-nav .nav-previous,
.zozo-post-nav .nav-next {
  flex: 1;
}

.zozo-post-nav .nav-next {
  text-align: right;
}

.zozo-post-nav .next-post,
.zozo-post-nav .no-post ,
.zozo-post-nav .prev-post{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--zozo-dark);
  color: #ffffff;
  font-family: var(--zozo-font);
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 24px;
  text-decoration: none;
  transition: all var(--zozo-duration) var(--zozo-ease);
  box-shadow: 0 4px 14px rgba(15,23,42,.2);
  justify-content: center;
  width: 100%;
}

.zozo-post-nav .next-post:hover,
.zozo-post-nav .prev-post:hover  {
  background: var(--zozo-dark-3);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15,23,42,.28);
  color: #ffffff;
}

.zozo-post-nav .no-post {
  opacity: .45;
  pointer-events: none;
}

.zozo-post-nav .title-inner {
  display: block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zozo-post-nav .arrow {
  font-size: 17px;
}

.zozo-container-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.zozo-event-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 0 80px;
}

.zozo-event-single {
  flex: 1 1 0;
  min-width: 0;
}

.zozo-event-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
  padding: 0;
}
.zozo-double-sidebar {
    max-width: 1850px;
    margin: 0 auto;
}
/* Tablet ≤1100px */
@media (max-width: 1100px) {
  .zozo-organizer-hero-inner {
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 60px 32px;
  }

  .zozo-organizer-avatar {
    width: 260px;
    height: 320px;
  }

  .zozo-organizer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zozo-organizer-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zozo-organizer-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zozo-organizer-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .zozo-organizer-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zozo-event-layout {
    flex-direction: column;
    gap: 24px;
  }

  .zozo-event-sidebar {
    width: 100%;
    position: static;
  }

  .zozo-event-single-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet ≤900px */
@media (max-width: 900px) {
  .zozo-organizer-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
    text-align: center;
  }

  .zozo-organizer-avatar {
    width: 240px;
    height: 280px;
    margin: 0 auto;
  }

  .zozo-organizer-position-badge,
  .zozo-organizer-hero-ctas {
    margin: 0 auto;
    justify-content: center;
  }

  .zozo-organizer-hero-info {
    align-items: center;
  }

  .zozo-organizer-tagline {
    text-align: center;
  }

  .zozo-organizer-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zozo-organizer-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .zozo-organizer-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zozo-organizer-about,
  .zozo-organizer-skills,
  .zozo-organizer-events,
  .zozo-organizer-gallery,
  .zozo-organizer-partners,
  .zozo-organizer-contact,
  .zozo-organizer-related,
  .zozo-organizer-stats {
    padding: 0 24px;
  }

  .zozo-organizer-contact-card {
    padding: 44px 36px;
  }
}

/* Mobile ≤600px */
@media (max-width: 600px) {
  .zozo-container-wrap {
    padding: 0 16px;
  }

  .zozo-organizer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zozo-organizer-skills-grid,
  .zozo-organizer-events-grid,
  .zozo-organizer-gallery-grid,
  .zozo-organizer-related-grid {
    grid-template-columns: 1fr;
  }

  .zozo-event-hero-wrap {
    min-height: 320px;
    border-radius: var(--zozo-radius-md);
  }

  .zozo-hero-content {
    padding: 24px 20px;
  }

  .event-single-title {
    font-size: 28px;
  }

  .zozo-event-single-meta {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .zozo-content-card {
    padding: 20px;
    border-radius: var(--zozo-radius-md);
  }

  .zozo-event-btn-wrap {
    flex-direction: column;
  }

  .zozo-event-btn-wrap .button,
  .zozo-calendar-toggle {
    width: 100%;
    justify-content: center;
  }

  .zozo-post-nav {
    flex-direction: column;
    gap: 12px;
  }

  .zozo-post-nav .nav-next {
    text-align: left;
  }

  .zozo-post-nav .next-post,
  .zozo-post-nav .no-post {
    width: 100%;
    justify-content: center;
  }

  .zozo-organizer-hero {
    min-height: 400px;
  }

  .zozo-organizer-name {
    font-size: 32px;
  }

  .zozo-organizer-contact-card {
    padding: 32px 24px;
    border-radius: var(--zozo-radius-lg);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* organizer single styles  */
/* ============================================================
   ORGANIZER SINGLE — NEW DESIGN
   Matches the "organizer-single.png" mockup
   Uses existing class names + CSS custom properties
   ============================================================ */

/* ── Wrapper card ─────────────────────────────────────────── */
.organizer-container{
    padding: 40px 20px;
    margin: 0 auto;
}
.organizer-container.no-sidebar{
    max-width:1300px;
}

.organizer-container.has-sidebar{
    max-width:1900px;
}
.org-row{
    justify-content: center;
}
.zozo-organizer-main {
  font-family: var(--zozo-font);
  color: var(--zozo-text);
}

.zozo-organizer-profile {
  background: var(--zozo-white) !important;
  border-radius: var(--zozo-radius-lg);
  box-shadow: var(--zozo-shadow-md);
  padding: 32px;
  margin-bottom: 28px;
  overflow: hidden;
}

/* ── Profile wrapper: image | contact | skills ───────────── */
.organizer-profile-wrap{
    display:grid;
    grid-template-columns: 435px 1fr;
    gap:40px;
    align-items:stretch;
}

/* ── LEFT — Photo block ───────────────────────────────────── */
.organizer-thumb-area {
  position: relative;
  flex-shrink: 0;
  height:100%;
}

.organizer-thumb {
  border-radius: var(--zozo-radius-md);
  overflow: hidden;
  height:100%;
  max-height:none;
  aspect-ratio:auto;
}

.organizer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--zozo-radius-md);
}

.organizer-thumb-area::before {
  content: "★  " attr(data-designation);
  display: none;
}

.organizer-designation {
  background: var(--zozo-primary-light);;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--zozo-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px 6px 10px;
  border-radius: var(--zozo-radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
  z-index: 2;
  width: fit-content;
}

.organizer-designation::before {
  content: "★";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--zozo-primary);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── MIDDLE — Name + contact ──────────────────────────────── */
.organizer-content-area {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.organizer-top-content {
  margin-bottom: 20px;
}

.organizer-name {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--zozo-dark);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

/* Green underline accent under name */
.organizer-name::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--zozo-primary);
  border-radius: var(--zozo-radius-pill);
  margin-top: 10px;
}

.organizer-description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--zozo-text);
  max-width: 380px;
  margin-bottom: 28px;
}

/* ── Meta list ────────────────────────────────────────────── */
.organizer-meta-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.organizer-meta {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.org-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zozo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--zozo-primary-dark);
  font-size: 15px;
  transition: background var(--zozo-duration) var(--zozo-ease),
              box-shadow var(--zozo-duration) var(--zozo-ease);
}

.meta-item:hover .org-meta-icon {
  background: var(--zozo-primary);
  color: var(--zozo-white);
  box-shadow: var(--zozo-shadow-glow);
}

.meta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.meta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zozo-text-light);
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--zozo-dark);
  text-decoration: none;
  transition: color var(--zozo-duration) var(--zozo-ease);
}

a.meta-value {
  color: var(--zozo-primary-dark);
}

a.meta-value:hover {
  color: var(--zozo-primary);
  text-decoration: underline;
}

/* ── Social icons ─────────────────────────────────────────── */
.organizer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

.organizer-socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--zozo-radius-sm);
  border: 1.5px solid var(--zozo-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zozo-dark-muted);
  font-size: 16px;
  text-decoration: none;
  background: var(--zozo-white);
  transition: border-color var(--zozo-duration) var(--zozo-ease),
              color var(--zozo-duration) var(--zozo-ease),
              box-shadow var(--zozo-duration) var(--zozo-ease),
              transform var(--zozo-duration) var(--zozo-ease);
}

.organizer-socials a:hover {
  border-color: var(--zozo-primary);
  color: var(--zozo-primary-dark);
  box-shadow: 0 4px 12px var(--zozo-primary-ring);
  transform: translateY(-2px);
}

/* ── RIGHT — Skills block ─────────────────────────────────── */
.organizer-additional-box.skills-box {
  min-width: 260px;
  padding-left: 20px;
  border-left: 1px solid #e5e7eb;
}

.additional-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--zozo-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.additional-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--zozo-primary);
  border-radius: var(--zozo-radius-pill);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--zozo-bg);
  border: 1.5px solid var(--zozo-border-soft);
  border-radius: var(--zozo-radius-md);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--zozo-dark);
  cursor: default;
  transition: border-color var(--zozo-duration) var(--zozo-ease),
              background var(--zozo-duration) var(--zozo-ease),
              box-shadow var(--zozo-duration) var(--zozo-ease),
              transform var(--zozo-duration) var(--zozo-ease);
}

/* Skill icon before each item (green circle) */
.skill-item::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: var(--zozo-radius-sm);
  background: var(--zozo-primary-light);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.skill-item:hover {
  border-color: var(--zozo-primary);
  background: var(--zozo-primary-light);
  box-shadow: 0 4px 14px var(--zozo-primary-ring);
  transform: translateY(-2px);
}

/* ── Events section ───────────────────────────────────────── */
.zozo-organizer-events {
  background: var(--zozo-white);
  border-radius: var(--zozo-radius-lg);
  box-shadow: var(--zozo-shadow-md);
  padding: 32px;
}

.zozo-organizer-events h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--zozo-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* Green accent under heading */
.zozo-organizer-events h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--zozo-primary);
  border-radius: var(--zozo-radius-pill);
  margin-top: 8px;
  margin-bottom: 20px;
}

/* No-events empty state */
.zozo-organizer-events > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 160px;
  border: 2px dashed var(--zozo-border-soft);
  border-radius: var(--zozo-radius-md);
  color: var(--zozo-dark);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin: 16px 0 24px;
  padding: 32px;
  background: var(--zozo-bg);
}

/* Calendar icon before the no-events text */
.zozo-organizer-events > p::before {
  content: "";
  width: 56px;
  height: 56px;
  background: var(--zozo-primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.zozo-organizer-events > p::after {
  content: "Check back soon for upcoming events!";
  font-size: 13px;
  font-weight: 400;
  color: var(--zozo-text-light);
  display: block;
}

/* ── Organizer navigation ─────────────────────────────────── */
.organizer-navigation {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.org-nav-previous,
.org-nav-next {
  flex: 1;
}

.org-nav-previous .no-term,
.org-nav-next .no-term {
  display: block;
  padding: 14px 24px;
  background: var(--zozo-bg-2);
  border-radius: var(--zozo-radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--zozo-text-light);
  text-align: center;
}

.org-nav-previous a,
.org-nav-next a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--zozo-dark);
  border-radius: var(--zozo-radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--zozo-white);
  text-decoration: none;
  transition: background var(--zozo-duration) var(--zozo-ease),
              box-shadow var(--zozo-duration) var(--zozo-ease);
}

.org-nav-previous a:hover,
.org-nav-next a:hover {
  background: var(--zozo-primary-dark);
  box-shadow: var(--zozo-shadow-md);
}

.org-nav-next a .arrow {
  font-size: 18px;
  line-height: 1;
}
.organizer-bottom-content{
    display:grid;
    grid-template-columns:1fr 430px;
    gap:40px;
    align-items:start;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .organizer-profile-wrap {
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
  }

  .organizer-additional-box.skills-box {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .organizer-profile-wrap {
    grid-template-columns: 1fr;
  }

  .organizer-thumb {
    aspect-ratio: 16 / 9;
    max-height: 240px;
  }

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

  .organizer-navigation {
    flex-direction: column;
  }
}


.location-container{
    padding: 40px 20px;
    margin: 0 auto;
}
.location-container.no-sidebar{
    max-width:1300px;
}

.location-container.has-sidebar{
    max-width:1500px;
}


.zozo-location-profile-wrap{
    background:var(--zozo-white);
    border-radius:var(--zozo-radius-lg);
    padding:30px;
    box-shadow:var(--zozo-shadow-md);
    display:grid;
    align-items: center;
    grid-template-columns:420px 1fr;
    gap:40px;
    margin-bottom:30px;
}

.location-thum{
    height:560px;
    border-radius:var(--zozo-radius-md);
    overflow:hidden;
}

.location-thum img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zozo-location-details{
    display:grid;
    grid-template-columns:repeat(2,minmax(240px,1fr));
    gap:28px 35px;
    list-style:none;
    margin:0;
    padding:0;
}

.location-name,
.location-description{
    grid-column:1/-1;
}

.location-name h1{
    font-size:56px;
    font-weight:800;
    line-height:1;
    margin:0;
    color:var(--zozo-dark);
}

.location-name h1:after{
    content:"";
    display:block;
    width:52px;
    height:4px;
    background:var(--zozo-primary);
    border-radius:var(--zozo-radius-pill);
    margin-top:16px;
}

.location-description{
    font-size:15px;
    line-height:1.8;
    color:var(--zozo-text);
    max-width:650px;
    margin-bottom:10px;
}

.meta-icon{
    width:44px;
    height:44px;
    border-radius:var(--zozo-radius-sm);
    background:var(--zozo-primary-light);
    color:var(--zozo-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
    transition:all var(--zozo-duration) var(--zozo-ease);
}

.location-meta-item:hover .meta-icon{
    background:var(--zozo-primary);
    color:var(--zozo-white);
    box-shadow:var(--zozo-shadow-glow);
}

.location-meta-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.meta-content{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.meta-label{
    display:block;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--zozo-text-light);
    line-height:1;
}

.meta-value{
    display:block;
    font-size:15px;
    font-weight:700;
    color:var(--zozo-dark);
    line-height:1.4;
}

.location-map-button-wrap{
    list-style:none;
}

.location-map-btn{
    grid-column:1/-1;
    margin-top:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:max-content;
    padding:14px 24px;
    background:var(--zozo-primary);
    color:var(--zozo-white);
    border-radius:var(--zozo-radius-md);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:all var(--zozo-duration) var(--zozo-ease);
}

.location-map-btn:hover{
    background:var(--zozo-primary-dark);
    color:var(--zozo-white);
    transform:translateY(-2px);
    box-shadow:var(--zozo-shadow-md);
}

.location-map-btn i{
    font-size:14px;
}

.location-section-title{
    align-items:center;
    gap:10px;
    margin:0 0 20px;
    font-size:28px;
    font-weight:800;
    color:var(--zozo-dark);
}

.location-section-title i{
    color:var(--zozo-primary);
    font-size:24px;
}

.location-section-title:after{
    content:"";
    display:block;
    width:50px;
    height:4px;
    background:var(--zozo-primary);
    margin-top:12px;
    border-radius:var(--zozo-radius-pill);
}

.zozo-location-map-wrap{
    margin-bottom:28px;
}

.location-map{
    grid-column:1/-1;
    margin-top:15px;
}

.location-map:before{
    content:"Location Overview";
    display:block;
    font-size:28px;
    font-weight:800;
    color:var(--zozo-dark);
    margin-bottom:20px;
}

.location-map:after{
    content:"";
    display:block;
    width:40px;
    height:4px;
    background:var(--zozo-primary);
    margin-top:-10px;
    margin-bottom:20px;
    border-radius:var(--zozo-radius-pill);
}

.location-map iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:var(--zozo-radius-md);
    overflow:hidden;
    box-shadow:var(--zozo-shadow-sm);
}

.zozo-location-events{
    background:var(--zozo-white);
    padding:30px;
    border-radius:var(--zozo-radius-lg);
    box-shadow:var(--zozo-shadow-md);
}

.zozo-location-events h2{
    font-size:22px;
    font-weight:800;
    color:var(--zozo-dark);
    margin:0 0 20px;
    letter-spacing:-0.01em;
}

.zozo-location-events h2:after{
    content:"";
    display:block;
    width:50px;
    height:4px;
    background:var(--zozo-primary);
    margin-top:12px;
    border-radius:var(--zozo-radius-pill);
}


.organizer-events-grid,
.location-events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.org-event-card,
.location-event-card{
    background:var(--zozo-white);
    border:1px solid var(--zozo-border-soft);
    border-radius:var(--zozo-radius-md);
    overflow:hidden;
    transition:all var(--zozo-duration) var(--zozo-ease);
}

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

.org-event-thumb img,
.loc-event-thumb img img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.loc-event-thumb {
    width:100%;
}

.loc-event-thumb img{
    width:145px;
    height:220px;
    object-fit: cover;
}

.term-navigation{
    display:flex;
    gap:16px;
    margin-top:24px;
}

.tax-nav-previous,
.tax-nav-next{
    flex:1;
}

.tax-nav-previous .no-term,
.tax-nav-next .no-term{
    display:block;
    padding:14px 24px;
    background:var(--zozo-bg-2);
    border-radius:var(--zozo-radius-md);
    font-size:14px;
    font-weight:600;
    color:var(--zozo-text-light);
    text-align:center;
}

.tax-nav-previous a,
.tax-nav-next a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 24px;
    background:var(--zozo-dark);
    border-radius:var(--zozo-radius-md);
    font-size:14px;
    font-weight:700;
    color:var(--zozo-white);
    text-decoration:none;
    transition:
        background var(--zozo-duration) var(--zozo-ease),
        box-shadow var(--zozo-duration) var(--zozo-ease),
        transform var(--zozo-duration) var(--zozo-ease);
}

.tax-nav-previous a:hover,
.tax-nav-next a:hover{
    background:var(--zozo-primary-dark);
    box-shadow:var(--zozo-shadow-md);
    transform:translateY(-2px);
}

.tax-nav-previous .arrow,
.tax-nav-next .arrow{
    font-size:18px;
    line-height:1;
}

.tax-nav-previous .title,
.tax-nav-next .title{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

@media (max-width:768px){

    .term-navigation{
        flex-direction:column;
    }

}
.zozo-event-sidebar .widget{
    background:var(--zozo-white);
    border-radius:var(--zozo-radius-md);
    margin-bottom:24px;
}

.zozo-event-sidebar .widget-title{
    font-size:18px;
    font-weight:800;
    color:var(--zozo-dark);
}

.zozo-event-sidebar .widget-title:after{
    content:"";
    display:block;
    width:35px;
    height:3px;
    background:var(--zozo-primary);
    margin-top:10px;
    border-radius:var(--zozo-radius-pill);
}

/* speaker-styles */
.speaker-container {
    margin: 0 auto;
    padding: 50px 24px;
    justify-content: center;
}
.speaker-container.no-sidebar{
    max-width:1300px;
}

.speaker-container.has-sidebar{
    max-width:1900px;
}
.speaker-row{
    justify-content: center;
}
.speaker-profile-wrap{
    display:grid;
    grid-template-columns:435px 1fr;
    gap:40px;
    align-items:stretch;
}

.speaker-thumb-area{
    height:100%;
}

.speaker-thumb{
    height:100%;
    border-radius:var(--zozo-radius-md);
    overflow:hidden;
}

.speaker-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.speaker-content-area{
    display:flex;
    flex-direction:column;
}

.speaker-top-content{
    margin-bottom:20px;
}

.speaker-name{
    font-size:clamp(26px,3vw,38px);
    font-weight:800;
    color:var(--zozo-dark);
    line-height:1.15;
    margin:0 0 10px;
}

.speaker-name::after{
    content:"";
    display:block;
    width:44px;
    height:3px;
    background:var(--zozo-primary);
    border-radius:999px;
    margin-top:10px;
}

.speaker-designation{
    background:var(--zozo-primary-light);
    color:var(--zozo-dark);
    display:flex;
    align-items:center;
    gap:6px;
    width:fit-content;
    padding:6px 14px 6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    margin-bottom:16px;
}

.speaker-designation::before{
    content:"★";
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--zozo-primary);
    color:#fff;
    font-size:11px;
}
.speaker-description{
    font-size:14px;
    line-height:1.65;
    color:var(--zozo-text);
    max-width:380px;
}
.speaker-bottom-content{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:40px;
    align-items:start;
}

.speaker-meta-box{
    padding-right:40px;
    border-right:1px solid var(--zozo-border-soft);
}

.speaker-meta{
    list-style:none;
    margin:0 0 22px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.speaker-meta-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.speaker-meta-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--zozo-primary-light);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--zozo-primary-dark);
    flex-shrink:0;
}

.speaker-meta-item:hover .speaker-meta-icon{
    background:var(--zozo-primary);
    color:#fff;
}

.speaker-meta-content{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.speaker-meta-label{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--zozo-text-light);
}

.speaker-meta-value{
    font-size:14px;
    font-weight:600;
    color:var(--zozo-dark);
}
.speaker-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.speaker-socials{
    display:flex;
    gap:10px;
}

.speaker-socials a{
    width:44px;
    height:44px;
    border:1.5px solid var(--zozo-border-soft);
    border-radius:var(--zozo-radius-sm);
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--zozo-dark-muted);
    transition:.25s;
}

.speaker-socials a:hover{
    border-color:var(--zozo-primary);
    color:var(--zozo-primary-dark);
}

.speaker-skills-box{
    min-width:260px;
    padding-left:20px;
}

.speaker-skills-title{
    font-size:18px;
    font-weight:800;
    color:var(--zozo-dark);
    margin:0 0 14px;
}

.speaker-skills-title::after{
    content:"";
    display:block;
    width:32px;
    height:3px;
    background:var(--zozo-primary);
    border-radius:999px;
    margin-top:8px;
}

.speaker-skills-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.speaker-skill-item{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 14px;
    border-radius:var(--zozo-radius-md);
    border:1.5px solid var(--zozo-border-soft);
    background:var(--zozo-bg);
    font-size:13px;
    font-weight:600;
    color:var(--zozo-dark);
}

.speaker-skill-item::before{
    content:"";
    width:28px;
    height:28px;
    border-radius:10px;
    background:var(--zozo-primary-light);
    border:1.5px solid rgba(16,185,129,.2);
    flex-shrink:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:center;
    background-size:14px;
}
.speaker-navigation{
    display:flex;
    gap:16px;
    margin-top:30px;
}

.speaker-nav-previous,
.speaker-nav-next{
    flex:1;
}

.speaker-nav-previous .no-term,
.speaker-nav-next .no-term{
    display:block;
    padding:14px 24px;
    background:var(--zozo-bg-2);
    border-radius:var(--zozo-radius-md);
    font-size:14px;
    font-weight:600;
    color:var(--zozo-text-light);
    text-align:center;
}

.speaker-nav-previous a,
.speaker-nav-next a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 24px;
    background:var(--zozo-dark);
    border-radius:var(--zozo-radius-md);
    font-size:14px;
    font-weight:700;
    color:var(--zozo-white);
    text-decoration:none;
    transition:
        background var(--zozo-duration) var(--zozo-ease),
        box-shadow var(--zozo-duration) var(--zozo-ease);
}

.speaker-nav-previous a:hover,
.speaker-nav-next a:hover{
    background:var(--zozo-primary-dark);
    box-shadow:var(--zozo-shadow-md);
    color:var(--zozo-white);
}

.speaker-nav-previous .arrow,
.speaker-nav-next .arrow{
    font-size:18px;
    line-height:1;
    flex-shrink:0;
}

.speaker-nav-previous .title,
.speaker-nav-next .title{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.speaker-nav-previous a{
    justify-content:flex-start;
}


.speaker-bottom-content{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:40px;
    align-items:start;
}

.speaker-meta-box{
    padding-right:40px;
    border-right:1px solid var(--zozo-border-soft);
}

.speaker-skills-box{
    padding-left:20px;
}
/* Taxnomy-single-styles */

.zozo-taxonomy-card{
    position:relative;
    overflow:hidden;
    align-items:center;
    gap:80px;
    padding:80px;
    border-radius:40px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafc 50%,
            #f1f5f9 100%
        );
    box-shadow:
        0 40px 100px rgba(15,23,42,.08);
    margin-bottom:80px;
}
.zozo-taxonomy-card.has-media{
    display:grid;
    grid-template-columns:minmax(0,1fr) 520px;
    gap:60px;
    align-items:center;
}

.zozo-taxonomy-card.no-media{
    display:block;
}

.zozo-taxonomy-card.no-media .zozo-taxonomy-content{
    max-width:100%;
}
/* category label */
.zozo-taxonomy-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    padding:10px 18px;
    border-radius:999px;
    background:var(--zozo-primary-light);
    color:var(--zozo-primary-dark);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
/* title */

.zozo-taxonomy-title{
    font-size:88px;
    line-height:.95;
    font-weight:900;
    color:#0f172a;
    margin-bottom:25px;
    letter-spacing:-4px;
}

/* count */

.zozo-taxonomy-count{
    display: block;
    margin-top: 25px;
    margin-left: 0;
    width: max-content;
    padding: 3px 8px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 3px;
    background: var(--zozo-primary);
    color: #fff;
}
.zozo-taxonomy-count:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: .9;
    flex-shrink: 0;
    display: inline-block;
    margin: 0px 3px 1px 0px;
}
/* description */

.zozo-taxonomy-description{
    margin-top:25px;
    font-size:20px;
    line-height:1.9;
    color:#64748b;
}

/* image side */

.zozo-taxonomy-media{
    position:relative;
}

.zozo-taxonomy-image img{
    width:100%;
    object-fit:cover;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:
        0 40px 80px rgba(0,0,0,.15);
}
.zozo-taxonomy-events-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:40px;
}

.zozo-taxonomy-events-title{
    margin:0;
    font-size:42px;
    font-weight:800;
    color:var(--zozo-dark);
}

.zozo-taxonomy-events-filter{
    margin-left:auto;
}

.zozo-taxonomy-events-filter select{
    min-width:220px;
    height:52px;
    padding:0 18px;
    border:1px solid var(--zozo-border-soft);
    border-radius:14px;
    background:#fff;
    color:var(--zozo-dark);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    box-shadow:var(--zozo-shadow-xs);
}
.zozo-no-events-message{
    margin-top:40px;
}

.zozo-empty-state{
    text-align:center;
    padding:70px 40px;
    margin-bottom: 20px;
    background:#fff;
    border:1px solid var(--zozo-border-soft);
    border-radius:24px;
    box-shadow:var(--zozo-shadow-sm);
}

.zozo-empty-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    margin-bottom:20px;
    border-radius:50%;
    background:var(--zozo-primary-light);
    color:var(--zozo-primary);
    font-size:32px;
}

.zozo-empty-title{
    margin:0 0 10px;
    font-size:24px;
    font-weight:700;
    color:var(--zozo-dark);
}

.zozo-empty-desc{
    margin:0;
    color:var(--zozo-text);
    font-size:15px;
}
@media(max-width:767px){

    .zozo-taxonomy-events-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .zozo-taxonomy-events-filter{
        width:100%;
    }

    .zozo-taxonomy-events-filter select{
        width:100%;
    }
}
@media(max-width:991px){

    .zozo-taxonomy-card{
        grid-template-columns:1fr;
        padding:40px;
    }

    .zozo-taxonomy-title{
        font-size:54px;
    }

    .zozo-taxonomy-image img{
        height:320px;
    }
}

/* Related-events-styles */

.zozo-related-events-section{
    margin-top:60px;
}

.zozo-related-events-section .subhead{
    margin-bottom:30px;
}

.zozo-related-events-section h2{
    font-family: var(--zozo-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--zozo-dark);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.zozo-related-events-section .event-card{
    height:100%;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--zozo-border-soft);
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
    transition:all .35s ease;
}

.zozo-related-events-section .event-card:hover{
    border-color:var(--zozo-primary);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Image */

.zozo-related-events-section .loc-event-thumb{
    position:relative;
    overflow:hidden;
    height:240px;
}

.zozo-related-events-section .loc-event-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}

.zozo-related-events-section .event-card:hover .loc-event-thumb img{
    transform:scale(1.08);
}

.zozo-related-events-section .event-details{
    padding:24px;
}
.related-grid-gap{
    margin-bottom: 20px;
}
/* Date */

.zozo-related-events-section .event-details small{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    color:var(--zozo-primary);
    font-size:.85rem;
    font-weight:600;
}

.zozo-related-events-section .event-details small i{
    font-size:.9rem;
}

/* Title */

.zozo-related-events-section .event-details h3{
    margin:0 0 12px;
    font-size:1.15rem;
    line-height:1.45;
    font-weight:700;
}

.zozo-related-events-section .event-details h3 a{
    color:var(--zozo-dark);
    text-decoration:none;
    transition:.3s;
}

.zozo-related-events-section .event-details h3 a:hover{
    color:var(--zozo-primary);
}

/* Excerpt */

.zozo-related-events-section .event-details p{
    margin:0;
    color:var(--zozo-text);
    line-height:1.7;
    font-size:.95rem;
}

/* Swiper */

.zozo-related-events-swiper{
    padding-bottom:60px;
}

.zozo-related-events-swiper .swiper-slide{
    height:auto;
}

/* Navigation */

.zozo-related-events-swiper .swiper-button-prev,
.zozo-related-events-swiper .swiper-button-next{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    border:1px solid var(--zozo-border-soft);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.zozo-related-events-swiper .swiper-button-prev:hover,
.zozo-related-events-swiper .swiper-button-next:hover{
    background:var(--zozo-primary);
    border-color:var(--zozo-primary);
}

.zozo-related-events-swiper .swiper-button-prev::after,
.zozo-related-events-swiper .swiper-button-next::after{
    font-size:16px;
    font-weight:700;
    color:var(--zozo-dark);
}

.zozo-related-events-swiper .swiper-button-prev:hover::after,
.zozo-related-events-swiper .swiper-button-next:hover::after{
    color:#fff;
}

/* Pagination */

.zozo-related-events-swiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#cbd5e1;
    opacity:1;
}

.zozo-related-events-swiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:999px;
    background:var(--zozo-primary);
}

/* Responsive */

@media (max-width:991px){

    .zozo-related-events-section .loc-event-thumb{
        height:220px;
    }

}

@media (max-width:767px){

    .zozo-related-events-section .loc-event-thumb{
        height:200px;
    }

    .zozo-related-events-section .event-details{
        padding:20px;
    }

    .zozo-related-events-swiper .swiper-button-prev,
    .zozo-related-events-swiper .swiper-button-next{
        display:none;
    }

}
/* Readmore-btn-styles */
.zozo-readmore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:auto;
    max-width:max-content;
    padding:12px 22px;
    margin-top:18px;
    background:linear-gradient(
        180deg,
        #10b981,
        #059669
    );
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    line-height:1;
    text-decoration:none;
    border-radius:8px;
    box-shadow:
        0 6px 18px rgba(16,185,129,.25);
    transition:all .3s ease;
}

.zozo-readmore-btn:hover{
    color:#fff !important;
    transform:translateY(-2px);
}

.zozo-readmore-btn i{
    font-size:12px;
    transition:.3s;
}

.zozo-readmore-btn:hover i{
    transform:translateX(4px);
}
.zozo-archive-grid .zozo-event-card-inner .zozo-readmore-btn{
    margin-top: 0;
}

/* ticket-booking-widget */

.zozo-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--zozo-border-color);
}

.zozo-ticket-row:last-child {
    margin-bottom: 0;
}

.zozo-ticket-row span {
    font-size: 14px;
    font-weight: 600;
    color: var(--zozo-text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.zozo-ticket-row strong {
    color: var(--zozo-text-color);
    font-size: 18px;
    font-weight: 700;
}

.zozo-ticket-available {
    color: var(--zozo-primary);
}

.zozo-ticket-price {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--zozo-primary) !important;
}

.zozo-ticket-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.zozo-ticket-minus,
.zozo-ticket-plus {
    width: 48px;
    height: 48px;
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-pill);
    background: var(--zozo-bg-color);
    color: var(--zozo-text-color);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--zozo-transition);
}

.zozo-ticket-minus:hover,
.zozo-ticket-plus:hover {
    background: var(--zozo-primary);
    color: var(--zozo-white);
    border-color: var(--zozo-primary);
    transform: translateY(-2px);
    box-shadow: var(--zozo-shadow-glow);
}

.zozo-ticket-qty {
    width: 90px;
    height: 48px;
    text-align: center;
    border: 1px solid var(--zozo-border-color);
    border-radius: var(--zozo-radius-pill);
    background: var(--zozo-bg-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--zozo-text-color);
}

.zozo-ticket-qty:focus {
    outline: none;
    border-color: var(--zozo-primary);
    box-shadow: 0 0 0 4px var(--zozo-primary-ring);
}

.zozo-ticket-subtotal-wrap {
    margin-top: 20px;
    padding: 22px;
    border-radius: var(--zozo-radius-md);
    background: linear-gradient(
        135deg,
        var(--zozo-primary-light),
        rgba(16,185,129,.05)
    );
    border: 1px solid var(--zozo-border);
}

.zozo-ticket-subtotal-wrap .label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zozo-text-light);
    text-transform: uppercase;
}

.zozo-ticket-subtotal {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: var(--zozo-primary-dark);
}
.book-ticket-btn-wrapper{
    text-align: center;
}
.zozo-book-ticket-btn {
    width: 100%;
    margin-top: 25px;
    height: 58px;
    border: 0;
    border-radius: var(--zozo-radius-pill);
    background: var(--zozo-btn-bg);
    color: var(--zozo-btn-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--zozo-transition);
    box-shadow: var(--zozo-shadow-md);
    padding: 11px;
    margin: 0 30px 0 30px;
    text-decoration: none;
}

.zozo-book-ticket-btn:hover {
    background: var(--zozo-btn-hover);
    transform: translateY(-3px);
    box-shadow: var(--zozo-shadow-glow);
    color: var(--zozo-text-white);
}

.zozo-book-ticket-btn:active {
    transform: translateY(0);
    background: var(--zozo-btn-active);
}

.zozo-sold-out-btn {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: var(--zozo-radius-pill);
    background: #ef4444;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
}

.zozo-ticket-progress {
    margin-top: 18px;
}

.zozo-ticket-progress-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--zozo-bg-2);
    overflow: hidden;
    margin-bottom: 15px;
}

.zozo-ticket-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--zozo-primary),
        var(--zozo-primary-hover)
    );
}

/* Booking-related-styles */

.zozo-booking-close{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:var(--zozo-bg);
    color:var(--zozo-dark);
    font-size:24px;
    cursor:pointer;
    transition:var(--zozo-transition);
}
.zozo-calendar-booking{
    padding:40px;
    font-family:var(--zozo-font);
}

.zozo-calendar-booking h3{
    margin:0 0 30px;
    font-size:34px;
    font-weight:800;
    color:var(--zozo-dark);
}

.zozo-ticket-summary{
    display:grid;
    gap:16px;
    margin-bottom:30px;
}

.zozo-ticket-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    border:1px solid var(--zozo-border);
    border-radius:14px;
    background:var(--zozo-bg-light);
}

.zozo-ticket-summary-row span{
    color:var(--zozo-text);
    font-weight:600;
}

.zozo-ticket-summary-row strong{
    color:var(--zozo-dark);
    font-size:18px;
    font-weight:800;
}

.zozo-ticket-summary-row.total{
    background:var(--zozo-primary-light);
    border-color:var(--zozo-primary);
}

.zozo-ticket-summary-row.total strong{
    font-size:24px;
    color:var(--zozo-primary-dark);
}

.zozo-ticket-qty-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin:35px 0;
}

.zozo-ticket-qty-wrap button{
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:var(--zozo-primary);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    transition:var(--zozo-transition);
    box-shadow:var(--zozo-shadow-sm);
}

.zozo-ticket-qty-wrap button:hover{
    background:var(--zozo-primary-hover);
    transform:translateY(-2px);
}

.zozo-ticket-qty-wrap input{
    width:90px;
    height:54px;
    border:1px solid var(--zozo-border);
    border-radius:14px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    background:#fff;
    color:var(--zozo-dark);
}

.zozo-proceed-booking{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin-top:25px;
    height:58px;
    border-radius:16px;
    background:var(--zozo-primary);
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:var(--zozo-transition);
    box-shadow:var(--zozo-shadow-md);
}

.zozo-proceed-booking:hover{
    background:var(--zozo-primary-hover);
    transform:translateY(-3px);
    box-shadow:var(--zozo-shadow-glow);
    color: #fff;
}

.zozo-available{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--zozo-primary-dark);
    font-weight:700;
}

.zozo-available::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--zozo-primary);
}
/* Booking Modal */

/*--------------------------------------------------------------
# Booking Modal
--------------------------------------------------------------*/

.zozo-booking-modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:40px;
    background:rgba(8,12,22,.55);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    animation:zozoFade .25s ease;
}

.zozo-booking-modal.active{
    display:flex;
}

@keyframes zozoFade{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

.zozo-booking-modal-content{
    position:relative;
    width:100%;
    max-width:650px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.45);
    border-radius:28px;
    box-shadow:
    0 40px 100px rgba(0,0,0,.22),
    0 8px 30px rgba(16,185,129,.08);
    overflow:hidden;
    animation:bookingPopup .35s cubic-bezier(.2,.9,.3,1);
    max-height:90vh;
    overflow-y:auto;
}

@keyframes bookingPopup{

    from{
        opacity:0;
        transform:translateY(40px) scale(.95);
    }
    to{
        opacity:1;
        transform:none;
    }

}

.zozo-booking-close{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);
    cursor:pointer;
    font-size:24px;
    color:var(--zozo-dark);
    transition:.3s;
    z-index:20;
}

.zozo-booking-close:hover{
    background:red;
    color:#fff;
}

@media(max-width:767px){

    .zozo-booking-modal{
        padding:20px;
    }

    .zozo-booking-modal-content{
        max-width:100%;
        border-radius:20px;
    }

}
.main-sche-prev,
.main-sche-next{
    position: absolute;
    top: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--zozo-white);
    border: 1px solid var(--zozo-border-soft);
    box-shadow: var(--zozo-shadow-sm);
}
.main-schedule-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}
.main-schedule-slider .swiper-pagination-bullet-active{
    width: 28px;
    border-radius: 999px;
    background: var(--zozo-primary);
}
.main-sche-prev:after, .main-sche-next:after{
    font-size: 25px;
    color: #000000;
} 