/* Aeropark Reservation Form */
.aeropark-reservation-desktop {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.aeropark-reservation-form {
    background: #fff;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
}

/* Main grid: deposit group | return group | price | button */
.aeropark-form-fields {
    display: grid;
    grid-template-columns: 4fr 4fr 2fr 2fr;
    align-items: center;
    column-gap: 32px;
    row-gap: 16px;
}

/* Each field group: date + time side by side */
.aeropark-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.aeropark-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 4px;
}

.aeropark-field input {
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    font-family: inherit;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    border-radius: 0;
    background: transparent;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}

.aeropark-field input:focus {
    border-bottom-color: #9fbf43;
    border-bottom-width: 2px;
    padding-bottom: 3px;
}

/* Price display */
.aeropark-price-display {
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aeropark-price-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: #9fbf43;
}

/* Loading spinner */
.aeropark-price-loader {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(159, 191, 67, 0.3);
    border-top-color: #9fbf43;
    border-radius: 50%;
    animation: aeropark-spin 0.8s linear infinite;
}

@keyframes aeropark-spin {
    to { transform: rotate(360deg); }
}

/* Reserve button */
.aeropark-reserve-btn {
    display: block;
    width: 100%;
    background-color: #9fbf43;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(159, 191, 67, 0.3);
    text-align: center;
    text-decoration: none;
}

.aeropark-reserve-btn:hover:not(:disabled) {
    background-color: #8aab35;
    box-shadow: 0 4px 12px rgba(159, 191, 67, 0.4);
}

.aeropark-reserve-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error displayed in price area */
.aeropark-price-value.aeropark-price-error {
    color: #d32f2f;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Hide mobile-only button */
.aeropark-reservation-mobile {
    display: none;
}

/* Tablet & phone: single column */
@media (max-width: 1024px) {
    .aeropark-reservation-form {
        padding: 16px;
    }

    .aeropark-form-fields {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .aeropark-price-display {
        justify-content: center;
    }
}
