/*Работа в корзине*/
/*кнопки*/
button {
  background-color: #4caf5000; /* Зеленый */
  color: #000000;
  padding: 5px 10px;
  border: 1px solid rgb(0 0 0 / 66%);
  border-radius: 20px;
  cursor: pointer; /* Изменяет курсор при наведении */
}

/*прозрачность текста в корзине*/
.t706__product-amount--portion .t706__product-portion, .t706__product-title__option, .t706__product-title__portion{
    opacity:1 !important;
}




/*Ниже css для карточек*/
/*ограничить название карточки в 2 строки */
.t-name_xs {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* кол-во строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
/*Выеделение карточки по ховеру*/
.t-store__card {
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.t-store__card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /*background-color: #f9f9f9;*/
  cursor: pointer;
}
}



/*Работа с доп опциями*/


  .option-qty-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
  }

  .option-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
  }

  .option-qty {
    width: 35px;
    text-align: center;
    border: 1px solid #ccc;
    background: #fff;
  }
  
  
  
  /*Работа с корзиной*/
  
  .t706__cartwin-content {
      max-width: 1350px !important;
      
  }
  
  
  /*Переключатель каталога*/
    #rec1212830876{
        background-color: white;
    }
 
  #rec1209313036{
      
    position: absolute;
    margin-top: -93px;
    z-index: -2;
      
  }
  #rec1212830876 .t649__blockimg{
    border-width: 2px;
    border-color: #000000;
    border-style: solid;
      
  }
  
  .t649 .t649__sp{
      padding-top:0px;
      
  }
  
  
 /* Картинка: изначально затемнена */
#rec1212830876 .t649__blockimg {
  filter: brightness(0.6); /* темнее на старте */
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* При наведении — ярче и чуть увеличена */
#rec1212830876 .t649__blockimg:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Заголовок: изначально белый текст, без фона */
#rec1212830876 .t-card__title {
  position: relative;
  top: -55px;
  padding: 5px 10px;
  color: white;
  background: transparent;
  display: inline-block;
  border-radius: 10px;
  transition: background 0.4s ease;
}

/* При наведении появляется тёмный фон */
#rec1212830876 .t649__blockimg:hover ~ .t649__textwrapper .t-card__title {
  background: rgba(0, 0, 0, 0.5); /* чуть тёмный */
}









  
  
  /*Красивое оформление описания*/
  
    .t-store__card__descr{
        margin-top: 8px;
        word-break: break-word;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        background-color: #e5e5e5;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 20px;
    }
    
    /*Красивое оформление описания в карточке товара*/
    .js-store-prod-all-text{
        max-width: fit-content;
        margin-bottom: 15px;
        background-color: #d7f3b8;
        padding-left: 13px;
        padding-right: 13px;
        border-radius: 20px;
        font-size: larger;
    }
  

