/* Sticky Reserve CTA */
.bdp-sticky-reserve {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
    z-index: 1000;
    box-shadow: var(--bdp-shadow-sm);
}

.bdp-sticky-reserve .bdp-price {
    font-weight: 600;
}

.bdp-sticky-reserve .bdp-cta {
    background: #fff;
    color: var(--color-primary);
    border-radius: var(--bdp-radius-sm);
    padding: 8px 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .venue-sidebar {
        display: none;
    }
}

@media (min-width: 769px) {
    .bdp-sticky-reserve {
        display: none;
    }
}

/* Precart Modal Styles */
.bdp-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.bdp-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: var(--bdp-radius-lg);
    box-shadow: var(--bdp-shadow-lg);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bdp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
}

.bdp-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.bdp-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.bdp-modal-body {
    padding: 20px;
}

.bdp-form-group {
    margin-bottom: 20px;
}

.bdp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.bdp-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--bdp-radius-sm);
    font-size: 1rem;
}

.bdp-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bdp-qty-label span {
    display: block;
    font-weight: 500;
}

.bdp-qty-label small {
    color: var(--color-text-light);
}

.bdp-qty-controls .bdp-qty-input {
    width: 70px;
    text-align: center;
}

.bdp-precart-total {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .bdp-modal {
        align-items: flex-end;
    }

    .bdp-modal-content {
        width: 100%;
        max-width: 100%;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}