/* Frontend Styling for Variable Easier */
.variable-easier-booking-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.variable-easier-booking-options h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.variable-easier-booking-options h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.25rem;
    background: #6366f1;
    border-radius: 2px;
}

.booking-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.booking-option-item {
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.booking-option-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.booking-check-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-option-price {
    font-weight: 700;
    color: #111827;
    font-size: 1.1rem;
}

/* Hover State */
.booking-option-item:hover .booking-option-content {
    border-color: #6366f1;
    background: #f8fafc;
    transform: translateX(4px);
}

.booking-option-item:hover .booking-check-mark {
    border-color: #6366f1;
}

/* Selected State */
.booking-option-item input:checked + .booking-option-content {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

.booking-option-item input:checked + .booking-option-content .booking-check-mark {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
    transform: scale(1.1);
}

.booking-option-item input:checked + .booking-option-content .booking-option-name {
    color: #4338ca;
}

/* Active animation */
.booking-option-item:active {
    transform: scale(0.98);
}

/* Hide radio */
.booking-option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
