/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop */
    gap: 10px;
}

.product-feature-item {
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-image {
    height: 280px !important;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-title {
    margin-top: 10px !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #222 !important;
/* 	min-height: 60px; /* adjust as needed */ */
}

.feature-description {
    margin-top: 8px !important;
    color: #666 !important;
    font-size: 14px !important;
	font-family: poppins !important;
}

/* Tablet */
@media (max-width: 991px) {
    .product-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .product-features {
        grid-template-columns: 1fr;
    }
}