/* Общие стили для нескольких блоков */
#rec1100003886,
#rec1098587431,
#rec1335024951,
#rec1095609161
#rec1116535086 {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

#rec1100003886 .t-container,
#rec1098587431 .t-container,
#rec1335024951,
#rec1095609161 .t-container,
#rec1116535086 .t-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box;
}

#rec1100003886 .t-col,
#rec1095609161 .t-col,
#rec1116535086 .t-col {
  max-width: none !important;
  flex: 1 1 auto !important;
}


/* Контейнер карточек — flex + компенсация внешнего отступа */
#rec1128383576 .t-store__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -20px; /* компенсируем внутренние отступы карточек */
}

/* Карточка товара — с отступами 20px по всем сторонам */
#rec1335024951,
#rec1128383576 .t-store__card {
  width: calc(25% - 40px); /* ширина = 25% - 2*20px отступа */
  margin: 10px; /* 20px сверху, снизу, слева, справа = 40px между карточками */
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Отступ снизу под кнопкой */
#rec1128383576 .t-store__card__btn-wrapper {
  margin-bottom: 20px;
}

/* Планшеты: 2 карточки в ряд */
@media screen and (max-width: 767) {
  #rec1128383576 .t-store__card {
    width: calc(50% - 40px);
  }
}
