/* =====================================================
   CZORS SIDEBAR
===================================================== */

.czors-sidebar {
    width: 300px;
    background: linear-gradient(180deg, #101820, #050b10);
    border-right: 1px solid var(--czors-border);
    color: #fff;
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}

/* =====================================================
   LOGO
===================================================== */

.czors-brand {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
}

.czors-brand span span,
.czors-mobile-logo span {
    color: var(--czors-primary);
}

/* =====================================================
   USER PROFILE
===================================================== */

.czors-user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--czors-border);
}

.czors-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--czors-soft-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--czors-primary);
    font-weight: 900;
    font-size: 22px;
}

.czors-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.czors-user-card h4 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.czors-user-card p {
    margin: 4px 0;
    color: var(--czors-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.czors-user-card small {
    display: inline-block;
    margin-top: 3px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(242,140,40,.12);
    color: var(--czors-primary);
    font-size: 11px;
    font-weight: 700;
}

/* =====================================================
   MENU HEADINGS
===================================================== */

.czors-menu p {
    margin: 24px 10px 10px;
    color: rgba(255,255,255,.42);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =====================================================
   MENU LINKS
===================================================== */

.czors-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 6px;
    border-radius: 14px;
    color: rgba(255,255,255,.82);
    transition: all .25s ease;
    position: relative;
}

.czors-menu a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke-width: 2.2;
    transition: .25s ease;
}

.czors-menu a span {
    flex: 1;
}


/* =====================================================
   MENU - messenger css
===================================================== */
.czors-header-messages-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.czors-header-messages-icon .czm-global-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    line-height: 17px;
    text-align: center;
    z-index: 2;
}
/* =====================================================
   HOVER
===================================================== */

.czors-menu a:hover {
    transform: translateX(6px);
    background: rgba(242,140,40,.12);
    color: #fff;
}

.czors-menu a:hover svg {
    color: var(--czors-primary);
    transform: scale(1.12);
}

/* =====================================================
   ACTIVE MENU
===================================================== */

.czors-menu a.active {
    background: linear-gradient(90deg, #f28c28, #c96d12);
    color: #fff;
    box-shadow: 0 12px 28px rgba(242,140,40,.28);
}

.czors-menu a.active svg {
    transform: scale(1.08);
}

/* =====================================================
   LOGOUT
===================================================== */

.czors-menu a.logout {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--czors-border);
    border-radius: 0;
    color: #ff8d8d;
}

.czors-menu a.logout:hover {
    background: rgba(239,68,68,.12);
    color: #ffb4b4;
}


/* =========================================================
   CZORS MARKETPLACE HOME
========================================================= */

.czors-marketplace-home {
    --czors-home-bg: #050505;
    --czors-home-surface: #0b0b0b;
    --czors-home-border: rgba(255, 255, 255, 0.11);
    --czors-home-text: #94a3b8;
    --czors-home-muted: #a7a7a7;
    --czors-home-orange: #ff8a18;

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 98px;
    background: var(--czors-home-bg);
    color: var(--czors-home-text);
}

.czors-marketplace-content {
    width: 100%;
    margin: 0 auto;
}

/* Remove accidental Elementor spacing around shortcode */
.czors-marketplace-home section {
    box-sizing: border-box;
}


/* =========================================================
   CZORS HOME — SECTION UTILITY
   ========================================================= */

.czors-section{
    width:100%;
    margin-bottom:36px;
}

.czors-section:last-child{
    margin-bottom:0;
}

@media (max-width:1024px){

    .czors-section{
        margin-bottom:30px;
    }

}

@media (max-width:600px){

    .czors-section{
        margin-bottom:24px;
    }

}

/* =========================================================
   LOGIN REQUIRED
========================================================= */

.czors-home-login-required {
    max-width: 520px;
    margin: 70px auto;
    padding: 36px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: #0b0b0b;
    color: #fff;
    text-align: center;
}

.czors-home-login-required h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.czors-home-login-required p {
    margin: 0 0 22px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

.czors-home-login-required a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    background: #ff8a18;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
}

/* =========================================================
   CZORS BOTTOM NAVIGATION
========================================================= */

.czors-app-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    padding:
        8px
        max(10px, env(safe-area-inset-right))
        calc(8px + env(safe-area-inset-bottom))
        max(10px, env(safe-area-inset-left));
    pointer-events: none;
}

.czors-app-bottom-nav-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(620px, 100%);
    min-height: 68px;
    margin: 0 auto;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(14, 14, 14, 0.96);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
}

