/* Dibaart order-request workflow */
.order-form .selected-product {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 18px;
    padding: 16px 18px;
    border: 1px solid rgba(11, 35, 83, 0.16);
    border-radius: 16px;
    background: #f2f6ff;
    color: #0b2353;
}

.order-form .selected-product[hidden] {
    display: none;
}

.selected-product-copy {
    display: grid;
    gap: 4px;
}

.selected-product-copy span {
    color: #5d6980;
    font-size: 0.84rem;
}

.selected-product-copy strong {
    font-size: 1rem;
}

.selected-product-price {
    margin: 0;
    color: #43516c;
    font-size: 0.82rem;
}

.selected-product-clear {
    appearance: none;
    border: 1px solid rgba(11, 35, 83, 0.2);
    border-radius: 999px;
    background: #fff;
    color: #0b2353;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
}

.selected-product-clear:hover,
.selected-product-clear:focus-visible {
    border-color: #ff7358;
    color: #c83f27;
}

.order-form .request-notice {
    margin: 0;
    color: #4c5870;
    font-size: 0.82rem;
    line-height: 1.85;
}

.order-form .request-notice strong {
    color: #0b2353;
}

.request-message {
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 13px;
    font-weight: 600;
    line-height: 1.9;
}

.request-message:empty {
    display: none;
}

.request-message.is-pending,
.request-message.is-success,
.request-message.is-error {
    display: block;
    padding: 12px 14px;
}

.request-message.is-pending {
    background: #eef4ff;
    color: #1c4c9e;
}

.request-message.is-success {
    background: #e9f8ef;
    color: #17673c;
}

.request-message.is-error {
    background: #fff0ed;
    color: #a93724;
}

.order-form button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.request-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

@media (max-width: 620px) {
    .order-form .selected-product {
        grid-template-columns: 1fr;
    }

    .selected-product-clear {
        justify-self: start;
    }
}
