.omio-booking-wrap {
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.omio-booking-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    padding: 24px;
    border: 1px solid #f1f1f1;
}

.omio-booking-head {
    margin-bottom: 18px;
}

.omio-booking-title {
    margin: 0 0 6px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f1f1f;
}

.omio-booking-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.omio-booking-form {
    width: 100%;
}

.omio-booking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
}

.omio-booking-field {
    display: flex;
    flex-direction: column;
}

.omio-booking-field label {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.omio-booking-route {
    flex: 1 1 220px;
}

.omio-booking-datefield {
    flex: 1 1 240px;
}

.omio-booking-routebox,
.omio-booking-input {
    min-height: 58px;
    border: 2px solid #e7e7e7;
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
}

.omio-booking-routebox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
}

.omio-booking-code {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.5px;
}

.omio-booking-arrow {
    font-size: 20px;
    font-weight: 700;
    color: #ff6600;
}

.omio-booking-input {
    width: 100%;
    padding: 0 16px;
    font-size: 16px;
    color: #222222;
    outline: none;
    transition: all 0.2s ease;
}

.omio-booking-input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 4px rgba(255, 0, 204, 0.12);
}

.omio-booking-submit {
    flex: 0 0 auto;
}

.omio-booking-button {
    min-height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 14px;
    background: #ff6600;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.25);
}

.omio-booking-button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.omio-booking-button:active {
    transform: translateY(0);
}

.omio-booking-error {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff0fb;
    color: #a0007f;
    border: 1px solid rgba(255, 0, 204, 0.18);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .omio-booking-card {
        padding: 18px;
        border-radius: 16px;
    }

    .omio-booking-title {
        font-size: 22px;
    }

    .omio-booking-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .omio-booking-route,
    .omio-booking-datefield,
    .omio-booking-submit {
        flex: 1 1 100%;
        width: 100%;
    }

    .omio-booking-button {
        width: 100%;
    }
}
