/* Premium Event Booking Widget Styles */

:root {
    --aw-primary: #00a8b1;
    --aw-primary-hover: #008f96;
    --aw-bg-soft: #fcfdfe;
    --aw-border-light: rgba(0, 0, 0, 0.05);
    --aw-text-main: #333333;
    --aw-text-muted: #666666;
    --aw-accent-yellow: #fff9e6;
}

.aw-booking-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--aw-text-main);
}

.aw-booking-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.aw-booking-short-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--aw-text-muted);
    margin-bottom: 30px;
}

/* Info Bar */
.aw-booking-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(0, 168, 177, 0.03);
    border: 1px solid rgba(0, 168, 177, 0.08);
    border-radius: 12px;
    margin-bottom: 25px;
}

.aw-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.aw-info-icon {
    font-size: 16px;
}

.aw-info-stock .low-stock {
    color: #e53e3e;
}

/* Benefits Box */
.aw-benefits-box {
    border: 1px solid var(--aw-border-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    background: white;
}

.aw-benefits-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
}

.aw-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aw-benefits-list li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--aw-text-muted);
}

.aw-check {
    color: #38a169;
    font-weight: bold;
}

/* Booking Card */
.aw-booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--aw-border-light);
    padding: 30px;
}

.aw-booking-guest-label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.aw-guest-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.aw-guest-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-guest-btn:hover {
    border-color: var(--aw-primary);
    color: var(--aw-primary);
}

.aw-guest-count {
    font-size: 24px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

/* Discount Badge */
.aw-discount-badge {
    background: #e6fffa;
    color: #2c7a7b;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}

/* Pricing Display */
.aw-pricing-display {
    margin-bottom: 30px;
}

.aw-price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.aw-old-price {
    font-size: 18px;
    color: #bbb;
    text-decoration: line-through;
}

.aw-current-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--aw-primary);
    line-height: 1;
}

.aw-price-suffix {
    font-size: 14px;
    color: #888;
}

.aw-price-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
}

.aw-total-amount {
    font-size: 20px;
    color: var(--aw-text-main);
}

/* Checkout Button */
.aw-btn-checkout {
    width: 100%;
    background: var(--aw-primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.aw-btn-checkout:hover {
    background: var(--aw-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 168, 177, 0.25);
}

/* Footer Info */
.aw-booking-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    font-size: 13px;
    color: var(--aw-text-muted);
}

/* Responsive */
@media (max-width: 480px) {
    .aw-booking-title {
        font-size: 32px;
    }
    
    .aw-current-price {
        font-size: 38px;
    }
    
    .aw-booking-card {
        padding: 20px;
    }
}

/* Force Astra Container to 100% Width (Override theme constraints) */
@media (min-width: 922px) {
    .ast-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Ensure Elementor stretched sections work correctly within overridden container */
    .ast-container .elementor-section-stretched {
        left: 0 !important;
        width: 100% !important;
    }
}
