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


/* listaodo de productos relacionados */

.productos_relacionados {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.productos_relacionados .producto_relacionado{
	border-radius: 24px 24px 24px 24px;
	flex: 0 0 31%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 20px 1%;
	padding: 20px 0;
	text-align:center;
}
.productos_relacionados .producto_relacionado img {
    padding: 10px;
    height: 220px;
    object-fit: contain;
}
.productos_relacionados .producto_relacionado p.title_product_relacionado {
    color: #000;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    padding: 0 20px;
}
.productos_relacionados .producto_relacionado .excerpt_relacionado {
    color: #000;
    padding: 0 20px;
    text-align: center;
}

nav.rank-math-breadcrumb a {
	color: #FFE100;
}

body:not(.single-product, .single-post) nav.rank-math-breadcrumb span {
    color: #fff;
}

@media (max-width:768px){
	.productos_relacionados .producto_relacionado{
		flex: 0 0 48%;
	}
	.productos_relacionados .producto_relacionado p.title_product_relacionado {
		padding: 0 10px;
	}
}

/** Shortcode subcategorias personalizadas **/
.subcategorias_woocommerce {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.subcategorias_woocommerce .subcategoria .info_subcategoria {
    background: #070707;
    margin-top: -7px;
    padding: 10px;
}
.subcategorias_woocommerce .subcategoria .titulo a{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
	display:block;

}
.subcategorias_woocommerce .subcategoria .subcategoria img {
    width: 100%;
}
.subcategorias_woocommerce .subcategoria .descripcion_personalizada {
    color: #fff;
    text-align: center;

}
.subcategorias_woocommerce .subcategoria img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}
@media (max-width:768px){
	.subcategorias_woocommerce {
		grid-template-columns: repeat(1, 1fr);
		grid-column-gap: 10px;
		grid-row-gap: 20px;
	}
}