
.minicard__main .carttotal__status.carttotal__status_danger {
    display: none;
}
.productsticker_dark_green {
    color: #fff;
    background: #2baf2b;
}

.grecaptcha-badge { 
    visibility: hidden;
}
.hemail{
    opacity: 0;
    position: absolute;
    left: -9999px;
}
.productsticker_greenish {
    color: #fff;
    background: #8bc34a;
  }
  
#mainslider_placeholder {
    border-radius: 10px;
}
@media (min-width: 1023px) {
    #mainslider_placeholder {
        height: 545px;
        width: calc(100% - 349px);
        border-radius: 10px;
    }
}
@media (max-width: 1023px) {
    span.deliverylink__address {
        font-size: 14px;
    }
    .fitchescard__text {
        font-size: 16px;
    }
    .subscribe__title {
        font-size: 18px;
    }
    .subscribe__input {
        height: unset;
    }
}

/* Основной контейнер блока */
.taste-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    color: #333;
}

/* Главный заголовок */
.taste-card__title {
    font-size: 19px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Подзаголовок с инструкцией */
.taste-card__subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Заголовок для списка преимуществ */
.taste-card__benefits-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
}

/* Список преимуществ */
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Каждый элемент списка */
.benefit-item {
    display: flex;
    align-items: center; /* Выравниваем по центру по вертикали */
    margin-bottom: 16px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

/* Иконка (круг с символом внутри) */
.benefit-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 50%; /* Делаем круг */
    
    /* Стили для центрирования символа внутри круга */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Стили для самого символа (иконки) */
    color: #fff; /* Белый цвет для символа */
    font-size: 20px; /* Слегка увеличил для знака рубля */
    font-weight: 600; 
    line-height: 1; /* Убираем лишнюю высоту строки */
}

.benefit-item__icon--red {
     font-size: 18px; /* Уменьшим сердечко для баланса */
}


/* Текст преимущества */
.benefit-item__text {
    font-size: 16px;
    line-height: 1.4;
}

/* --- Цвета фонов для иконок --- */

.benefit-item__icon--yellow {
    background-color: #fddc01;
}

.benefit-item__icon--red {
    background-color: #f12c21;
}

.benefit-item__icon--green {
    background: linear-gradient(
        135deg,
        #62d64d 25%,
        #50b73c 25%,
        #50b73c 50%,
        #62d64d 50%,
        #62d64d 75%,
        #50b73c 75%,
        #50b73c 100%
    );
    background-size: 10px 10px;
}

/* --- Адаптивность для мобильных устройств --- */
@media (max-width: 480px) {
    .taste-card {
        padding: 20px;
    }
    .taste-card__title {
        font-size: 18px;
    }
    .taste-card__subtitle,
    .benefit-item__text {
        font-size: 15px;
    }
    .taste-card__benefits-title {
        font-size: 17px;
    }
}