﻿
/* خلاصه Dropdown */
.dropdown-btn {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

/* دکمه + و - */
.qtyBtn button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* input عدد */
.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
}

/* زیرمنو */
.dropdown-menu-wrap {
    min-width: 100%;
    background: #f8fafc;
    border-radius: 10px;
}

/* موبایل */
@media (max-width: 576px) {
    .dropdown-menu-wrap

{
    width: 100%;
}

}



.lazy-load {
    min-height: 150px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    .lazy-load.loaded {
        opacity: 1;
    }
