/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * 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.
 */

.add_to_cart_button{
	color:#fff !important
}
.homepage-product-categories {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.homepage-product-category {
    flex: 1;
    min-width: 0;
    text-align: center;
    text-decoration: none !important;
    color: #222 !important;
}

.homepage-product-category-image {
    padding: 10px;
    width: 100%;
    height: 255px;
    max-width: 100%;
    margin: 0 auto 28px;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
}
.elementor-widget-theme-post-featured-image {
	background: #f5f5f5;
}
.elementor-widget-theme-post-featured-image img{
	width:100% !important
}
.custom_addcart_btn {
	text-align:center !important;
	left:0;
	right:0;
}
.homepage-product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.homepage-product-category:hover
.homepage-product-category-image img {
    transform: scale(1.04);
}

.homepage-product-category-title {
    display: inline-block;
    font-size: 16px;
	font-family: 'Poppins';
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d5d5d5;
}

/* Tablet */
@media (max-width: 991px) {

    .homepage-product-categories {
        gap: 20px;
    }

    .homepage-product-category-image {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .homepage-product-category-title {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .homepage-product-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .homepage-product-category-image {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .homepage-product-category-title {
        font-size: 14px;
    }
}