.czors-app-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 56px;
    padding: 7px 4px;
    border-radius: 16px;
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.czors-app-nav-item:hover {
    color: #fff !important;
}

.czors-app-nav-item:active {
    transform: scale(0.96);
}

.czors-app-nav-icon {
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    
}

.czors-app-nav-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.czors-app-nav-label {
    overflow: hidden;
    max-width: 100%;
    font-size: 10px;
    font-weight: 750;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    
}

.czors-app-nav-item.is-active {
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 138, 24, 0.22),
            transparent 68%
        );
    color: #ff8a18 !important;
}

.czors-app-nav-item.is-active::before {
    position: absolute;
    top: 1px;
    left: 50%;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: #ff8a18;
    box-shadow: 0 0 14px rgba(255, 138, 24, 0.75);
    content: "";
    transform: translateX(-50%);
}

/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 768px) {
    .czors-marketplace-home {
        padding-bottom: 32px;
    }

    /*
     * Mobile navigation is hidden on desktop for now.
     * Your desktop header/navigation can remain unchanged.
     */
    .czors-app-bottom-nav {
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .czors-app-bottom-nav {
        padding-right: 6px;
        padding-left: 6px;
    }

    .czors-app-bottom-nav-inner {
        min-height: 64px;
        border-radius: 20px;
    }

    .czors-app-nav-item {
        min-height: 52px;
        padding-right: 2px;
        padding-left: 2px;
    }

    .czors-app-nav-label {
        font-size: 9px;
    }
}
/* =========================================================
   MARKETPLACE HEADER
========================================================= */

.czors-home-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #050505;
}

.czors-home-logo {
    display: inline-flex;
    flex-shrink: 0;
}

.czors-home-logo img {
    display: block;
    width: auto;
    height: 38px;
}

.czors-home-desktop-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.czors-home-desktop-menu a,
.czors-home-menu-disabled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    color: #b7b7b7;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease;
}

.czors-home-desktop-menu a:hover {
    background: rgba(255,138,24,.1);
    color: #ff8a18;
}

.czors-home-desktop-menu svg,
.czors-home-menu-disabled svg {
    width: 18px;
    height: 18px;
}

.czors-home-menu-disabled {
    cursor: not-allowed;
    opacity: .55;
}

.czors-home-menu-disabled small {
    padding: 3px 6px;
    border: 1px solid rgba(255,138,24,.45);
    border-radius: 999px;
    color: #ff8a18;
    font-size: 8px;
    line-height: 1;
    text-transform: uppercase;
}

.czors-home-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.czors-home-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: #fff;
    text-decoration: none;
}

.czors-home-bell svg {
    width: 21px;
    height: 21px;
}

.czors-home-bell .czors-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border: 2px solid #050505;
    border-radius: 999px;
    background: #ff8a18;
    color: #080808;
    font-size: 10px;
    font-weight: 900;
}

.czors-home-bell .czors-notification-badge.is-hidden {
    display: none;
}

.czors-home-profile {
    display: block;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 2px solid #ff8a18;
    border-radius: 50%;
    background: #151515;
}

.czors-home-profile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   MOBILE FOOTER NAVIGATION
========================================================= */

.czors-home-mobile-nav {
    display: none;
}

