/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1760433810
Updated: 2025-10-14 09:23:30

*/

.mw_products_container .woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
}

/* Product title */
.mw_products_container .woocommerce ul.products li.product .woocommerce-loop-product__title {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 67%;
    text-align: center;
    font-size: 21px !important;
    line-height: 22px;
    color: #fff !important;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

/* Hide price */
.mw_products_container .woocommerce ul.products li.product span.price {
    display: none;
}

/* Add to cart button */
.mw_products_container .woocommerce ul.products li.product a.add_to_cart_button {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 50%;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

/* Hover animation */
.mw_products_container .woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    opacity: 0;
    transform: translateY(20px);
}

.mw_products_container .woocommerce ul.products li.product:hover a.add_to_cart_button {
    opacity: 1;
    transform: translateY(0);
}

/* 🟡 Shop Page Full Width & Grid Layout */
.mw-shop-page-wrapper {
    width: 100%;
    background: #fff;
}

.mw-shop-header-area {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

/* 🟢 Product Grid Container */
.mw-shop-products-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 🧩 Make each product nicely spaced */
ul.products.columns-4 li.product {
    margin: 0 15px 40px 15px;
    width: calc(25% - 30px);
}

@media (max-width: 1024px) {
    ul.products.columns-4 li.product {
        width: calc(33.333% - 30px);
    }
}

@media (max-width: 768px) {
    ul.products.columns-4 li.product {
        width: calc(50% - 30px);
    }
}

@media (max-width: 500px) {
    ul.products.columns-4 li.product {
        width: 100%;
    }
}