/*
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.6.1773346024
Updated: 2026-03-12 21:07:04

*/

/* ==========================================================================
   WooCommerce shortcode product grid (homepage featured products)
   Match the Elementor Pro product widget grid styling
   ========================================================================== */

.elementor-widget-shortcode ul.products {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elementor-widget-shortcode ul.products::before,
.elementor-widget-shortcode ul.products::after {
    content: none;
    display: none;
}

.elementor-widget-shortcode ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.elementor-widget-shortcode ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.elementor-widget-shortcode ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.elementor-widget-shortcode ul.products li.product {
    display: flex;
    flex-direction: column;
    float: none !important;
    margin: 0 !important;
    padding: 0;
    width: auto !important;
    text-align: center;
}

.elementor-widget-shortcode ul.products li.product a.woocommerce-loop-product__link {
    display: block;
    position: relative;
}

.elementor-widget-shortcode ul.products li.product img {
    width: 100%;
    height: auto;
}

.elementor-widget-shortcode ul.products li.product .woocommerce-loop-product__title {
    text-align: center;
    font-size: 16px;
    color: var(--e-global-color-text, #333);
}

.elementor-widget-shortcode ul.products li.product .price {
    text-align: center;
    font-size: 19px;
    color: #586D43;
}

.elementor-widget-shortcode ul.products li.product .woocommerce-loop-product__buttons {
    margin-top: auto;
    text-align: center;
}

.elementor-widget-shortcode ul.products li.product .woocommerce-loop-product__buttons .button {
    background-color: #C0AADD;
    color: #fff;
    border-radius: 30px;
    padding: 10px 40px;
    font-family: var(--e-global-typography-secondary-font-family, sans-serif);
    font-weight: var(--e-global-typography-secondary-font-weight, 600);
    border: none;
    transition: all 0.2s;
    display: inline-block;
}

.elementor-widget-shortcode ul.products li.product .woocommerce-loop-product__buttons .button:hover {
    background-color: var(--e-global-color-primary, #9b7ec8);
}

@media (max-width: 1024px) {
    .elementor-widget-shortcode ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .elementor-widget-shortcode ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

