@media (max-width: 600px) {
  .sections_wrapper .cat_sections {
    padding-left: 16px;
    margin-left: -16px;
    padding-right: 16px;
    margin-right: -16px;
  }
  #main .wrapper_inner.front .drag-block.container .sections_wrapper {
    padding-bottom: 25px;
  }
  .sections_wrapper .item_block{
    width: 100px;
  }
}
.sections-slider-wrap{
  position: relative;
}
.cat-sections-all__image{
  background: var(--darkerblack_bg_black);
  border-radius: 50%;
}
.grey_block .cat-sections-all__image{
  background: var(--black_bg_black);
}
.sections_wrapper.icons .cat-sections-all__image{
  background: none;
}
.cat-sections-all__image a{
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sections_wrapper .cat-sections-all svg path{
  fill: var(--white_text_black);
}
.svg-inline-cat_sections{
  display: block;
}
.svg-inline-cat_sections{
  display: block;
}
.svg-inline-cat_sections svg{
  vertical-align: middle;
}

/*round sections*/
body .sections_wrapper .cat_sections--round .item:not(.section_item) .img{
  width: auto;
  height: auto;
  line-height: normal;
  /* padding-top: 100%; */
  padding-top: clamp(40px, 100%, 150px);
  max-width: 150px;
  position: relative;
}
.sections_wrapper .cat_sections--round .img img, 
.sections_wrapper .cat_sections--round .img .svg-inline-cat_sections{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.sections_wrapper .svg-inline-cat_sections{
  display: flex;
  justify-content: center;
  align-items: center;
}
.sections_wrapper .svg-inline-cat_sections svg{
  width: auto;
  height: auto;
  line-height: normal;
}
@media(min-width: 768px){
  .sections_wrapper .cat_sections{
    margin: 0 30px;
  }
  .sections_wrapper .cat_sections--round{
    margin: 0 58px;
  }
}

/**/

/* ======== ИКОНКИ КАТЕГОРИЙ В СТИЛЕ iOS ======== */

/* Сама иконка-круг */
.sections_wrapper .cat_sections--round .item:not(.section_item) .img {
    border-radius: 28% !important; /* iOS-скругление, не идеальный круг */
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(14px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden !important;
}

/* При наведении — всплытие */
.sections_wrapper .cat_sections--round .item:not(.section_item):hover .img {
    transform: translateY(-5px) scale(1.06) !important;
    box-shadow: 
        0 14px 30px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Картинка внутри — чуть увеличена для эффекта */
.sections_wrapper .cat_sections--round .img img {
    transition: transform 0.5s ease !important;
}
.sections_wrapper .cat_sections--round .item:not(.section_item):hover .img img {
    transform: scale(1.1) !important;
}

/* Подпись под иконкой */
.sections_wrapper .cat_sections--round .item .name {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: #1a1a2e !important;
    margin-top: 10px !important;
    text-align: center !important;
    letter-spacing: -0.01em !important;
}

/* Тёмный круг (если используется как подложка) — делаем стеклянным */
.cat-sections-all__image {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

/* На мобильных — меньше эффектов */
@media (max-width: 600px) {
    .sections_wrapper .cat_sections--round .item:not(.section_item) .img {
        backdrop-filter: blur(8px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(8px) saturate(140%) !important;
        border-radius: 24% !important;
    }
    
    .sections_wrapper .cat_sections--round .item:not(.section_item):hover .img {
        transform: translateY(-2px) scale(1.03) !important;
    }
}