.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .woocommerce-loop-product__title{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .woocommerce-loop-category__title{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .woocommerce-loop-product__title, .elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .woocommerce-loop-category__title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-wc-archive-products{--products-title-color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.products-heading-show .related-products > h2, .elementor-widget-wc-archive-products.products-heading-show .upsells > h2, .elementor-widget-wc-archive-products.products-heading-show .cross-sells > h2{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price ins{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price ins .amount{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price del{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price del .amount{color:var( --e-global-color-primary );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price del {font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-wc-archive-products.elementor-wc-products .added_to_cart{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-wc-archive-products .elementor-products-nothing-found{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product .woocommerce-loop-product__title{color:#000000;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product .woocommerce-loop-category__title{color:#000000;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product .price{color:#000000;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product .price ins{color:#000000;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product .price ins .amount{color:#000000;}.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products ul.products li.product span.onsale{display:block;}@media(max-width:1024px){.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}@media(max-width:767px){.elementor-1484 .elementor-element.elementor-element-28b941a.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}/* Start custom CSS for wc-archive-products, class: .elementor-element-28b941a *//* کانتینر محصولات */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* کارت هر محصول */
.products .product {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* افکت hover کارت */
.products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

/* تصویر محصول */
.products .product img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.products .product:hover img {
    transform: scale(1.05); /* فقط بزرگ شدن آرام */
}

/* عنوان محصول */
.products .product .woocommerce-loop-product__title {
    font-size: 1.15rem;
    margin: 10px;
    color: #222;
    font-weight: 600;
}

/* قیمت محصول */
.products .product .woocommerce-Price-amount {
    font-weight: bold;
    margin: 0 10px 10px;
    color: #e74c3c;
}

/* دکمه افزودن به سبد خرید پایین کارت */
.products .product .button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px;
    padding: 12px 0;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* افکت hover روی دکمه */
.products .product .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #8e44ad, #3498db);
}

/* حذف overlay یا افکت تار روی تصویر */
.products .product::after {
    display: none;
}/* End custom CSS */