.tco-offers {
  width: 100%;
  margin: 10px 0 18px;
  padding: 13px;
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-left: 4px solid #b32d2e;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 24, 31, 0.08);
  box-sizing: border-box;
}

.tco-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

.tco-heading h2 {
  margin: 0;
  color: #151922;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
}

.tco-heading span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #b32d2e;
  background: #fff1f1;
  border: 1px solid #ffd2d2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.tco-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.tco-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.tco-card:hover,
.tco-card:focus-within {
  border-color: #d7a0a1;
  box-shadow: 0 10px 18px rgba(20, 24, 31, 0.1);
  transform: translateY(-1px);
}

.tco-image {
  display: block;
  height: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
  text-decoration: none;
}

.tco-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 7px;
  box-sizing: border-box;
}

.tco-body {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 6px;
  padding: 9px;
}

.tco-sku {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 22px;
  align-items: center;
  padding: 0 7px;
  color: #4b5563;
  background: #f2f3f5;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.tco-title {
  min-height: 34px;
  color: #151922;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.tco-title:hover,
.tco-title:focus {
  color: #b32d2e;
}

.tco-price {
  color: #b32d2e;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.tco-price del {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.tco-price ins {
  text-decoration: none;
}

.tco-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #ffffff !important;
  background: #b32d2e;
  border: 1px solid #b32d2e;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.tco-button:hover,
.tco-button:focus {
  color: #ffffff !important;
  background: #8f1f21;
  border-color: #8f1f21;
}

@media (max-width: 680px) {
  .tco-offers {
    margin: 8px 0 15px;
    padding: 10px;
    border-left-width: 3px;
    box-shadow: 0 6px 18px rgba(20, 24, 31, 0.08);
  }

  .tco-heading {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .tco-heading h2 {
    font-size: 17px;
  }

  .tco-heading span {
    min-height: 25px;
    padding: 0 8px;
    font-size: 11px;
  }

  .tco-mobile-scroll .tco-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 1px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tco-mobile-scroll .tco-card {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .tco-mobile-grid .tco-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .tco-mobile-grid .tco-body {
    padding: 8px;
  }

  .tco-image {
    height: 76px;
  }

  .tco-title {
    min-height: 32px;
    font-size: 12px;
  }

  .tco-price {
    font-size: 14px;
  }

  .tco-button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }
}
