/* 
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 */

/* Related Product Section CSS */
.related-product-wrapper{
	font-family: "Titillium Web";
}
.related-product-wrapper .related-product-item-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}
.related-product-item {
    flex: 0 0 calc(33.333% - 10px);
    border: 1px solid #323E50;
	border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
	font-family: "Titillium Web";
}
.related-product-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-product-item-inner {
    padding: 30px;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.related-product-title {
    margin: 0 0 10px;
    font-size: 18px;
}
.related-product-title a {
	color: #323e50;
	font-weight: 700;
}
.related-product-content {
    margin-bottom: 50px;
	    height: 90px;
    overflow: hidden;
}

.related-product-view-details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.related-product-view-details a {
    color: #323e50;
    text-decoration: none;
}
.related-product-view-details a:hover{
	color: #5ca7d4;
}
.related-product-view-details .icon {
    margin-left: 5px;
}
h2.related-product-heading {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

a.related-product-button {
    background: #FFC600;
    color: #333333;
    padding: 15px 30px;
    border-radius: 50px;
}
a.related-product-button:hover {
    background: #BDDBFA;
}
.related-product-button-wrapper {
    text-align: center;
    display: block;
    margin-top: 50px;
}
@media (max-width: 991px) {
    .related-product-item {
        flex: 0 0 calc(50% - 10px); 
    }
}

@media (max-width: 767px) {
    .related-product-item {
        flex: 0 0 calc(100% - 10px); 
    }
}
/* Related Product Section CSS */