body {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    margin: 0;
    max-width: 100%;
}

@media (min-width: 1140px) {

    .section_nav {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 10vh;
        padding-bottom: 0;
    }

    .nav_link ol {
        display: flex;
        flex-direction: row;
        padding: 0.5rem;
        width: 40%;
        border-radius: 15px;
        justify-content: start;
        align-items: center;
        font-size: 15px;
        color: #474646;
        list-style-type: none;
    }

    .nav_link a {
        text-decoration: none;
        color: #474646;
        transition: color 0.4s ease;
    }

    .nav_link a:hover {
        color: #fff;
    }

    .nav_link_ol_link {
        margin-left: 1rem;
    }

    .nav_link_ol_link_strong {
        font-weight: 600;
    }

    .nav_link_ol_link_color {
        color: #015528;
    }



    .first_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
    }


    .first_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .first_section_grid_img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
        height: 90vh;
    }

    .first_section_grid_img img {
        width: 100%;
        height: 75vh;
        border-radius: 15px;
    }

    .zoomable_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .zoomable_image:hover {
        transform: scale(1.4);
        cursor: zoom-in;
    }

    .zoom_button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #0ead63;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .zoom_button i {
        margin: 0;
    }

    .zoom_button:hover {
        transform: scale(1.05);
        background-color: #fff;
        color: #0ead63;
    }

    .img_reference {
        width: 60px;
        height: 60px;
    }

    .modal {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    .modal_content {
        position: relative;
        width: 40vw;
        height: auto;
        max-height: 60vh;
        background: #0ead63;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal_content img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        border-radius: 10px;
    }

    .close_modal {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: #fff;
        color: #0ead63;
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        z-index: 1100;
    }

    .close_modal i {
        margin: 0;
    }

    .close_modal:hover {
        background-color: #0ead63;
        color: #fff;
        transform: scale(1.1);
    }



    .first_section_grid_info {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .first_section_grid_info_title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 45px;
        color: #015528;
        font-weight: 700;
    }

    .first_section_grid_info_price {
        font-size: 21px;
        margin-top: 0.5rem;
        font-weight: 700;
        color: #474646;
    }


    .first_section_grid_info_text {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-weight: 400;
        color: #474646;
    }

    .first_section_grid_info_text_advice {
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #474646;
    }

    .first_sectiond_second_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        color: #474646;
    }

    .first_sectiond_second_info_grid {
        display: grid;
        grid-template-columns: 50px auto;
        align-items: center;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .first_sectiond_second_info_grid p {
        color: #474646;
        font-size: 16px;
        font-weight: 400;
    }

    .info_img {
        width: 40px;
        height: auto;
    }


    .container_product {
        background: white;
        padding: 20px 0;
        border-radius: 10px;
        text-align: center;
        width: 100%;
    }

    .grid_container_product {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
    }

    .quantity_container_product {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #474646;
        border-radius: 5px;
        width: 90%;
    }

    .quantity_btn {
        background: none;
        border: none;
        font-size: 19px;
        font-weight: bold;
        padding: 5px 10px;
        cursor: pointer;
        color: #474646;
    }

    .quantity_btn:hover {
        color: #474646;
    }

    input {
        width: 40px;
        text-align: center;
        border: none;
        font-size: 16px;
        font-weight: bold;
        color: #474646;
    }

    .cart_btn {
        background-color: #0ead63;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        border: none;
        padding: 9px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        width: 10%;
        text-align: center;
    }

    .cart_btn:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }


    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
    }

    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .third_section_grid_div_button {
        text-decoration: none;
        border: none;
        border-radius: 12px;
        background-color: #0ead63;
        color: #fff;
        padding: 1rem;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35px;
        width: 15%;
        text-align: center;
    }

    .third_section_grid_div_button i {
        margin: 0;
        padding: 0;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .third_section_grid_div_button:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }



    .second_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
        padding-top: 0;
    }

    .second_section_title {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        font-size: 28px;
        margin: 0;
        color: #474646;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }


    .second_section_title img {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .second_section_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .second_section_text p {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        color: #474646;
        line-height: 130%;
        margin-bottom: 2rem;
    }

    .second_section_text a {
        text-decoration: none;
        color: #015528;
        font-weight: 700;
    }



    .third_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
        margin-top: 0;
        padding: 2rem;
        background-color: #f3f4f6;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 28px;
        font-weight: 700;
        color: #474646;
        letter-spacing: 1px;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
        background-color: #f3f4f6;
        margin: auto;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: 25rem;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
    }

    .wishlist-button {
        border: none;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        color: #1f2937;
        transition: color 0.3s ease;
        cursor: pointer;
        text-align: center;
    }

    .wishlist-button:hover .icon {
        color: red;
    }

    .icon {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
    }

    /*.product-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }*/

    .product-image {
        height: 19rem;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-link:hover,
    .product-image:hover {
        transform: scale(1.05);
    }

    .product-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 160px;
        position: relative;
        border: 1px solid #f3f4f6;
        background-color: #ffffff;
        padding: 1rem;
    }

    .product-title {
        margin-top: 0;
        margin-bottom: 0.7rem;
        font-size: 18px;
        font-weight: 600;
        color: #474646;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .product-price {
        margin-bottom: 1.5rem;
        font-size: 14px;
        color: #474646;
        font-weight: 600;
    }


    .button-container {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 0.5rem;
        width: 100%;
        align-items: stretch;
    }

    .view-product-button,
    .add-to-cart-button {
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background-color: #0ead63;
        font-weight: 500;
        padding: 1rem;
        font-size: 12px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        color: #fff;
        margin: 0;
        box-sizing: border-box;
        flex-grow: 1;
        text-align: center;
        height: 60%;
    }

    .view-product-button:hover,
    .add-to-cart-button:hover {
        background-color: #474646;
        color: #0ead63;
        transform: scale(1.05);
    }


    .view-product-button i {
        margin-left: 0.3rem;
    }

    .icon2 {
        margin: 0;
        padding: 0;
    }

    .product_circles_img {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .circles_btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
    }

    .circles_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail-btn.active {
        border-color: #0ead63;
        transform: scale(1.1);
    }

    .thumbnail-btn:hover:not(.active) {
        border-color: #ccc;
    }
}


