.qty-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 150px;
    margin: 10px auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    background: #f9f9f9;
}

.qty-count {
    width: 40px;
    height: 40px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.qty-count:hover {
    background: #0056b3;
}

.qty-count:active {
    transform: scale(0.95);
}

.product-qty {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background: white;
    font-weight: bold;
}

.comment-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.comment-avatar {
    width: 45px;
    height: 45px;
    background: #2b787d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.reply-card {
    border-right: 3px solid #2b787d;
    margin-right: 60px;
    background: #fdfefe;
}

.reply-btn {
    font-size: 13px;
}

.image-product-box {
    height: 100%;
    width: 100%;
}

.product-title-related {
    font-size: 11px!important;
}


.product-sheet .offcanvas-body {
    height: 75vh;
    overflow-y: auto;
}

/* موبایل */
@media (max-width: 768px) {
    .product-sheet .offcanvas-body {
        height: 75vh;
        overflow-y: auto;
    }
}