@media (max-width: 767px) {
    .czors-marketplace-home {
        padding-bottom: 92px;
    }

    .czors-home-header {
        gap: 10px;
        padding: 14px 16px;
    }

    .czors-home-logo img {
        height: 32px;
    }

    .czors-home-desktop-menu {
        display: none;
    }

    .czors-home-header-actions {
        margin-left: auto;
    }

    .czors-home-bell {
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
    }

    .czors-home-profile {
        width: 42px;
        height: 42px;
    }

    .czors-home-mobile-nav {
        position: fixed;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        left: 10px;
        z-index: 9999;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: 68px;
        padding: 6px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 22px;
        background: rgba(14,14,14,.96);
        box-shadow: 0 18px 50px rgba(0,0,0,.5);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .czors-home-mobile-nav a,
    .czors-home-mobile-nav button {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
        min-width: 0;
        padding: 7px 2px;
        border: 0;
        border-radius: 16px;
        background: transparent;
        color: #94a3b8;
        font-family: inherit;
        text-decoration: none;
        cursor: pointer;
    }

    .czors-home-mobile-nav svg {
        width: 21px;
        height: 21px;
    }

    .czors-home-mobile-nav span {
        overflow: hidden;
        max-width: 100%;
        font-size: 9px;
        font-weight: 800;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .czors-home-mobile-nav .is-active {
        color: #ff8a18;
        background:
            radial-gradient(
                circle at 50% 100%,
                rgba(255,138,24,.2),
                transparent 70%
            );
    }

    .czors-home-mobile-nav .is-active::before {
        position: absolute;
        top: 0;
        left: 50%;
        width: 24px;
        height: 3px;
        border-radius: 999px;
        background: #ff8a18;
        content: "";
        transform: translateX(-50%);
    }
}
.czors-desktop-nav{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

.czors-desktop-nav a,
.czors-desktop-nav .coming-soon{

    color:#d8d8d8;
    text-decoration:none;

    font-size:14px;
    font-weight:700;

    padding:11px 16px;

    border-radius:12px;

    transition:.25s;
}

.czors-desktop-nav a:hover{

    background:rgba(255,138,24,.12);
    color:#ff8a18;

}

.coming-soon{

    opacity:.65;
    cursor:not-allowed;

}

.coming-soon small{

    margin-left:8px;

    background:#ff8a18;

    color:#000;

    padding:3px 7px;

    border-radius:999px;

    font-size:9px;

}

.czors-bell{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

}

.czors-bell .czors-notification-badge{

    position:absolute;

    top:-6px;

    right:-8px;

}

@media(max-width:768px){

    .czors-desktop-nav{

        display:none;

    }

}

/* =========================================================
   CZORS GLOBAL MOBILE HEADER
========================================================= */

.czors-mobile-header {
    display: none;
}


@media (max-width: 900px) {

    .czors-mobile-header {
        display: block;

        width: 100%;

        background: #0b1117;

        border-bottom:
            1px solid rgba(255,255,255,.07);
    }


    .czors-mobile-header__inner {
        display: flex;

        min-height: 72px;

        padding: 11px 16px;

        align-items: center;
        justify-content: space-between;

        gap: 12px;
    }


    /* LOGO */

    .czors-mobile-header__logo {
        display: inline-flex;
        align-items: center;

        flex: 0 0 auto;
    }

    .czors-mobile-header__logo img {
        display: block;

        width: auto;
        height: 38px;

        max-width: 130px;
    }


    /* ACTIONS */

    .czors-mobile-header__actions {
        display: flex;

        margin-left: auto;

        align-items: center;

        gap: 8px;
    }


 /* =========================================
   MOBILE NOTIFICATION ICON
========================================= */

.czors-mobile-header__notification {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    color: #fff;
    text-decoration: none;

    background: transparent;
    border: 0;
    border-radius: 0;
}

.czors-mobile-header__notification svg {
    width: 25px;
    height: 25px;
    stroke-width: 2;
}
.czors-mobile-header__notification
.czors-notification-badge {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 999px;

    background: #ef4444;
    color: #fff;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    border: 2px solid #0b1117;
}

    /* PROFILE */

    .czors-mobile-header__profile {
        display: grid;

        width: 46px;
        height: 46px;

        padding: 0;

        place-items: center;

        overflow: hidden;

        cursor: pointer;

        background: #151b22;

        border: 2px solid #f28c28;
        border-radius: 50%;
    }

    .czors-mobile-header__profile img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .czors-mobile-header__profile svg {
        width: 19px;
        height: 19px;

        color: #ffffff;
    }


    /* SIGN UP */

    .czors-mobile-header__signup {
        min-height: 38px;

        display: inline-flex;

        padding: 0 15px;

        align-items: center;
        justify-content: center;

        color: #16100a;

        text-decoration: none;

        background: #f28c28;

        border-radius: 999px;

        font-size: 12px;
        font-weight: 800;
    }


    /* HAMBURGER */

    .czors-mobile-header__menu {
        display: grid;

        width: 46px;
        height: 46px;

        padding: 0;

        place-items: center;

        cursor: pointer;

        color: #ffffff;

        background: rgba(255,255,255,.05);

        border: 1px solid rgba(255,255,255,.07);
        border-radius: 12px;
    }

    .czors-mobile-header__menu svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================================
   CZORS GLOBAL HEADER BREAKPOINT CONTROL
========================================================= */

/*
 * Desktop header is visible by default.
 * Mobile header is hidden by default.
 */

.czors-marketplace-header {
    display: block;
}

.czors-mobile-header {
    display: none;
}


/* MOBILE */

@media (max-width: 900px) {

    /*
     * Hide desktop marketplace header.
     */
    .czors-marketplace-header {
        display: none !important;
    }

    /*
     * Show new mobile header.
     */
    .czors-mobile-header {
        display: block !important;
    }
}
/* =========================================================
   CZORS GLOBAL HEADER — RESPONSIVE VISIBILITY
========================================================= */

/* Desktop */
.czors-marketplace-header {
    display: block;
}

.czors-mobile-header {
    display: none;
}


/* Mobile / Tablet */
@media (max-width: 900px) {

    .czors-marketplace-header {
        display: none !important;
    }

    .czors-mobile-header {
        display: block !important;
    }

}
/* =========================================================
   GLOBAL MOBILE DRAWER VISIBILITY
========================================================= */

/*
 * Never show the globally injected mobile drawer
 * on desktop.
 */
.czors-global-mobile-drawer-only {
    display: none;
}


/*
 * Mobile only.
 */
@media (max-width: 900px) {

    .czors-global-mobile-drawer-only {
        display: contents;
    }

}
.czors-marketplace-header__signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border-radius: 999px;

    background: #f28c28;
    color: #111 !important;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}

.czors-marketplace-header__signup:hover {
    transform: translateY(-1px);
    background: #ffa12f;
}
@media (max-width: 900px) {

    /* Remove Astra website footer */
    body.czors-provider-app-view .site-footer,
    body.czors-provider-app-view #colophon {
        display: none !important;
    }

    /* Prevent content from hiding behind fixed app nav */
    body.czors-provider-app-view {
        padding-bottom: 80px;
    }

}
/* =========================================
   CZORS AI - MOBILE HEADER
========================================= */

.czors-mobile-header__ai {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;
    color: #fff;

    cursor: pointer;
}

.czors-mobile-header__ai svg {
    width: 32px;
    height: 32px;
    stroke-width: 1;
}

.czors-mobile-header__ai:hover,
.czors-mobile-header__ai:focus-visible {
    color: #ff8a00;
}
/* =========================================
   CZORS AI - DESKTOP HEADER
========================================= */

.czors-marketplace-header__ai {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 40px;
    padding: 0 14px;

    border: 1px solid rgba(255, 166, 41, 0.28);
    border-radius: 999px;

    background: rgba(255, 166, 41, 0.08);
    color: #ffa629;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}
/* Space between header action buttons */
.czors-marketplace-header__actions {
    gap: 12px;
}
.czors-marketplace-header__ai svg {
    width: 17px;
    height: 17px;
}

.czors-marketplace-header__ai:hover {
    background: rgba(255, 166, 41, 0.15);
    border-color: rgba(255, 166, 41, 0.5);
    transform: translateY(-1px);
}

/* =========================================
   HIDE NATIVE AMINOS LAUNCHER
   Keep functional for CZORS AI trigger
========================================= */

.sc-launcher {
    position: fixed !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    right: 0 !important;
    bottom: 0 !important;
}
/* =========================================================
   CZORS NEXT BOOKING - MOBILE APP CARD
========================================================= */

@media (max-width: 767px) {

    .czors-next-premium {
        width: 100%;
        padding: 18px;
        overflow: hidden;
        border-radius: 22px;
    }

    /* TOP ROW */
    .czors-next-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }

    .czors-next-top > span {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .czors-countdown {
        flex: 0 0 auto;
        font-size: 16px;
        font-weight: 800;
        white-space: nowrap;
    }

    /* STACK CONTENT */
    .czors-next-main {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* IMAGE */
    .czors-next-photo {
        position: relative;
        width: 100%;
        height: 200px;
        min-width: 0;
        overflow: hidden;
        border-radius: 18px;
    }

    .czors-next-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .czors-next-photo > span:not(.czors-status) {
        display: grid;
        width: 100%;
        height: 100%;
        place-items: center;
        font-size: 40px;
    }

    /* STATUS BADGE */
    .czors-status {
        position: absolute;
        left: 12px;
        bottom: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 800;
        backdrop-filter: blur(8px);
    }

    /* DETAILS */
    .czors-next-details {
        width: 100%;
        min-width: 0;
    }

    .czors-next-details h4 {
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .czors-next-details > p {
        margin: 6px 0 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    /* DATE + TIME */
    .czors-next-date-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .czors-next-date-row > div {
        min-width: 0;
        padding: 13px 14px;
        border-radius: 14px;
    }

    .czors-next-date-row span {
        display: block;
        margin-bottom: 4px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .czors-next-date-row strong {
        display: block;
        font-size: 16px;
        line-height: 1.25;
        word-break: break-word;
    }

    /* PRICE */
    .czors-next-price {
        width: 100%;
        margin-top: 10px;
        padding: 14px;
        border-radius: 14px;
    }

    .czors-next-price span {
        display: block;
        margin-bottom: 3px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .czors-next-price strong {
        font-size: 23px;
        line-height: 1.1;
    }

    /* BUTTON */
    .czors-next-view {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        margin-top: 12px;
        padding: 12px 16px;
        border-radius: 14px;
        text-align: center;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
    }
}


/* EXTRA SMALL PHONES */
@media (max-width: 390px) {

    .czors-next-premium {
        padding: 15px;
    }

    .czors-next-top {
        gap: 8px;
    }

    .czors-next-top > span {
        font-size: 10px;
    }

    .czors-countdown {
        font-size: 14px;
    }

    .czors-next-photo {
        height: 180px;
    }

    .czors-next-details h4 {
        font-size: 21px;
    }

    .czors-next-date-row {
        gap: 8px;
    }

    .czors-next-date-row > div {
        padding: 12px;
    }

    .czors-next-date-row strong {
        font-size: 15px;
    }

    .czors-next-price strong {
        font-size: 21px;
    }
}
/* =========================================================
   CZORS NEXT BOOKING
   FINAL MOBILE OVERRIDE
========================================================= */

@media (max-width: 767px) {

    .czors-next-premium {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        overflow: hidden !important;
        border-radius: 22px !important;
    }

    .czors-next-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .czors-next-top > span {
        font-size: 11px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.12em !important;
    }

    .czors-countdown {
        flex: 0 0 auto !important;
        font-size: 16px !important;
        white-space: nowrap !important;
    }

    /* IMPORTANT:
       Force desktop columns to become one column */
    .czors-next-main {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        width: 100% !important;
        gap: 16px !important;
    }

    /* IMAGE */
    .czors-next-photo {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        height: 200px !important;
        min-height: 0 !important;

        margin: 0 !important;

        overflow: hidden !important;
        border-radius: 18px !important;
    }

    .czors-next-photo img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        border-radius: 18px !important;
    }

    .czors-status {
        position: absolute !important;
        left: 12px !important;
        bottom: 12px !important;

        width: auto !important;

        padding: 6px 10px !important;
        border-radius: 999px !important;

        font-size: 11px !important;
    }

    /* DETAILS */
    .czors-next-details {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .czors-next-details h4 {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;

        font-size: 24px !important;
        line-height: 1.1 !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .czors-next-details > p {
        width: 100% !important;
        max-width: none !important;

        margin: 6px 0 16px !important;

        font-size: 14px !important;
        line-height: 1.4 !important;

        word-break: normal !important;
    }

    /* DATE + TIME */
    .czors-next-date-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        width: 100% !important;
        max-width: none !important;

        gap: 10px !important;
        margin: 0 !important;
    }

    .czors-next-date-row > div {
        display: block !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        padding: 14px !important;
        border-radius: 14px !important;
    }

    .czors-next-date-row span {
        display: block !important;
        margin-bottom: 5px !important;

        font-size: 10px !important;
        line-height: 1.2 !important;

        white-space: normal !important;
    }

    .czors-next-date-row strong {
        display: block !important;

        width: 100% !important;

        font-size: 16px !important;
        line-height: 1.25 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* PRICE */
    .czors-next-price {
        display: block !important;

        width: 100% !important;
        max-width: none !important;

        margin: 10px 0 0 !important;
        padding: 14px !important;

        border-radius: 14px !important;
    }

    .czors-next-price span {
        display: block !important;
        margin-bottom: 4px !important;
        font-size: 10px !important;
    }

    .czors-next-price strong {
        display: block !important;
        font-size: 24px !important;
        line-height: 1.1 !important;
    }

    /* BUTTON */
    .czors-next-view {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: none !important;

        min-height: 50px !important;

        margin: 12px 0 0 !important;
        padding: 13px 16px !important;

        border-radius: 14px !important;

        text-align: center !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
}


    /* footer nav message css */
    .czors-footer-message-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.czors-footer-message-icon .czm-global-badge {
    position: absolute;
    top: -8px;
    right: -11px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
    z-index: 5;
}