/* =============================== */
/* STICKY BOOKING BAR              */
/* =============================== */

.ezb-sticky-box {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: calc(1200px - 24px);
    padding: 14px 0;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
    border-top: 1px solid #e6e6e6;
    border-radius: 12px 12px 0 0;
    transform: translateX(-50%);
    z-index: 50;
}

/* INNER */
.ezb-sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* LEFT */
.ezb-sticky-left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ezb-sticky-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #777;
}

.ezb-sticky-price {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.ezb-sticky-currency {
    margin-left: 4px;
    font-size: 1rem;
}

.ezb-sticky-note {
    font-size: 0.75rem;
    color: #0a8f3a;
}

/* RIGHT */
.ezb-sticky-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
}

.ezb-sticky-book {
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--ez-primary) !important;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.ezb-sticky-book:hover {
    background: #0055d4;
}

/* CONFIRMATION */
.ezb-sticky-confirmation {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a8f3a;
}

.ezb-sticky-confirmation svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #0a8f3a;
    stroke-width: 2;
}

/* CENTER CART BUTTON */
.ezb-sticky-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066ff;
    background: none;
    border: none;
    cursor: pointer;
}

.ezb-sticky-cart-btn:hover {
    text-decoration: underline;
}

.ezb-cart-count {
    padding: 2px 7px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--ez-primary) !important;
    border-radius: 500px;
}

.ezb-sticky-cart-text {
    display: none;
}

/* RIGHT CTA ALIGNMENT */
.ezb-sticky-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.ezb-sticky-cta-link {
    text-decoration: none;
}

/* RIGHT SIDE */
.ezb-sticky-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

/* BUTTON ROW */
.ezb-sticky-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.ezb-sticky-checkout-link {
    width: 240px;
}

/* MAIN CTA */
.ezb-sticky-book {
    width: 100%;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    background: #0066ff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.ezb-sticky-book:hover {
    background: #0055d4;
}

/* VIEW CART BUTTON */
.ezb-sticky-view-cart {
    position: relative;
    padding: 12px 14px;
    font-size: 18px;
    line-height: 1;
    background: #f3f6fb;
    border: 1px solid #e1e6ef;
    border-radius: 12px;
    cursor: pointer;
}

.ezb-sticky-view-cart:hover {
    background: #e9eef8;
}

/* CART COUNT */
.ezb-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #0066ff;
    border-radius: 999px;
}

a.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}

/* RESPONSIVE */
@media (min-width: 1024px) {
    .ezb-sticky-cart-text {
        display: inline;
    }
}

@media (max-width: 768px) {
    .ezb-sticky-inner {
        position: relative;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .ezb-sticky-note {
        display: none;
    }

    .ezb-sticky-right {
        align-items: flex-end;
    }

    .ezb-sticky-checkout-link {
        flex-grow: 1;
        width: auto;
    }

    .ezb-sticky-book {
        padding: 12px 24px;
    }

    .ezb-sticky-view-cart {
        position: absolute;
        top: 0;
        right: 16px;
    }

    .ezb-sticky-confirmation {
        display: none;
    }
}