.t-store__card {
    border: 1px solid #e0e0e0; /* светлая обводка */
    border-radius: 12px; /* скругление углов */
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.t-store__card:hover {
    border-color: #333333; /* тёмная обводка при наведении */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* лёгкая тень */
}


  @media print {
    body * {
      visibility: hidden;
    }
    .invoice, .invoice * {
      visibility: visible;
    }
    .invoice {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      border: none;
      box-shadow: none;
    }
    button {
      display: none !important;
    }
  }


/* Заголовок — блок по ширине содержимого, центрируется через margin */
.t-section__title {
display: block;
/* запасные варианты ширины для совместимости */
width: -moz-fit-content;
width: -webkit-fit-content;
width: fit-content;
width: max-content;
margin: 0 auto; /* центрирование */
padding: 10px 20px;
border: 2px solid #000;
border-radius: 6px;
text-align: center;
}

/* Каждая позиция в корзине */
.t706__product {
border: 1px solid #000; /* цвет и толщина рамки */
border-radius: 6px; /* скругление */
padding: 15px;
margin-bottom: 15px;
box-sizing: border-box;
}


/* Кнопки плюс и минус в ST100 */
.t-store__card__quantity-button {
border: 1px solid #000; /* рамка */
border-radius: 4px; /* уголки, 0 — полностью квадратные */
width: 32px; /* ширина */
height: 32px; /* высота */
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-weight: bold;
background-color: #fff;
user-select: none;
box-sizing: border-box;
line-height: 1; /* чтобы знак не прыгал */
}


.t-sociallinks__item svg {
width: 40px !important;
height: 40px !important;
}


/* ==== Скрываем описание во всех ST305N на сайте ==== */
.t-store__card__descr,
.t-store__card__descr * {
display: none !important;
}