@media (max-width: 1139px) and (min-width: 800px) {
    .section_nav {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 10vh;
        padding-bottom: 0;
    }

    .nav_link ol {
        display: flex;
        flex-direction: row;
        padding: 0.5rem;
        width: 40%;
        border-radius: 15px;
        justify-content: start;
        align-items: center;
        font-size: 8px;
        color: #474646;
        list-style-type: none;
    }

    .nav_link a {
        text-decoration: none;
        color: #474646;
        transition: color 0.4s ease;
    }

    .nav_link a:hover {
        color: #fff;
    }

    .nav_link_ol_link {
        margin-left: 1rem;
    }

    .nav_link_ol_link_strong {
        font-weight: 600;
    }

    .nav_link_ol_link_color {
        color: #015528;
    }



    .first_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
    }


    .first_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .first_section_grid_img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
        height: 90vh;
    }

    .first_section_grid_img img {
        width: 100%;
        height: 50vh;
        border-radius: 15px;
    }

    .zoomable_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .zoomable_image:hover {
        transform: scale(1.4);
        cursor: zoom-in;
    }

    .zoom_button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #0ead63;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .zoom_button i {
        margin: 0;
    }

    .zoom_button:hover {
        transform: scale(1.05);
        background-color: #fff;
        color: #0ead63;
    }

    .img_reference {
        width: 60px;
        height: 60px;
    }

    .modal {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    .modal_content {
        position: relative;
        width: 40vw;
        height: auto;
        max-height: 60vh;
        background: #0ead63;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal_content img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        border-radius: 10px;
    }

    .close_modal {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: #fff;
        color: #0ead63;
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        z-index: 1100;
    }

    .close_modal i {
        margin: 0;
    }

    .close_modal:hover {
        background-color: #0ead63;
        color: #fff;
        transform: scale(1.1);
    }



    .first_section_grid_info {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .first_section_grid_info_title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 45px;
        color: #015528;
        font-weight: 700;
    }

    .first_section_grid_info_price {
        font-size: 21px;
        margin-top: 0.5rem;
        font-weight: 700;
        color: #474646;
    }


    .first_section_grid_info_text {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-weight: 400;
        color: #474646;
    }

    .first_section_grid_info_text_advice {
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #474646;
    }

    .first_sectiond_second_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        color: #474646;
    }

    .first_sectiond_second_info_grid {
        display: grid;
        grid-template-columns: 50px auto;
        align-items: center;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .first_sectiond_second_info_grid p {
        color: #474646;
        font-size: 12px;
        font-weight: 400;
    }

    .info_img {
        width: 40px;
        height: auto;
    }


    .container_product {
        background: white;
        padding: 20px 0;
        border-radius: 10px;
        text-align: center;
        width: 100%;
    }

    .grid_container_product {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
    }

    .quantity_container_product {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #474646;
        border-radius: 5px;
        width: 90%;
    }

    .quantity_btn {
        background: none;
        border: none;
        font-size: 19px;
        font-weight: bold;
        padding: 5px 10px;
        cursor: pointer;
        color: #474646;
    }

    .quantity_btn:hover {
        color: #474646;
    }

    input {
        width: 40px;
        text-align: center;
        border: none;
        font-size: 16px;
        font-weight: bold;
        color: #474646;
    }

    .cart_btn {
        background-color: #0ead63;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        border: none;
        padding: 9px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        width: 10%;
        text-align: center;
    }

    .cart_btn:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }


    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
    }

    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .third_section_grid_div_button {
        text-decoration: none;
        border: none;
        border-radius: 12px;
        background-color: #0ead63;
        color: #fff;
        padding: 1rem;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35px;
        width: 15%;
        text-align: center;
    }

    .third_section_grid_div_button i {
        margin: 0;
        padding: 0;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .third_section_grid_div_button:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }



    .second_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
        padding-top: 0;
    }

    .second_section_title {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        font-size: 28px;
        margin: 0;
        color: #474646;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }


    .second_section_title img {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .second_section_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .second_section_text p {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        color: #474646;
        line-height: 130%;
        margin-bottom: 2rem;
    }

    .second_section_text a {
        text-decoration: none;
        color: #015528;
        font-weight: 700;
    }



    .third_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
        margin-top: 0;
        padding: 2rem;
        background-color: #f3f4f6;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 28px;
        font-weight: 700;
        color: #474646;
        letter-spacing: 1px;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
        background-color: #f3f4f6;
        margin: auto;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: 25rem;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
    }

    .wishlist-button {
        border: none;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        color: #1f2937;
        transition: color 0.3s ease;
        cursor: pointer;
        text-align: center;
    }

    .wishlist-button:hover .icon {
        color: red;
    }

    .icon {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
    }

    /*.product-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }*/

    .product-image {
        height: 19rem;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-link:hover,
    .product-image:hover {
        transform: scale(1.05);
    }

    .product-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 160px;
        position: relative;
        border: 1px solid #f3f4f6;
        background-color: #ffffff;
        padding: 1rem;
    }

    .product-title {
        margin-top: 0;
        margin-bottom: 0.7rem;
        font-size: 18px;
        font-weight: 600;
        color: #474646;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .product-price {
        margin-bottom: 1.5rem;
        font-size: 14px;
        color: #474646;
        font-weight: 600;
    }


    .button-container {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 0.5rem;
        width: 100%;
        align-items: stretch;
    }

    .view-product-button,
    .add-to-cart-button {
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background-color: #0ead63;
        font-weight: 500;
        padding: 1rem;
        font-size: 12px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        color: #fff;
        margin: 0;
        box-sizing: border-box;
        flex-grow: 1;
        text-align: center;
        height: 60%;
    }

    .view-product-button:hover,
    .add-to-cart-button:hover {
        background-color: #474646;
        color: #0ead63;
        transform: scale(1.05);
    }


    .view-product-button i {
        margin-left: 0.3rem;
    }

    .icon2 {
        margin: 0;
        padding: 0;
    }

    .product_circles_img {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .circles_btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
    }

    .circles_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail-btn.active {
        border-color: #0ead63;
        transform: scale(1.1);
    }

    .thumbnail-btn:hover:not(.active) {
        border-color: #ccc;
    }

    .third_section {
        box-sizing: border-box;
        width: 95%;
        height: auto;
        margin: 1.5rem auto;
        padding: 1rem;
        max-width: 100%;
        background-color: #f3f4f6;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 24px;
        font-weight: 700;
        color: #474646;
        letter-spacing: 1px;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        background-color: #f3f4f6;
        margin: auto;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: 20rem;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
    }


}



