/* Booking Calendar Widget */
.booking-widget {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.bw-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    color: #fff;
}

/* Calendar */
.bw-calendar {
    margin-bottom: 1.25rem;
}

.bw-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bw-cal-month {
    font-weight: 600;
    font-size: 1.1rem;
    color: #e5e5e5;
}

.bw-cal-nav {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: #e5e5e5;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.bw-cal-nav:hover:not(:disabled) {
    background: rgba(212, 98, 42, 0.2);
    border-color: #D4622A;
}

.bw-cal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bw-cal-day-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    padding: 0.4rem 0;
    font-weight: 600;
}

.bw-cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: default;
    transition: all 0.15s;
    position: relative;
}

.bw-cal-cell.empty {
    pointer-events: none;
}

.bw-cal-cell.available {
    cursor: pointer;
    color: #e5e5e5;
}

.bw-cal-cell.available:hover {
    background: rgba(212, 98, 42, 0.15);
    color: #D4622A;
}

.bw-cal-cell.unavailable {
    color: #444;
    text-decoration: line-through;
    cursor: not-allowed;
}

.bw-cal-cell.selected {
    background: rgba(212, 98, 42, 0.25);
    color: #fff;
}

.bw-cal-cell.sel-start,
.bw-cal-cell.sel-end {
    background: #D4622A;
    color: #fff;
    font-weight: 700;
}

/* Selection Summary */
.bw-selection {
    background: rgba(212, 98, 42, 0.08);
    border: 1px solid rgba(212, 98, 42, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bw-sel-dates {
    font-size: 0.9rem;
    color: #ccc;
}

.bw-sel-summary {
    font-size: 0.9rem;
    color: #aaa;
}

.bw-sel-summary strong {
    color: #D4622A;
    font-size: 1.1rem;
}

/* Buttons */
.bw-btn {
    width: 100%;
    padding: 0.9rem;
    background: #D4622A;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.bw-btn:hover:not(:disabled) {
    background: #b8531f;
}

.bw-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bw-btn-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #e5e5e5;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bw-btn-secondary:hover {
    border-color: #D4622A;
    color: #D4622A;
}

/* Form */
.bw-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .bw-form-row {
        grid-template-columns: 1fr;
    }
}

.bw-form-group {
    margin-bottom: 0.75rem;
}

.bw-form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.bw-form-group input,
.bw-form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #e5e5e5;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.bw-form-group input:focus,
.bw-form-group textarea:focus {
    outline: none;
    border-color: #D4622A;
}

.bw-form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.bw-form-group input[readonly] {
    color: #C4A265;
    cursor: default;
}

/* Price Summary */
.bw-price-summary {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.bw-price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #aaa;
}

.bw-price-line strong {
    color: #e5e5e5;
}

.bw-price-total {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
    padding-top: 0.7rem;
    font-size: 1rem;
}

.bw-price-total strong {
    color: #D4622A;
    font-size: 1.1rem;
}

.bw-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.bw-form-actions .bw-btn {
    flex: 1;
}

/* Confirmation */
.bw-step-confirm {
    text-align: center;
    padding: 2rem 1rem;
}

.bw-confirm-icon {
    width: 64px;
    height: 64px;
    background: rgba(68, 204, 68, 0.15);
    border: 2px solid #44cc44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #44cc44;
    margin: 0 auto 1.5rem;
}

.bw-confirm-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bw-confirm-text strong {
    color: #e5e5e5;
}
