.elementor-1105 .elementor-element.elementor-element-3ac2d38:not(.elementor-motion-effects-element-type-background), .elementor-1105 .elementor-element.elementor-element-3ac2d38 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E9E9E9;}.elementor-1105 .elementor-element.elementor-element-3ac2d38{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1105 .elementor-element.elementor-element-3ac2d38 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1105 .elementor-element.elementor-element-608c06a > .elementor-widget-container{margin:50px 0px 0px 20px;}.elementor-1105 .elementor-element.elementor-element-608c06a .elementor-heading-title{color:#000000;font-family:"Arial", Sans-serif;font-size:33px;font-weight:600;}.elementor-1105 .elementor-element.elementor-element-f83f832:not(.elementor-motion-effects-element-type-background), .elementor-1105 .elementor-element.elementor-element-f83f832 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E9E9E9;}.elementor-1105 .elementor-element.elementor-element-f83f832 > .elementor-background-overlay{opacity:0.74;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1105 .elementor-element.elementor-element-f83f832{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1105 .elementor-element.elementor-element-d617fc9.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-1105 .elementor-element.elementor-element-d617fc9 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:4px;}/* Start custom CSS for shortcode, class: .elementor-element-1243d27 *//* Contenedor del producto */
.custom-product-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.custom-product-card:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

/* Imagen del producto */
.custom-product-card .product-image {
    width: 40%; /* Ajusta este valor para cambiar el ancho de la imagen */
    height: 250px; /* Ajusta la altura máxima de las imágenes */
    overflow: hidden;
}

.custom-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

/* Contenido del producto */
.custom-product-card .product-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Barrio */
.custom-product-card .product-content .barrio {
    font-size: 14px;
    color: #333;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
}

/* Ciudad */
.custom-product-card .product-content .ciudad {
    font-size: 16px;
    color: #333;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Título del producto */
.custom-product-card .product-content .product-title a {
    font-size: 20px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 5px; /* Reducido para acercar Ciudad */
    line-height: 1;
}

.custom-product-card .product-content .product-title a:hover {
    color: #0056b3;
}

/* Descripción del producto */
.custom-product-card .product-content .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    max-height: 4.8em; /* Controla el máximo de líneas que quieres mostrar */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas que quieres mostrar */
    -webkit-box-orient: vertical;
}

/* Estilo para las etiquetas (tags) del producto */
.custom-product-card .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-product-card .product-tags a {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    pointer-events: none;
}

.custom-product-card .product-tags a:hover {
    background-color: #e2e2e2;
    border-color: #ccc;
}

/* Estilo general del contenedor de productos */
.products-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.woocommerce-js h2 {
    margin-bottom: 0.1em!important;
}


h2.product-title {
    line-height: 30px;
    text-transform: uppercase;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-28b48bd *//* Estilos para el shortcode móvil */

/* Contenedor del producto */
.custom-product-card-mobile {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    flex-direction: column; /* Cambiado para móvil */
    transition: box-shadow 0.3s ease-in-out;
}

.custom-product-card-mobile:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

/* Imagen del producto */
.product-image-mobile {
    width: 100%; /* Imagen toma todo el ancho en móvil */
    height: auto; /* Ajuste de altura automática */
    overflow: hidden;
}

.product-image-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0; /* Esquinas redondeadas solo arriba */
}

/* Contenido del producto */
.product-content-mobile {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Contenido alineado al inicio */
}

/* Título del producto */
.product-title-mobile a {
    font-size: 18px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase; /* Título en mayúsculas */
    margin-bottom: 10px;
}

/* Descripción del producto */
.product-description-mobile {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    max-height: 4.8em; /* Ajustado para móvil */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Mostrar hasta 3 líneas */
    -webkit-box-orient: vertical;
}

/* Estilo para las etiquetas (tags) del producto */
.product-tags-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tags-mobile a {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    pointer-events: none;
}

.product-tags-mobile a:hover {
    background-color: #e2e2e2;
    border-color: #ccc;
}

/* Estilo general del contenedor de productos */
.products-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woocommerce-js h2 {
    margin-bottom: 0.1em!important;
}


h2.product-title {
    line-height: 30px;
    text-transform: uppercase;
}/* End custom CSS */