/*
 Theme Name:   Hello Elementor Child
 Template:     hello-elementor
 Text Domain:  hello-elementor-child
*/

@import url("../hello-elementor/style.css");


/* ----------------------------- */
/* Estilo para página de producto WooCommerce */
/* ----------------------------- */

.product-page-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 500px) 1fr;
    gap: 30px;
}

.product-images-section {
    width: 100%;
}

.woocommerce-product-gallery {
    max-height: 500px;
    overflow: hidden;
}

.woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
}




.product-summary .product_title {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-summary .price {
    font-size: 24px;
    color: #0073aa;
    margin-bottom: 20px;
}

.product-summary .woocommerce-product-rating {
    margin-bottom: 15px;
}

.product-summary .woocommerce-product-details__short-description {
    margin-bottom: 20px;
}

.product-summary .single_add_to_cart_button {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.product-summary .single_add_to_cart_button:hover {
    background-color: #005f8d;
}

.product-summary .product_meta {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.product-details-video {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.product-specifications,
.product-video {
    flex: 1 1 48%;
}

.product-specifications h2,
.product-video h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.related-products {
    margin-top: 80px;
}

.related-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
}




/* ANCHURA DE PAGINA DEL PRODUCTO */
@media (min-width: 1200px){
    .site-main {
        max-width: 1400px !important;
    }

}