.menu__banner > div {display:flex;flex-direction:column;justify-content:center;height:100%;max-height:428px;padding: 15px;text-align:center;background: radial-gradient(circle, rgba(0,137,168, .5) 0%, #057d99 100%);border-radius:4px}
.menu__banner div img {margin:20px 0;padding:15px}
.menu__banner span {font-size:1.5em;font-weight:500}
.menu__banner span:last-of-type{font-size:1.3em}

.product-thumb .option__group {clear:both}


.checkout-customer__group {
display: none;
}

.menu__level-1-img {
    width: 38px;
    height: 38px;
}

.home-page .html-module {
    padding: 15px 0;
    background: none;
}
@media (min-width: 1600px) {
.header-search2 {
    padding-top: 20px;
}
}
.allbtn {
background: #f29633;
    color: #fff;
    padding: 10px 15px;
}

.allbtn:hover {
background: #ef8b1f;
color:#fff;
}

.stock {display: none;}

.dropdown-menu li > a img {
    max-width: 30px;
}


.section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
}




.sfera-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 400px; /* ФИКСИРОВАННАЯ ВЫСОТА */
    display: flex;
    flex-direction: column;
margin-bottom: 2rem; /* ДОБАВЛЕНО - отступ снизу */
}

.sfera-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sfera-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.sfera-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sfera-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 42px;
}

.sfera-info {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 768px) {
    .sfera-card {
        height: 380px; /* Меньше на мобильных */
    }
    
    .sfera-img {
        height: 180px;
    }
    
    .sfera-content {
        padding: 15px;
    }
    
    .sfera-title {
        font-size: 15px;
        min-height: 38px;
    }
}

