.booking-widget {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.booking-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--s-xl);
    border: 1px solid rgba(106, 56, 56, 0.06);
}

.booking-card h3 {
    font-family: var(--font-family-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: var(--ink);
}

.booking-card .bc-sub {
    font-size: .875rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 28px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bf-field label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.bf-field select,
.bf-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    font-family: var(--font-family-body);
    font-size: .9rem;
    color: var(--ink);
    background: #faf7f4;
    transition: border-color .3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.bf-field select {
    background:
            #faf7f4
        url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239e978b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
        no-repeat right 14px center;
}

.bf-field select:focus,
.bf-field input:focus {
    outline: none;
    border-color: var(--gold);
}

.bf-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: var(--font-family-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.bf-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 3s ease-in-out infinite 2s;
}

.bf-submit:hover {
    background: var(--gold-deep);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--s-lg);
}

.bf-submit:hover::after {
    animation: none;
}

.bf-submit .mi {
    font-size: 20px;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 120%;
    }
}

@media (max-width: 1024px) {
    .booking-widget {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 991px) {
    .booking-card {
        padding: 24px 20px;
    }

    .booking-card h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .booking-card .bc-sub {
        margin-bottom: 20px;
        font-size: .8rem;
    }

    .booking-form {
        gap: 12px;
    }

    .bf-field label {
        font-size: .65rem;
        margin-bottom: 4px;
    }

    .bf-field select,
    .bf-field input {
        padding: 10px 12px;
        font-size: .85rem;
    }

    .bf-submit {
        padding: 14px;
        font-size: .9rem;
        margin-top: 4px;
    }
}
