.features-wrapper {
    position: relative;
}

.features-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.features-popup h3 {
    margin-bottom: 10px;
    font-size: 28px;
    padding: 3px 0px 0px 0px;
    font-weight: 400;
    float: left;
    position: relative;
    width: 100%;
    color: rgb(34, 34, 34) !important;
    line-height: 36px;
}
.features-popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 48px 96px;
    width: 80%;
    max-width: 800px;
    border-radius: 4px;
    position: relative;
    max-height: 65vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0px 16px 32px -8px #0C0C0D66;
    overflow-y: scroll;
}

.features-popup-close {
    color: #1E1E1E;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
}

.features-popup-close:hover,
.features-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.show-more-features {
    text-align: start;
    margin: 20px 0;
}

/* Show all category headers */
.features-popup-list .feature_chapter_name {
    display: block !important;
}
.features-limited .feature_chapter_name {
    display: none !important;
}
/* Hide features after the first 10 in each category */
.features-popup-list .feature_block_Засоби.безпеки .listing_detail.col-md-6:nth-child(n+5),
.features-popup-list .feature_block_Зручності .listing_detail.col-md-6:nth-child(n+5),
.features-popup-list .feature_block_Особливості .listing_detail.col-md-6:nth-child(n+5) {
    display: block !important;
}

/* Hide features after the first 10 in each category */
.features-limited .feature_block_Засоби.безпеки .listing_detail.col-md-6:nth-child(n+6),
.features-limited .feature_block_Зручності .listing_detail.col-md-6:nth-child(n+6),
.features-limited .feature_block_Особливості .listing_detail.col-md-6:nth-child(n+6) {
    display: none !important;
}

/* Ensure total visible features across all categories don't exceed 10 */
.features-limited .listing_detail.col-md-6 {
    display: none;
}

.features-limited .listing_detail.col-md-6:nth-child(-n+10) {
    display: block;
}
.features-limited .listing_detail.col-md-12 {
  margin-bottom: -10px !important;
  margin-top: -15px;
}
/* Show all features in the popup */
.features-popup .listing_detail {
    display: block !important;
}

/* Ensure proper layout */
.listing_detail.col-md-12 {
    clear: both;
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

/* Fix feature blocks layout */
.feature_block_others,
.feature_block_Засоби,
.feature_block_Зручності,
.feature_block_Особливості {
    clear: both;
    width: 100%;
    float: left;
}

#show-all-features {
  margin-bottom: 0px;
  padding: 16px 12px;
  border: 1px solid rgb(118, 118, 118);
  width: 240px;
  border-radius: 8px;
  color: rgb(30, 30, 30) !important;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  margin-top: 24px;
  background: transparent;
}

@media screen and (max-width: 767px) {
    .features-popup-content {
        margin: 5% auto;
        padding: 16px 16px;
        width: 95%;
    }
     .features-popup-list .listing_detail.col-md-12 {
        width: 100% !important;
    }
    .features-popup-list .listing_detail .listing_detail.col-md-6 {
        width: 50% !important;
        float: left;
    }
}