.bdwom-quick-order-box {
    position: relative;
    overflow: hidden;
    margin: 24px 0;
    padding: 22px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, .16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .10);
}
.bdwom-quick-order-box:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #22c55e);
}
.bdwom-quick-order-head {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}
.bdwom-qo-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.bdwom-quick-order-head strong {
    font-size: 22px;
    line-height: 1.18;
    color: #0f172a;
    letter-spacing: -.02em;
}
.bdwom-quick-order-head span:not(.bdwom-qo-kicker),
.bdwom-qo-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}
.bdwom-qo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.bdwom-qo-grid--two-fields {
    margin-bottom: 14px;
}
.bdwom-qo-grid label,
.bdwom-qo-wide {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    font-weight: 800;
    color: #334155;
    font-size: 13px;
}
.bdwom-qo-grid input,
.bdwom-qo-grid select,
.bdwom-qo-wide textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 11px 13px;
    background: #fff;
    color: #0f172a;
    box-sizing: border-box;
    font-size: 15px;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.bdwom-qo-grid input:focus,
.bdwom-qo-grid select:focus,
.bdwom-qo-wide textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.bdwom-qo-wide textarea {
    min-height: 70px;
}
.bdwom-quick-order-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .28);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.bdwom-quick-order-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 16px 30px rgba(37, 99, 235, .32);
}
.bdwom-quick-order-submit:disabled {
    opacity: .75;
    cursor: progress;
    transform: none;
}
.bdwom-quick-order-error {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 800;
}
.bdwom-qo-note {
    margin: 12px 0 0;
    text-align: center;
}
@media (max-width: 640px) {
    .bdwom-quick-order-box {
        padding: 16px;
        border-radius: 18px;
    }
    .bdwom-quick-order-head strong {
        font-size: 19px;
    }
    .bdwom-qo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .bdwom-qo-grid input {
        min-height: 46px;
        font-size: 14px;
    }
}

/* v1.11.6 - quick order mobile hardening */
.bdwom-quick-order-box,
.bdwom-quick-order-box * {
    box-sizing: border-box;
}
.bdwom-qo-grid select,
.bdwom-qo-grid textarea,
.bdwom-qo-grid input {
    max-width: 100%;
}
@media (max-width: 480px) {
    .bdwom-quick-order-box {
        margin: 16px 0;
        padding: 14px;
        border-radius: 16px;
    }
    .bdwom-quick-order-head {
        gap: 5px;
        margin-bottom: 12px;
    }
    .bdwom-qo-kicker {
        font-size: 10px;
    }
    .bdwom-qo-grid input,
    .bdwom-qo-grid select,
    .bdwom-qo-wide textarea,
    .bdwom-quick-order-submit {
        min-height: 44px;
        border-radius: 12px;
        font-size: 14px;
    }
    .bdwom-qo-note {
        font-size: 12px;
        line-height: 1.45;
    }
}

