.product-request-modal {
    border: none;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    padding: 8px 8px 4px;
    position: relative;
}

.product-request-modal .modal-body {
    padding: 36px 32px 32px;
}

.product-request-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    z-index: 2;
}

.product-request-modal__close:hover {
    color: #333;
}

.product-request-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.product-request-modal__icon--success {
    background: rgba(40, 167, 69, 0.12);
    color: #28a745;
}

.product-request-modal__icon--error {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.product-request-modal__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.product-request-modal__text {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.product-request-modal__btn {
    min-width: 160px;
    border: none;
    cursor: pointer;
}

.product-request-modal-wrap.modal.fade .modal-dialog {
    transform: translate(0, -24px);
    transition: transform 0.25s ease-out;
}

.product-request-modal-wrap.modal.show .modal-dialog {
    transform: translate(0, 0);
}
