.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: visible;
  padding: 10px 0;
}

.container-tren {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 10px 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #fa8c19 transparent;
  justify-content: center; /* Центрируем карточки по горизонтали */
}

.container-tren::-webkit-scrollbar {
  height: 8px;
}

.container-tren::-webkit-scrollbar-track {
  background: transparent;
}

.container-tren::-webkit-scrollbar-thumb {
  background-color: #fa8c19;
  border-radius: 4px;
}

.subscription-card {
  background: #111;
  color: #ccc;
  border-radius: 20px;
  width: 100%;           /* чтобы растягивалась по ширине контейнера */
  max-width: 320px;      /* максимальная ширина */
  min-width: 280px;      /* минимальная ширина */
  padding: 20px 25px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Overpass', sans-serif;
  border: 1px solid #333;
}


.subscription-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  margin: 0 0 12px 0;
  text-transform: uppercase;
text-align: center;
}

.subscription-summary {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #999;
  margin: 0 0 8px 0;
  font-weight: 500;
text-align: center;
}

.subscription-period {
  font-size: 0.9rem;
  color: #bbb;
  font-weight: 500;
  margin-bottom: 10px;
text-align: center;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
justify-content: center;
}

.price-old {
  text-decoration: line-through;
  color: #666;
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 6px;
  background: #2a2a2a;
  border-radius: 6px;
  user-select: none;
}

.price-current {
  background: #3c0fe5;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 6px 14px;
  border-radius: 6px;
  user-select: none;
}

.subscription-details {
  background: #222;
  border-radius: 8px;
  padding: 10px 0px;
  font-size: 0.85rem;
  color: #eee;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
  border: 1px solid #444;
}

.subscription-details summary {
  font-weight: 700;
  list-style: none;
  outline: none;
text-align: center;
}

.subscription-details[open] {
  background: #333;
}

.subscription-benefits {
  margin: 10px 0 0 10px;
  padding-left: 10px;
  list-style: none;
}

.subscription-benefits li {
  padding: 3px 0;
  border-bottom: 1px solid #444;
  color: #ccc;
}

.subscription-benefits li:last-child {
  border-bottom: none;
}

.benefit-label {
  color: #fa8c19;
  font-weight: 600;
  margin-right: 5px;
  user-select: none;
}

.subscription-buy-btn {
  background-color: #fa8d19;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
  width: 100%;
}

.subscription-buy-btn:hover {
  background-color: #0043cc;
}

.subscription-footer {
  font-size: 0.7rem;
  line-height: 1.1;
  color: #777;
  margin-bottom: 10px;
    text-align: center;
}

.subscription-more {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  user-select: none;
TEXT-ALIGN: center;
}

.subscription-more:hover {
  text-decoration: underline;
}

/* Кнопки навигации */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  user-select: none;
  transition: transform 0.3s ease;
  color: #fa8c19;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.2);
}

.scroll-left {
  left: 5px;
}

.scroll-right {
  right: 5px;
}

.scroll-btn svg {
  width: 24px;
  height: 24px;
}

/* Адаптив */
@media (max-width: 600px) {
  .subscription-card {
    min-width: 280px;
    padding: 18px 20px;
  }
}
@media (max-width: 500px) {
  .container-tren {
    justify-content: flex-start !important;
 padding-left: 15px; /* отступ слева */
  }
}
.checkmark {
  color: #4CAF50; /* зелёный */
  font-weight: bold;
  font-size: 1.2em;
  display: inline-block;
  line-height: 1;
}
.crossmark {
  color: #ff4d4d; /* красный цвет */
  font-weight: bold;
  font-size: 1.2em;
  display: inline-block;
  line-height: 1;
}
