/* Title - PDP LP */

.section_title {
    display: flex;
    align-items: center;
    margin: 1rem;
}

.section_title::after,
.section_title::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.section_05 .section_title h2,
.section_title h2 {
    text-align: center;
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.section_title h2 {
    width: 100%;
}

/* .section_05 .section_title h2 {
    width: 100%;
} */

.section_01 .section_title {
    display: none;
}

@media (max-width: 1024px) {
    .section_01 .section_title {
        display: flex;
    }

    .section_05 .section_title h2,
    .section_title h2 {
        font-size: 16px;
    }
}

/* Section I */

.section_01_img_desktop {
    display: block;
}

.section_01_img_mobile {
    display: none;
}

@media (max-width: 1024px) {
    .section_01_img_mobile {
        display: block;
    }

    .section_01_img_desktop {
        display: none;
    }
}

/* Section II, IV and V - PDP LP */

.section_02_images,
.section_04_images,
.section_05_images {
    display: flex;
}

.section_04_images .table-desk {
    display: block;
}

.section_04_images .table-mob {
    display: none;
}

.section_05_images a {
    display: flex;
}

@media (max-width: 1024px) {
    .section_04_images .table-desk {
        display: none;
    }

    .section_04_images .table-mob {
        display: block;
    }

    .section_02_images,
    .section_04_images {
        flex-direction: column;
    }

    .section_02_images img,
    .section_04_images img {
        width: 100% !important;
    }

    .section_05_images {
        overflow: scroll;
    }

    .section_05_images a {
        width: 100%;
    }

    .section_05_images img {
        height: auto;
        /* width: auto !important; */
        width: 400px !important;
    }
}

/* Section III - PDP LP */

.section_03_container {
    display: flex;
}

.section_03_image,
.section_03_info {
    width: 50%;
}

.section_03_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.section_03_specifications h2 {
    font-size: 20px;
    font-weight: bold;
}

.section_03_info>h1 {
    font-size: 24px;
    font-weight: bold;
}

.section_03_icons {
    display: flex;
    gap: 1rem;
}

.section_03_icons>div {
    display: flex;
}

.icons_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icons_title,
.icons_value {
    margin: 0;
}

.icons_title {
    font-size: 14px;
    color: #686868;
}

.icons_value {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .section_03_container {
        flex-direction: column;
    }

    .section_03_info {
        padding: 1rem;
    }

    .section_03_image,
    .section_03_info {
        width: 100%;
        gap: 10px;
    }

    .section_03_icons {
        gap: 10px;
        flex-direction: column;
    }

    .section_03_info>h1 {
        font-size: 16px;
    }

    .icons_title {
        font-size: 12px;
    }

    .icons_value {
        font-size: 16px;
    }

    .section_03_specifications h2 {
        font-size: 14px;
    }
}

/* FAQ */

.faq-container {
    width: 60%;
    margin: 50px auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    color: #000;
    font-weight: bold;
}

.faq-question svg {
    transition: transform 0.3s;
}

.faq-question.open svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 10px;
    margin-top: 5px;
}

@media (max-width: 1024px) {

    .faq-container {
        width: 100%;
        margin: 0;
    }

    .faq-question {
        gap: 1rem;
    }

    .faq-question svg {
        min-width: 25px;
        min-height: 14px;
    }
}

/* BOTTOM BAR */

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    z-index: 999;
    gap: 10px;
}

.bottom-bar button {
    border: none;
    background: #3B3B3D;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    width: 450px;
    font-size: 20px;
    height: 50px;
}

@media (max-width: 1024px) {
    .bottom-bar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .bottom-bar>h2 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        font-size: 16px;
        text-align: start;
        margin: 0 !important;
    }

    .bottom-bar .price-container {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .bottom-bar .price-container .js-price-display {
        font-size: 16px !important;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .bottom-bar button {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        width: 150px;
        font-size: 16px;
    }
}

/* NAVIGATION BAR */

.navigation-bar {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #CDCDCD;
}

.navigation-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navigation-bar ul li {
    display: inline;
    margin-right: 60px;
    font-size: 20px;
    padding: 8px 16px;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.navigation-bar ul li:hover {
    background-color: #B5A991;
    border-radius: 20px;
    padding: 8px 16px;
}


.navigation-bar ul li a {
    text-decoration: none;
    color: #000;
}

.navigation-bar ul li a:hover {
    color: #000;
}

@media (max-width: 1024px) {
    .navigation-bar {
        display: none;
    }
}

/* PARALLAX EFFECT */

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.parallax-container.desktop {
    display: block;
}

.parallax-container.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .parallax-container.desktop {
        display: none;
    }

    .parallax-container.mobile {
        display: block;
    }
}

.template-product .bonifiq-widget-section {
    bottom: 170px !important;
}

.template-product ._orientationLeft_aae7 .button_d794 {
    margin-bottom: 85px !important;
}

/* PARALLAX II - MOBILE */

.wapper-parallax {}

.parallax-container-dev {
    top: 60px;
    position: sticky;
}

.wapper-parallax .section_01_img_mobile {
    height: 100%;
}

.wapper-parallax .parallax-container-dev-normal .section_01_img_mobile {
    transform: none;
}

.wapper-parallax.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .wapper-parallax.mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* TrustVox */

#dynamic-content-container #trustvox-reviews {
    margin-top: 50px;
    margin-bottom: 50px;
}

#dynamic-content-container #trustvox-reviews h3 {
    text-align: center;
}