.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;
    }
}

.mobile-menu-tabs {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 4px;
}

.mobile-menu-tabs .nav-pills {
    gap: 4px;
}

.mobile-menu-tabs .nav-link {
    border-radius: 12px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 10px;
    transition: all .25s ease;
}

.mobile-menu-tabs .nav-link.active {
    background: #fff;
    color: #0d6efd;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.mobile-menu-tabs .nav-link i {
    font-size: 15px;
}

.modern-menu {
    gap: 10px;
}

.modern-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    padding: 14px 16px;
    color: #222;
    transition: all .25s ease;
}

.modern-menu .nav-link:hover {
    background: #f8faff;
    border-color: #dbe7ff;
    transform: translateX(-4px);
}

.menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0d6efd,#4f8cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.modern-menu span {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.menu-arrow {
    color: #999;
    transition: .25s;
}

.modern-menu .nav-link:hover .menu-arrow {
    transform: translateX(-5px);
    color: #0d6efd;
}

.modern-menu .nav-link:hover .menu-icon {
    transform: scale(1.08);
}

.category-menu .nav-item{
    margin-bottom: 10px;
}

.category-menu .nav-link{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #f2f2f2;
    transition: all .25s ease;
}

.category-menu .nav-link:hover{
    background: #f8faff;
    border-color: #dbe7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.category-icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg,#f5f7ff,#e8eeff);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.category-content{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-title{
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.category-meta{
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.category-arrow{
    color: #b5b5b5;
    transition: .25s;
}

.category-menu .nav-link:hover .category-arrow{
    color: #0d6efd;
    transform: translateX(-4px);
}

.category-menu .nav-link:hover .category-icon{
    transform: scale(1.08);
}

.mb-category {
    margin-bottom: 200px;
}


