#dp-br-order-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
}

.dp-br-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
}

.dp-br-overlay.dp-br-hidden {
    display: none;
}

.dp-br-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 480px;
    width: 100%;
    padding: 28px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.dp-br-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #777;
    padding: 4px 8px;
}

.dp-br-close:hover {
    color: #a20401;
}

.dp-br-title {
    margin: 0 0 6px;
    font-size: 20px;
    color: #222;
    padding-right: 24px;
}

.dp-br-product {
    margin: 0 0 10px;
    font-weight: 600;
    color: #a20401;
}

.dp-br-intro {
    margin: 0 0 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.dp-br-field {
    margin-bottom: 14px;
}

.dp-br-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.dp-br-required {
    color: #a20401;
}

.dp-br-field input,
.dp-br-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.dp-br-field input:focus,
.dp-br-field textarea:focus {
    outline: none;
    border-color: #a20401;
}

.dp-br-honeypot-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dp-br-status {
    min-height: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.dp-br-status-error {
    color: #c0392b;
}

.dp-br-status-success {
    color: #1a7f37;
    font-weight: 600;
}

.dp-br-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.dp-br-cancel {
    background: #eee;
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.dp-br-cancel:hover {
    background: #e2e2e2;
}

.dp-br-submit {
    background: #a20401;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.dp-br-submit:hover:not(:disabled) {
    background: #7e0301;
}

.dp-br-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

@media (max-width: 480px) {
    .dp-br-modal {
        padding: 22px;
    }
}
