/* — Характеристики товара — */
.js-store-prod-all-charcs {
    display: none;
}
.js-store-prod-all-charcs.show-chrs {
    display: block;
}
.js-store-prod-all-charcs p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px;
}
.js-store-prod-all-charcs p > div {
    border: 1px solid #cdcdcd;
    margin-top: -1px;
    padding: 3px;
}
.chr-descr {
    margin-left: -1px;
}

/* — Убираем ненужное — */
.js-store-product[data-product-pack-m="0"] p.js-store-prod-weight {
    display: none;
}
.js-store-product[data-product-pack-x="0"] p.js-store-prod-dimensions {
    display: none;
}

/* — CLS фикс для изображений — */
.t-store__product-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* — Адаптив — */
@media (max-width: 768px) {
    .bl2-wrap .bl2-item .bl2-item-head {
        flex-direction: column-reverse;
    }
    .uc-experience .bl2-wrap,
    .uc-experience .bl2-wrap .bl2-item.ti-4 .bl2-item-contact {
        flex-direction: column;
    }
    .uc-experience .bl2-wrap .bl2-item {
        width: 100%;
    }
    .t280__container.t280__positionfixed {
        top: initial;
    }
}

/* — Поисковый модуль — */
.uc-zero-search {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}
.uc-zero-search.active {
    opacity: 1;
    visibility: visible;
}
.uc-zero-search input {
    width: 80%;
    max-width: 600px;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
}
.uc-zero-search .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}
#opensearch-container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    z-index: 9999;
}
#opensearch-container input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#opensearch-container.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.search-icon {
    cursor: pointer;
}