.elementor-1001 .elementor-element.elementor-element-8abb6d2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0vw;--padding-bottom:0vw;--padding-left:2vw;--padding-right:2vw;}.elementor-1001 .elementor-element.elementor-element-6d6ca8a{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0vw;--padding-bottom:0vw;--padding-left:10vw;--padding-right:10vw;}.elementor-1001 .elementor-element.elementor-element-6150ba8 .elementor-heading-title{font-family:"Rubik", Sans-serif;font-size:36px;color:#1E1E24;}.elementor-1001 .elementor-element.elementor-element-bca3959.elementor-element{--align-self:flex-end;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product{text-align:center;border-radius:2rem;padding:0px 20px 020px 20px;background-color:#F4F4F4;}.elementor-1001 .elementor-element.elementor-element-0f48335{width:var( --container-widget-width, 80% );max-width:80%;--container-widget-width:80%;--container-widget-flex-grow:0;}.elementor-1001 .elementor-element.elementor-element-0f48335 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0vw 6vw 0vw 6vw;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products  ul.products{grid-column-gap:10px;grid-row-gap:10px;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products .attachment-woocommerce_thumbnail{border-style:none;margin-bottom:0px;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product .woocommerce-loop-product__title{color:#1E1E24;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product .woocommerce-loop-category__title{color:#1E1E24;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product .woocommerce-loop-product__title, .elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product .woocommerce-loop-category__title{font-family:"Rubik", Sans-serif;font-size:25px;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product .button{color:#FFFFFF;background-color:#1DA2F1;font-family:"Rubik", Sans-serif;border-radius:1rem 1rem 1rem 1rem;}.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products ul.products li.product span.onsale{display:block;}body.elementor-page-1001:not(.elementor-motion-effects-element-type-background), body.elementor-page-1001 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}@media(max-width:1024px){.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}@media(max-width:767px){.elementor-1001 .elementor-element.elementor-element-0f48335.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}}/* Start custom CSS for wc-archive-products, class: .elementor-element-0f48335 *//* PRODUCT CARD - smaller and cleaner */
.woocommerce ul.products {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 260px; /* controls card size */
    margin: 0 auto !important;
    padding: 18px 18px 20px;
    border-radius: 28px;
    background: #f3f3f3;
    box-sizing: border-box;
}

/* responsive image */
.woocommerce ul.products li.product img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 14px;
    border-radius: 18px;
}

/* title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin: 10px 0 0;
    text-align: center;
}

/* button base */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 35px;
    height: 35px;

    border-radius: 100% !important;
    background: #5f6f63; /* This is the green color from your code, change to #4FA2E1 for the blue in your image */

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    font-size: 0;
    border: none;

    z-index: 10;
    transition: all 0.3s ease;
}

/* Icon implementation */
.woocommerce ul.products li.product .button::after,
.woocommerce ul.products li.product .add_to_cart_button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    
    background-image: url('https://dpicasso.co.il/wp-content/uploads/2026/03/arrow-up-left-thin-svgrepo-com-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    
    /* This filter makes the black SVG white */
    filter: brightness(0) invert(1);
    
    pointer-events: none;
}

/* hover */
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #000;
    transform: scale(1.1);
}

/* tablet */
@media (max-width: 1024px) {
    .woocommerce ul.products li.product {
        max-width: 300px;
        padding: 16px 16px 18px;
        border-radius: 24px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 18px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .woocommerce ul.products {
        justify-content: center;
    }

    .woocommerce ul.products li.product {
        max-width: 240px;
        padding: 14px 14px 16px;
        border-radius: 20px;
    }

    .woocommerce ul.products li.product img {
        margin-bottom: 10px;
        border-radius: 14px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        line-height: 1.3;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .add_to_cart_button {
        width: 30px;
        height: 30px;
        top: 12px;
        left: 12px;
    }

    .woocommerce ul.products li.product .button::after,
    .woocommerce ul.products li.product .add_to_cart_button::after {
        width: 16px;
        height: 16px;
    }
}/* End custom CSS */