/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 192:0 Unexpected "<"

**/
<style>
    .product-container {
        font-family: sans-serif;
        color: #222;
        max-width: 1200px;
        margin: auto;
    }

    .product-header {
        text-align: center;
        margin-bottom: 0;
    }

    .product-header h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .product-header p {
        font-size: 18px;
        line-height: 1.6;
        max-width: 800px;
        margin: auto;
        text-align: justify;
        margin-bottom: 25px;
    }

    .toggle-content-button {
        background-color: transparent;
        color: #222;
        border: 2px solid #222;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s ease;
        display: block;
        margin: 0 auto 15px auto;
    }

    .toggle-content-button:hover {
        background-color: #00bcd4;
        color: white;
        border-color: #00bcd4;
    }

    #hiddenContent {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        margin-top: 30px;
    }

    #hiddenContent.visible {
        display: block;
        opacity: 1;
    }

    .section-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .section-container.reverse {
        flex-direction: row-reverse;
    }

    .section-image {
        width: 45%;
        max-width: 550px;
        object-fit: cover;
        object-position: center;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
    }

    .section-text {
        width: 50%;
    }

    .section-text h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .section-text p {
        font-size: 18px;
        line-height: 1.7;
        text-align: justify;
    }

    .full-width-image-section {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .full-width-image-section img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
    }

    .full-width-image-section h2 {
        font-size: 28px;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .full-width-image-section p {
        font-size: 18px;
        line-height: 1.7;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    .final-message {
        font-weight: bold;
        font-size: 20px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px; /* Espacio reducido con productos recomendados */
    }

    @media (max-width: 991px) {
        .section-container {
            flex-direction: column !important;
            text-align: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .section-image,
        .section-text {
            width: 100%;
            max-width: 100%;
        }

        .section-text h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .section-text p {
            font-size: 17px;
        }

        .product-header h1 {
            font-size: 28px;
        }

        .product-header p {
            font-size: 16px;
        }

        .final-message {
            font-size: 18px;
        }

        .full-width-image-section h2 {
            font-size: 24px;
        }

        .full-width-image-section p {
            font-size: 17px;
        }

        .toggle-content-button {
            font-size: 16px;
            padding: 8px 15px;
        }
    }
</style>