@media (max-width: 799px) and (min-width: 600px) {
    .section_nav {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 10vh;
        padding-bottom: 0;
    }

    .nav_link ol {
        display: flex;
        flex-direction: row;
        padding: 0.5rem;
        width: 40%;
        border-radius: 15px;
        justify-content: start;
        align-items: center;
        font-size: 6.5px;
        color: #474646;
        list-style-type: none;
    }

    .nav_link a {
        text-decoration: none;
        color: #474646;
        transition: color 0.4s ease;
    }

    .nav_link a:hover {
        color: #fff;
    }

    .nav_link_ol_link {
        margin-left: 1rem;
    }

    .nav_link_ol_link_strong {
        font-weight: 600;
    }

    .nav_link_ol_link_color {
        color: #015528;
    }



    .first_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
    }


    .first_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .first_section_grid_img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
        height: 90vh;
    }

    .first_section_grid_img img {
        width: 100%;
        height: 40vh;
        border-radius: 15px;
    }

    .zoomable_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .zoomable_image:hover {
        transform: scale(1.4);
        cursor: zoom-in;
    }

    .zoom_button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #0ead63;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .zoom_button i {
        margin: 0;
    }

    .zoom_button:hover {
        transform: scale(1.05);
        background-color: #fff;
        color: #0ead63;
    }

    .img_reference {
        width: 60px;
        height: 60px;
    }

    .modal {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    .modal_content {
        position: relative;
        width: 40vw;
        height: auto;
        max-height: 60vh;
        background: #0ead63;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal_content img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        border-radius: 10px;
    }

    .close_modal {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: #fff;
        color: #0ead63;
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        z-index: 1100;
    }

    .close_modal i {
        margin: 0;
    }

    .close_modal:hover {
        background-color: #0ead63;
        color: #fff;
        transform: scale(1.1);
    }



    .first_section_grid_info {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .first_section_grid_info_title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 45px;
        color: #015528;
        font-weight: 700;
    }

    .first_section_grid_info_price {
        font-size: 21px;
        margin-top: 0.5rem;
        font-weight: 700;
        color: #474646;
    }


    .first_section_grid_info_text {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-weight: 400;
        color: #474646;
    }

    .first_section_grid_info_text_advice {
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #474646;
    }

    .first_sectiond_second_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        color: #474646;
    }

    .first_sectiond_second_info_grid {
        display: grid;
        grid-template-columns: 50px auto;
        align-items: center;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .first_sectiond_second_info_grid p {
        color: #474646;
        font-size: 10px;
        font-weight: 400;
    }

    .info_img {
        width: 40px;
        height: auto;
    }


    .container_product {
        background: white;
        padding: 20px 0;
        border-radius: 10px;
        text-align: center;
        width: 100%;
    }

    .grid_container_product {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
    }

    .quantity_container_product {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #474646;
        border-radius: 5px;
        width: 90%;
    }

    .quantity_btn {
        background: none;
        border: none;
        font-size: 19px;
        font-weight: bold;
        padding: 5px 10px;
        cursor: pointer;
        color: #474646;
    }

    .quantity_btn:hover {
        color: #474646;
    }

    input {
        width: 40px;
        text-align: center;
        border: none;
        font-size: 16px;
        font-weight: bold;
        color: #474646;
    }

    .cart_btn {
        background-color: #0ead63;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        border: none;
        padding: 9px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        width: 10%;
        text-align: center;
    }

    .cart_btn:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }


    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
    }

    .first_section_third_div {
        margin-top: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .third_section_grid_div_button {
        text-decoration: none;
        border: none;
        border-radius: 12px;
        background-color: #0ead63;
        color: #fff;
        padding: 1rem;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35px;
        width: 15%;
        text-align: center;
    }

    .third_section_grid_div_button i {
        margin: 0;
        padding: 0;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .third_section_grid_div_button:hover {
        background-color: #fff;
        color: #0ead63;
        transform: translateY(-3px);
    }



    .second_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 2rem;
        padding-top: 0;
    }

    .second_section_title {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        font-size: 28px;
        margin: 0;
        color: #474646;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }


    .second_section_title img {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .second_section_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .second_section_text p {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        color: #474646;
        line-height: 130%;
        margin-bottom: 2rem;
    }

    .second_section_text a {
        text-decoration: none;
        color: #015528;
        font-weight: 700;
    }



    .third_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
        margin-top: 0;
        padding: 2rem;
        background-color: #f3f4f6;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 28px;
        font-weight: 700;
        color: #474646;
        letter-spacing: 1px;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
        background-color: #f3f4f6;
        margin: auto;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: 25rem;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
    }

    .wishlist-button {
        border: none;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        color: #1f2937;
        transition: color 0.3s ease;
        cursor: pointer;
        text-align: center;
    }

    .wishlist-button:hover .icon {
        color: red;
    }

    .icon {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
    }

    /*.product-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }*/

    .product-image {
        height: 19rem;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-link:hover,
    .product-image:hover {
        transform: scale(1.05);
    }

    .product-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 160px;
        position: relative;
        border: 1px solid #f3f4f6;
        background-color: #ffffff;
        padding: 1rem;
    }

    .product-title {
        margin-top: 0;
        margin-bottom: 0.7rem;
        font-size: 18px;
        font-weight: 600;
        color: #474646;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .product-price {
        margin-bottom: 1.5rem;
        font-size: 14px;
        color: #474646;
        font-weight: 600;
    }


    .button-container {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 0.5rem;
        width: 100%;
        align-items: stretch;
    }

    .view-product-button,
    .add-to-cart-button {
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background-color: #0ead63;
        font-weight: 500;
        padding: 1rem;
        font-size: 12px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        color: #fff;
        margin: 0;
        box-sizing: border-box;
        flex-grow: 1;
        text-align: center;
        height: 60%;
    }

    .view-product-button:hover,
    .add-to-cart-button:hover {
        background-color: #474646;
        color: #0ead63;
        transform: scale(1.05);
    }


    .view-product-button i {
        margin-left: 0.3rem;
    }

    .icon2 {
        margin: 0;
        padding: 0;
    }

    .product_circles_img {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .circles_btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
    }

    .circles_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail-btn.active {
        border-color: #0ead63;
        transform: scale(1.1);
    }

    .thumbnail-btn:hover:not(.active) {
        border-color: #ccc;
    }

    .third_section {
        box-sizing: border-box;
        width: 95%;
        height: auto;
        margin: 1.5rem auto;
        padding: 1rem;
        max-width: 100%;
        background-color: #f3f4f6;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 24px;
        font-weight: 700;
        color: #474646;
        letter-spacing: 1px;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        background-color: #f3f4f6;
        margin: auto;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: 20rem;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
    }

}


@media (max-width: 599px) and (min-width: 400px) {
    .main-container {
        width: 100%;
        overflow-x: hidden;
    }

    .section_nav {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        margin: 8vh auto 0;
        padding: 0 1rem;
    }

    .nav_link ol {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.6rem;
        width: 100%;
        border-radius: 12px;
        justify-content: flex-start;
        align-items: center;
        font-size: 11px;
        color: #474646;
        list-style-type: none;
        margin: 0;
    }

    .nav_link a {
        text-decoration: none;
        color: #474646;
        transition: color 0.4s ease;
        white-space: nowrap;
    }

    .nav_link a:hover {
        color: #0ead63;
    }

    .nav_link_ol_link {
        margin-left: 0.6rem;
    }

    .nav_link_ol_link_strong {
        font-weight: 600;
    }

    .nav_link_ol_link_color {
        color: #015528;
        font-weight: 600;
    }

    .first_section {
        box-sizing: border-box;
        width: 90%;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .first_section_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .first_section_grid_img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
        border-radius: 12px;
        height: auto;
    }

    .first_section_grid_img img {
        width: 100%;
        height: auto;
        max-height: 45vh;
        border-radius: 12px;
        object-fit: cover;
    }

    .zoomable_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .zoomable_image:hover {
        transform: scale(1.1);
        cursor: zoom-in;
    }

    .zoom_button {
        position: absolute;
        top: 12px;
        right: 12px;
        background-color: #0ead63;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 5;
    }

    .zoom_button:hover {
        transform: scale(1.05);
        background-color: #015528;
        color: #fff;
    }

    .modal {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    .modal_content {
        position: relative;
        width: 85vw;
        height: auto;
        max-height: 75vh;
        background: #0ead63;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal_content img {
        width: 100%;
        height: auto;
        max-height: 65vh;
        object-fit: contain;
        border-radius: 8px;
    }

    .close_modal {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 35px;
        height: 35px;
        background-color: #fff;
        color: #0ead63;
        border-radius: 50%;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        z-index: 1100;
    }

    .close_modal:hover {
        background-color: #015528;
        color: #fff;
        transform: scale(1.1);
    }

    .first_section_grid_info {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .first_section_grid_info_title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 32px;
        color: #015528;
        font-weight: 700;
        line-height: 1.2;
    }

    .first_section_grid_info_price {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-weight: 700;
        color: #474646;
    }

    .first_section_grid_info_text {
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-weight: 400;
        color: #474646;
        line-height: 1.5;
    }

    .first_section_grid_info_text_advice {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-weight: 700;
        color: #474646;
    }

    .first_sectiond_second_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        color: #474646;
        margin-top: 0;
        width: 100%;
    }

    .first_sectiond_second_info_grid {
        display: grid;
        grid-template-columns: 45px auto;
        align-items: flex-start;
        margin-bottom: 1.2rem;
        gap: 12px;
        width: 100%;
    }

    .first_sectiond_second_info_grid p {
        color: #474646;
        font-size: 14px;
        margin: 0;
        font-weight: 400;
        line-height: 1.4;
    }

    .info_img {
        width: 40px;
        height: auto;
        object-fit: contain;
    }

    .container_product {
        background: white;
        padding: 18px;
        border-radius: 10px;
        text-align: center;
        width: 100%;
        margin-bottom: 1.8rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .grid_container_product {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .whatsapp-btn {
        background-color: #0ead63;
        color: white;
        padding: 14px 24px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .whatsapp-btn:hover {
        background-color: #015528;
        transform: translateY(-2px);
        color: white;
    }

    .whatsapp-btn i {
        margin-left: 10px;
        font-size: 20px;
    }

    .product_circles_img {
        display: flex;
        gap: 12px;
        margin-top: 18px;
        justify-content: center;
        width: 100%;
    }

    .circles_btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
    }

    .circles_btn.active {
        border-color: #0ead63;
        transform: scale(1.1);
    }

    .circles_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .second_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .policy-item {
        margin-bottom: 2.5rem;
    }

    .second_section_title {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 22px;
        margin: 0 0 1.2rem 0;
        color: #474646;
        font-weight: 600;
    }

    .second_section_title img {
        width: 42px;
        height: 42px;
        margin-right: 1rem;
        object-fit: contain;
    }

    .second_section_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .second_section_text p {
        margin-bottom: 1.2rem;
        font-size: 15px;
        color: #474646;
        line-height: 1.5;
    }

    .second_section_text a {
        text-decoration: none;
        color: #015528;
        font-weight: 600;
    }

    .third_section {
        box-sizing: border-box;
        width: 90%;
        margin: 2.5rem auto;
        padding: 2rem 1.5rem;
        background-color: #f3f4f6;
        border-radius: 12px;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 2rem;
        font-size: 26px;
        font-weight: 700;
        color: #474646;
        line-height: 1.3;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
        margin-bottom: 0;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: auto;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .third_section_grid_div:hover {
        transform: translateY(-5px);
    }

    .wishlist-button {
        border: none;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        color: #474646;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .wishlist-button:hover {
        color: #e63946;
        transform: scale(1.1);
    }

    .product-image {
        height: 220px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.2rem;
        height: auto;
        background-color: #ffffff;
    }

    .product-title {
        margin-top: 0;
        margin-bottom: 0.6rem;
        font-size: 17px;
        font-weight: 600;
        color: #474646;
        min-height: auto;
        line-height: 1.3;
    }

    .product-price {
        margin-bottom: 1.2rem;
        font-size: 17px;
        color: #474646;
        font-weight: 700;
    }

    .button-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        width: 100%;
    }

    .view-product-button {
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background-color: #0ead63;
        font-weight: 500;
        padding: 0.9rem;
        font-size: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
        color: #fff;
        text-align: center;
    }

    .view-product-button:hover {
        background-color: #015528;
        color: #fff;
        transform: translateY(-2px);
    }

    .view-product-button i {
        margin-left: 0.6rem;
    }
}


@media (max-width: 399px) and (min-width: 320px) {
    .main-container {
        width: 100%;
        overflow-x: hidden;
    }

    .section_nav {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        margin: 10vh auto 0;
        padding: 0 1rem;
    }

    .nav_link ol {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.5rem;
        width: 100%;
        border-radius: 12px;
        justify-content: flex-start;
        align-items: center;
        font-size: 10px;
        color: #474646;
        list-style-type: none;
        margin: 0;
    }

    .nav_link a {
        text-decoration: none;
        color: #474646;
        transition: color 0.4s ease;
        white-space: nowrap;
    }

    .nav_link a:hover {
        color: #0ead63;
    }

    .nav_link_ol_link {
        margin-left: 0.4rem;
    }

    .nav_link_ol_link_strong {
        font-weight: 600;
    }

    .nav_link_ol_link_color {
        color: #015528;
        font-weight: 600;
    }

    .first_section {
        box-sizing: border-box;
        width: 90%;
        margin: 0 auto;
        padding: 1rem;
    }

    .first_section_grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .first_section_grid_img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        height: auto;
    }

    .first_section_grid_img img {
        width: 100%;
        height: auto;
        max-height: 35vh;
        border-radius: 10px;
        object-fit: cover;
    }

    .zoomable_image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .zoomable_image:hover {
        transform: scale(1.1);
        cursor: zoom-in;
    }

    .zoom_button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #0ead63;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 5;
    }

    .zoom_button:hover {
        transform: scale(1.05);
        background-color: #015528;
        color: #fff;
    }

    .modal {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow: hidden;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

    .modal_content {
        position: relative;
        width: 90vw;
        height: auto;
        max-height: 80vh;
        background: #0ead63;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal_content img {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 8px;
    }

    .close_modal {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        background-color: #fff;
        color: #0ead63;
        border-radius: 50%;
        font-size: 14px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        z-index: 1100;
    }

    .close_modal:hover {
        background-color: #015528;
        color: #fff;
        transform: scale(1.1);
    }

    .first_section_grid_info {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .first_section_grid_info_title {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 24px;
        color: #015528;
        font-weight: 700;
        line-height: 1.2;
    }

    .first_section_grid_info_price {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 1rem;
        font-weight: 700;
        color: #474646;
    }

    .first_section_grid_info_text {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 1rem;
        font-weight: 400;
        color: #474646;
        line-height: 1.5;
    }

    .first_section_grid_info_text_advice {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 1rem;
        font-weight: 700;
        color: #474646;
    }

    .first_sectiond_second_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        color: #474646;
        margin-top: 0;
        width: 100%;
    }

    .first_sectiond_second_info_grid {
        display: grid;
        grid-template-columns: 40px auto;
        align-items: flex-start;
        margin-bottom: 1rem;
        gap: 10px;
        width: 100%;
    }

    .first_sectiond_second_info_grid p {
        color: #474646;
        font-size: 13px;
        margin: 0;
        font-weight: 400;
        line-height: 1.4;
    }

    .info_img {
        width: 35px;
        height: auto;
        object-fit: contain;
    }

    .container_product {
        background: white;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .grid_container_product {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .whatsapp-btn {
        background-color: #0ead63;
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .whatsapp-btn:hover {
        background-color: #015528;
        transform: translateY(-2px);
        color: white;
    }

    .whatsapp-btn i {
        margin-left: 8px;
        font-size: 18px;
    }

    .product_circles_img {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .circles_btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
    }

    .circles_btn.active {
        border-color: #0ead63;
        transform: scale(1.1);
    }

    .circles_btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .second_section {
        box-sizing: border-box;
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
    }

    .policy-item {
        margin-bottom: 2rem;
    }

    .second_section_title {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 18px;
        margin: 0 0 1rem 0;
        color: #474646;
        font-weight: 600;
    }

    .second_section_title img {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
        object-fit: contain;
    }

    .second_section_text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .second_section_text p {
        margin-bottom: 1rem;
        font-size: 14px;
        color: #474646;
        line-height: 1.5;
    }

    .second_section_text a {
        text-decoration: none;
        color: #015528;
        font-weight: 600;
    }

    .third_section {
        box-sizing: border-box;
        width: 90%;
        margin: 2rem auto;
        padding: 1.5rem 1rem;
        background-color: #f3f4f6;
        border-radius: 10px;
    }

    .third_section_title {
        text-align: center;
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 22px;
        font-weight: 700;
        color: #474646;
        line-height: 1.3;
    }

    .third_section_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 0;
    }

    .third_section_grid_div {
        display: flex;
        flex-direction: column;
        min-height: auto;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        overflow: hidden;
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .third_section_grid_div:hover {
        transform: translateY(-5px);
    }

    .wishlist-button {
        border: none;
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        z-index: 10;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 50%;
        color: #474646;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .wishlist-button:hover {
        color: #e63946;
        transform: scale(1.1);
    }

    .product-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1rem;
        height: auto;
        background-color: #ffffff;
    }

    .product-title {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 16px;
        font-weight: 600;
        color: #474646;
        min-height: auto;
        line-height: 1.3;
    }

    .product-price {
        margin-bottom: 1rem;
        font-size: 16px;
        color: #474646;
        font-weight: 700;
    }

    .button-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        width: 100%;
    }

    .view-product-button {
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background-color: #0ead63;
        font-weight: 500;
        padding: 0.8rem;
        font-size: 14px;
        transition: all 0.3s ease;
        cursor: pointer;
        color: #fff;
        text-align: center;
    }

    .view-product-button:hover {
        background-color: #015528;
        color: #fff;
        transform: translateY(-2px);
    }

    .view-product-button i {
        margin-left: 0.5rem;
    }
}


@media (max-width: 319px) {
    @media (max-width: 319px) {
        .main-container {
            width: 100%;
            overflow-x: hidden;
            min-width: 240px;
            /* Aseguramos compatibilidad con dispositivos muy pequeños */
        }

        .section_nav {
            box-sizing: border-box;
            width: 95%;
            max-width: 100%;
            margin: 8vh auto 0;
            padding: 0 0.5rem;
        }

        .nav_link ol {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            padding: 0.4rem;
            width: 100%;
            border-radius: 8px;
            justify-content: flex-start;
            align-items: center;
            font-size: 9px;
            /* Reducido para pantallas muy pequeñas */
            color: #474646;
            list-style-type: none;
            margin: 0;
            gap: 0.2rem;
        }

        .nav_link a {
            text-decoration: none;
            color: #474646;
            transition: color 0.4s ease;
            white-space: nowrap;
            font-size: 9px;
        }

        .nav_link a:hover {
            color: #0ead63;
        }

        .nav_link_ol_link {
            margin-left: 0.3rem;
        }

        .nav_link_ol_link_strong {
            font-weight: 600;
        }

        .nav_link_ol_link_color {
            color: #015528;
            font-weight: 600;
        }

        .first_section {
            box-sizing: border-box;
            width: 95%;
            margin: 0 auto;
            padding: 0.8rem;
        }

        .first_section_grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .first_section_grid_img {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
            height: auto;
        }

        .first_section_grid_img img {
            width: 100%;
            height: auto;
            max-height: 30vh;
            /* Reducido para pantallas muy pequeñas */
            border-radius: 8px;
            object-fit: cover;
        }

        .zoomable_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .zoomable_image:hover {
            transform: scale(1.05);
            /* Efecto más sutil en pantallas pequeñas */
            cursor: zoom-in;
        }

        .zoom_button {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: #0ead63;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 28px;
            /* Más pequeño para pantallas pequeñas */
            height: 28px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .zoom_button:hover {
            transform: scale(1.05);
            background-color: #015528;
            color: #fff;
        }

        .modal {
            opacity: 0;
            visibility: hidden;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            overflow: hidden;
        }

        .modal.show {
            opacity: 1;
            visibility: visible;
        }

        .modal_content {
            position: relative;
            width: 95vw;
            /* Más ancho relativo para pantallas pequeñas */
            height: auto;
            max-height: 80vh;
            background: #0ead63;
            padding: 12px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal_content img {
            width: 100%;
            height: auto;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 6px;
        }

        .close_modal {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 25px;
            height: 25px;
            background-color: #fff;
            color: #0ead63;
            border-radius: 50%;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            z-index: 1100;
        }

        .close_modal:hover {
            background-color: #015528;
            color: #fff;
            transform: scale(1.1);
        }

        .first_section_grid_info {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            width: 100%;
        }

        .first_section_grid_info_title {
            margin-top: 0;
            margin-bottom: 0.6rem;
            font-size: 20px;
            /* Reducido para pantallas pequeñas */
            color: #015528;
            font-weight: 700;
            line-height: 1.2;
        }

        .first_section_grid_info_price {
            font-size: 16px;
            /* Reducido para pantallas pequeñas */
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-weight: 700;
            color: #474646;
        }

        .first_section_grid_info_text {
            font-size: 12px;
            /* Reducido para pantallas pequeñas */
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-weight: 400;
            color: #474646;
            line-height: 1.4;
        }

        .first_section_grid_info_text_advice {
            font-size: 14px;
            /* Reducido para pantallas pequeñas */
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-weight: 700;
            color: #474646;
        }

        .first_sectiond_second_info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: #474646;
            margin-top: 0;
            width: 100%;
        }

        .first_sectiond_second_info_grid {
            display: grid;
            grid-template-columns: 35px auto;
            /* Imágenes más pequeñas */
            align-items: flex-start;
            margin-bottom: 0.8rem;
            gap: 8px;
            width: 100%;
        }

        .first_sectiond_second_info_grid p {
            color: #474646;
            font-size: 11px;
            /* Reducido para pantallas pequeñas */
            margin: 0;
            font-weight: 400;
            line-height: 1.3;
        }

        .info_img {
            width: 30px;
            /* Más pequeño para pantallas pequeñas */
            height: auto;
            object-fit: contain;
        }

        .container_product {
            background: white;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            width: 100%;
            margin-bottom: 1.2rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .grid_container_product {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .whatsapp-btn {
            background-color: #0ead63;
            color: white;
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            font-size: 14px;
            /* Ajustado para pantallas pequeñas */
        }

        .whatsapp-btn:hover {
            background-color: #015528;
            transform: translateY(-2px);
            color: white;
        }

        .whatsapp-btn i {
            margin-left: 6px;
            font-size: 16px;
        }

        .product_circles_img {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            justify-content: center;
            width: 100%;
        }

        .circles_btn {
            width: 40px;
            /* Más pequeño para pantallas pequeñas */
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid transparent;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
        }

        .circles_btn.active {
            border-color: #0ead63;
            transform: scale(1.1);
        }

        .circles_btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .second_section {
            box-sizing: border-box;
            width: 95%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0.8rem;
        }

        .policy-item {
            margin-bottom: 1.5rem;
        }

        .second_section_title {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            font-size: 16px;
            /* Reducido para pantallas pequeñas */
            margin: 0 0 0.8rem 0;
            color: #474646;
            font-weight: 600;
        }

        .second_section_title img {
            width: 30px;
            /* Más pequeño para pantallas pequeñas */
            height: 30px;
            margin-right: 0.6rem;
            object-fit: contain;
        }

        .second_section_text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .second_section_text p {
            margin-bottom: 0.8rem;
            font-size: 12px;
            /* Reducido para pantallas pequeñas */
            color: #474646;
            line-height: 1.4;
        }

        .second_section_text a {
            text-decoration: none;
            color: #015528;
            font-weight: 600;
            font-size: 12px;
        }

        .third_section {
            box-sizing: border-box;
            width: 95%;
            margin: 1.5rem auto;
            padding: 1.2rem 0.8rem;
            background-color: #f3f4f6;
            border-radius: 8px;
        }

        .third_section_title {
            text-align: center;
            margin-top: 0;
            margin-bottom: 1.2rem;
            font-size: 18px;
            /* Reducido para pantallas pequeñas */
            font-weight: 700;
            color: #474646;
            line-height: 1.2;
        }

        .third_section_grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            margin-bottom: 0;
        }

        .third_section_grid_div {
            display: flex;
            flex-direction: column;
            min-height: auto;
            position: relative;
            cursor: pointer;
            justify-content: space-between;
            overflow: hidden;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .third_section_grid_div:hover {
            transform: translateY(-3px);
            /* Efecto más sutil en pantallas pequeñas */
        }

        .wishlist-button {
            border: none;
            position: absolute;
            top: 0.6rem;
            right: 0.6rem;
            z-index: 10;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.6rem;
            height: 1.6rem;
            border-radius: 50%;
            color: #474646;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .wishlist-button:hover {
            color: #e63946;
            transform: scale(1.1);
        }

        .product-image {
            height: 160px;
            /* Reducido para pantallas pequeñas */
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-details {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 0.8rem;
            height: auto;
            background-color: #ffffff;
        }

        .product-title {
            margin-top: 0;
            margin-bottom: 0.4rem;
            font-size: 14px;
            /* Reducido para pantallas pequeñas */
            font-weight: 600;
            color: #474646;
            min-height: auto;
            line-height: 1.2;
        }

        .product-price {
            margin-bottom: 0.8rem;
            font-size: 14px;
            /* Reducido para pantallas pequeñas */
            color: #474646;
            font-weight: 700;
        }

        .button-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.6rem;
            width: 100%;
        }

        .view-product-button {
            text-decoration: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background-color: #0ead63;
            font-weight: 500;
            padding: 0.6rem;
            font-size: 12px;
            /* Reducido para pantallas pequeñas */
            transition: all 0.3s ease;
            cursor: pointer;
            color: #fff;
            text-align: center;
        }

        .view-product-button:hover {
            background-color: #015528;
            color: #fff;
            transform: translateY(-2px);
        }

        .view-product-button i {
            margin-left: 0.4rem;
            font-size: 12px;
        }

        /* Ajustes adicionales para dispositivos muy pequeños */
        @media (max-width: 240px) {
            .nav_link ol {
                font-size: 8px;
                padding: 0.3rem;
            }

            .nav_link a {
                font-size: 8px;
            }

            .first_section_grid_info_title {
                font-size: 18px;
            }

            .first_section_grid_info_price {
                font-size: 14px;
            }

            .whatsapp-btn {
                padding: 8px 12px;
                font-size: 12px;
            }

            .product_circles_img {
                flex-wrap: wrap;
            }

            .circles_btn {
                width: 35px;
                height: 35px;
            }
        }
    }
}