.tab-content {
  display: none;
}
.promo-item--hidden {
    display: none;
}
.show-tab {
  display: block;
}

.tab-content:target {
  display: block;
}

#all:target~.promos-content__buttons>[href="#all"],
#promo:target~.promos-content__buttons>[href="#promo"],
#discount:target~.promos-content__buttons>[href="#discount"] {
  color: red;
}



.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колонки */
  gap: 10px 20px; /* расстояние между ссылками */
  max-width: 100%;
}

.footer__link {
  
  text-decoration: none;
  font-size: 14px;
}

.footer__link:hover {
  text-decoration: underline;
}

/* Мобильная версия — 1 колонка */
@media (max-width: 767px) {
  .footer__links {
      grid-template-columns: 1fr;
      text-align: center;
  }
}

/* Планшет — 2 колонки */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__links {
      grid-template-columns: repeat(2, 1fr);
  }
}
.breadcrumbs {
 margin-bottom: 20px;
 margin-top: 20px;
  font-size: 14px;
  color: #505050;
  
}
.breadcrumbs .container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
.breadcrumbs a:last-child {
  font-weight: 700; /* Сделать последний элемент жирным */
}
.breadcrumbs svg {
  vertical-align: middle;
}
.breadcrumbs__link {
  font-weight: normal !important;
}
.promos-about-sidebar {
 
}
/* Скрываем по умолчанию */
.static-mobile {
  display: none;
}

/* Показываем на экранах меньше 768px (мобильные) */
@media (max-width: 767px) {
  .static-mobile {
      display: block; /* или inline, flex — в зависимости от твоей разметки */
  }
}
.sidebar-statistic {
  font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 119%;
    color: #676767;
    min-width: 300px;
    padding:20px;
}
/* Скрываем по умолчанию */
.static-pc {
  display: block;
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: 25px;

}
}

/* Показываем на экранах меньше 768px (мобильные) */
@media (max-width: 767px) {
  .static-pc {
      display: none; /* или inline, flex — в зависимости от твоей разметки */
  }
}
.assessment-panorama .assessment-stars-panorama {
  
  display: flex;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}
.sidebar-statistic {
  
}
.left-info-side {
 

}
.promos-chars__title {
  margin-top: 20px;
}
/* Контейнер */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Кнопки */
.filters button {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Числа в кнопках */
.filters button span[data-filter="count"] {
  background: #eee;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* Наведение */
.filters button:hover {
  background: #eaeaea;
  border-color: #bbb;
}

/* Активная кнопка */
.filters button.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.filters button.active span[data-filter="count"] {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Для "Нет найдено" блока */
#filter-plug {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
  font-style: italic;
}
.filter-button-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}

.filter-button-nav button {
  background: #f7f7f7;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.filter-button-nav button span[data-filter="count"] {
  background: #e5e5e5;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.filter-button-nav button:hover {
  background: #eaeaea;
  border-color: #bbb;
}

.filter-button-nav button.active {
  background: #4d3bfe;
  color: #fff;
  border-color: #4d3bfe;
}

.filter-button-nav button.active span[data-filter="count"] {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#filter-plug {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
  font-style: italic;
  flex-basis: 100%;
}

@media (max-width: 600px) {
  .filter-button-nav {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }
  .filter-button-nav button {
      flex: 0 0 auto;
  }
}
.promos-content__item.promo-item {
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  overflow: hidden;
  opacity: 1;
  max-height: 1000px; /* достаточно большой, чтобы вместить элемент */
  padding: initial;
  margin: 10px;
}

.promos-content__item.promo-item.hide {
   display: none;
}
@media (max-width: 576px) {
  .promos-about-sidebar--main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
      flex-direction: column;
  }
}
@media (max-width: 576px) {
  .promos-about {
      padding: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      display: flex
;
  }
}
@media (max-width: 576px) {
  .promos-about__logo {
    width: 168px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .promos-about__logo img.toolbar__logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  .promos-about__logo img {
    width: 100%;
    height: 100%;
}
.left-info-side {
  display: none;

}
}
.left-info-side {

  color: #333;
  max-width: 300px;
  padding: 30px;
  /* background: #f9f9f9; */
  border-radius: 8px;
    /* box-shadow: 0 2px 6px rgb(0 0 0 / 0.1); */
}

.left-info-side p {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.4;
}

.left-info-side p span {
  font-weight: 600;
  color:#4d3bfe;
}

.left-info-side p:nth-of-type(2) {
  position: relative;
  padding-top: 12px;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  border-top: 2px solid #4d3bfe;
}

.left-info-side p:nth-of-type(2) span {
  color: #28a745;
  font-size: 18px;
  font-weight: 700;
}
.sidebar-statistic table {
  width: 100%;
  border-collapse: collapse;
}

.sidebar-statistic td {
  padding: 8px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.sidebar-statistic td:first-child {
  font-weight: 600;
  color: #444;
  width: 70%;
}

.sidebar-statistic td:first-child span {
  margin-right: 6px;
  font-size: 18px;
  vertical-align: middle;
}

.sidebar-statistic td:last-child {
  text-align: right;
  color: #4d3bfe;
  font-weight: 700;
}

.sidebar-statistic tr.statistic-tr td {
  border-bottom: 2px solid#4d3bfe;
  color: #555;
  font-weight: 600;
}

.sidebar-statistic {
/*  background: #f9f9f9; */
  border-radius: 8px;
/*  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1); */
}

/* Адаптив для мобильных */
@media (max-width: 576px) {
  .footer__columns {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .footer__col {
    flex: none;
    width: 100%;
  }

  .page-footer__social {
    justify-content: center;
  }

  .footer__bottom {
    padding: 0 5px;
    font-size: 11px;
  }
  .footer__columns {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
}