/* Tours page sticky ticket bar - unique */
.tour-sticky-ticket-bar {
    display: none !important;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 190px !important;
    }

    .tour-sticky-ticket-bar {
        display: block !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 50 !important;
        background: #ffffff !important;
        border-top: 1px solid rgba(0,0,0,0.08) !important;
        box-shadow: 0 -8px 25px rgba(0,0,0,0.12) !important;
        padding: 14px !important;
    }

    .tour-sticky-purchase-inner {
        max-width: 660px;
        margin: 0 auto;
    }

    .tour-sticky-ticket-list {
        display: grid;
        gap: 8px;
        margin-bottom: 10px;
    }

    .tour-sticky-ticket-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .tour-sticky-ticket-name {
        font-weight: 700;
        font-size: 14px;
        color: #1f2937;
    }

    .tour-sticky-ticket-controls {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .tour-sticky-qty-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid rgba(0,0,0,0.15);
        background: #f8f9fa;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .tour-sticky-qty-value {
        min-width: 22px;
        text-align: center;
        font-weight: 700;
    }

    .tour-sticky-purchase-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .tour-sticky-purchase-label {
        font-size: 12px;
        color: #6b7280;
    }

    .tour-sticky-purchase-value {
        font-size: 18px;
        font-weight: 800;
        color: #1f2937;
    }

    .tour-sticky-purchase-action {
        flex: 1;
        max-width: 150px;
    }

    .tour-sticky-purchase-btn {
        width: 100%;
        margin: 0;
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    body {
        padding-bottom: 0 !important;
    }

    .tour-sticky-ticket-bar {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .tour-sticky-purchase-btn {
        margin-left: -50px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .tour-sticky-purchase-btn {
        margin-left: -10px !important;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .tour-sticky-purchase-btn {
        margin-left: 48px !important;
    }
}