/* section 10 */

.section10 {
    background: #000;
    display: flex;
}
.section10 .info-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding: 0vw 5vw 0vw 8vw;*/
    background: #fff;

}
.section10 .info-container h2 {
    font-size: 3vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    padding-left: 5vw;
}

.section10 {
    flex-wrap: wrap;
    align-items: center;
}
.model-filters{
    /*padding: 0vw 5vw 0vw 13vw;*/
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}
body div:last-child[style*="position: absolute"][style*="z-index: 9999"] {
    display: none !important;
}
.model-filters h3 {
    color: #CDA23D;
    margin-bottom: 10px;
}
.model-filters .button-scroll-container {
    display: flex; /* Keeps items inline and doesn't expand the container */
    gap: 10px;
    flex-wrap: wrap; /* Ensures content wraps properly if needed */
    justify-content: flex-start;
}
/* Styling for buttons */
.model-filters .model-btn {
    display: flex;
    flex: 0 0 auto; /* Prevent buttons from shrinking */
    cursor: pointer;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    font-size: .875rem;
    line-height: 1.5;
    /*border: 1.5px solid #DDDDDD;*/
    background-color: #DDDDDD;
    height: fit-content;
}
.model-filters .model-btn .model-label {
    padding: .25rem .5rem;
    /*background-color: #DDDDDD;*/
    width: 100%;
    text-align: center;
}
.model-filters .model-img{
    background-color: #DDDDDD;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model-filters .model-btn.active{
    /*border-color: #CDA23D;*/
}
/* Selected button style */
.model-filters .model-btn.active .model-label {
    /*border-color: #CDA23D;*/
    background-color: #CDA23D;
}
/* Button hover effect */
.model-filters .model-btn:hover{
    /*border-color: #CDA23D;*/
}
.model-filters .model-btn:hover .model-label {
    background-color: #CDA23D;
    color: #ffffff;
    /*border-color: #CDA23D;*/
}

.model-filters .model-row{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
}
#mcanvas {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .section10 {
        flex-direction: column;
    }
    .section10 .info-container {
        width: 100%!important;
        padding-top: 150px;
        padding-bottom: 75px;
    }
    .section10 .model-filters  {
        width: 100%!important;
        padding: 150px 0;
    }
    #mcanvas {
        height: 500px;
    }
}

@media (max-width: 767px) {
  .section10 .info-container {
        width: 100%!important;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .section10 .model-filters  {
        width: 100%!important;
        padding: 120px 20px;
    }
    #mcanvas {
        height: 500px;
    }
}
