@charset "UTF-8";
.cont_short {
  width: 1200px;
  margin: 0 auto;
}
.float-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;              /* расстояние между Up и Telegram */
  z-index: 2000;          /* выше хедера/оверлеев при необходимости */
}

.float-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  background: #ffffff;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.float-btn--up{
  font-size: 22px;
  font-weight: 900;
  transition: transform .15s ease, opacity .2s ease;
}

.float-btn--up.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.float-btn--tg{
  background: #22c1b6;
  border-color: rgba(0,0,0,.06);
  color: #fff;
  position: relative;
  overflow: visible;
}

.float-btn--tg svg{
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

/* пульсация */
.float-btn--tg::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background: rgba(34,193,182,.28);
  animation: tgPulse 1.35s ease-out infinite;
  z-index:-1;
}
.float-btn--tg::after{
  content:"";
  position:absolute;
  inset:-20px;
  border-radius:999px;
  background: rgba(34,193,182,.16);
  animation: tgPulse 1.35s ease-out infinite;
  animation-delay: .35s;
  z-index:-2;
}

@keyframes tgPulse{
  0%   { transform: scale(.75); opacity: .9; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* hover */
.float-btn:hover{ transform: translateY(-1px); }

/* если пользователь отключил анимации */
@media (prefers-reduced-motion: reduce){
  .float-btn--tg::before,
  .float-btn--tg::after{ animation: none; }
}

/* ===== About / Company brief ===== */
.about{
  width:100%;
  max-width:1200px;
  margin:0 auto 56px;
  padding:0 18px;
}

.about__head{
  margin-bottom:14px;
}

.about__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#111;
  opacity:.55;
  margin:0 0 8px;
}
.about__kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:#22c1b6;
}

.about__title{
  font-size:34px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#111;
  margin:0;
}

/* main panel */
.about__panel{
  margin-top:16px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:16px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 48px rgba(0,0,0,.07);
  overflow:hidden;
}

/* text side */
.about__content{
  padding:22px 22px 20px;
  background:linear-gradient(180deg, rgba(34,193,182,.10) 0%, rgba(34,193,182,0) 70%);
}

.about__text{
  font-size:16px;
  line-height:1.75;
  color:#333;
  margin:0 0 14px;
}

/* facts */
.about__facts{
  padding:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  align-content:start;
}

.fact{
  border-radius:20px;
  background:#f6f6f6;
  border:1px solid rgba(0,0,0,.06);
  padding:16px 14px;
  text-align:center;
}

.fact__value{
  display:block;
  font-size:26px;
  font-weight:900;
  letter-spacing:-0.02em;
  color:#111;
  margin-bottom:4px;
}

.fact__label{
  display:block;
  font-size:14px;
  line-height:1.4;
  font-weight:600;
  color:#333;
  opacity:.85;
}

/* responsive */
@media (max-width: 980px){
  .about__panel{
    grid-template-columns:1fr;
  }
}

@media (max-width: 600px){
  .about{
    padding:0 14px;
    margin-bottom:40px;
  }
  .about__title{
    font-size:24px;
  }
  .about__content{
    padding:18px 14px 16px;
  }
  .about__facts{
    padding:14px;
  }
  .fact__value{
    font-size:22px;
  }
}
  /* ===== Premium section (random classnames) ===== */
.focus{
  width:100%;
  max-width:1200px;
  margin:0 auto 56px;
  padding:0 18px;
}

.focus__head{
  padding:18px 0 10px;
}
.focus__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#111;
  opacity:.55;
  margin:0 0 10px;
}
.focus__kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:#22c1b6;
}
.focus__title{
  font-size:34px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#111;
  margin:0 0 10px;
}
.focus__lead{
  font-size:18px;
  line-height:1.7;
  color:#333;
  opacity:.9;
  margin:0;
  max-width:780px;
}

/* goals */
.goals{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}

.goal-card{
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  padding:18px 18px 16px;
  position:relative;
  overflow:hidden;
}
.goal-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(900px 240px at 20% 0%, rgba(34,193,182,.22), rgba(34,193,182,0) 60%);
  pointer-events:none;
}
.goal-card__icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:rgba(34,193,182,.14);
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.goal-card__icon svg{ width:26px; height:26px; }
.goal-card__title{
  font-size:20px;
  line-height:1.25;
  font-weight:800;
  color:#111;
  margin:0 0 8px;
  position:relative;
  z-index:1;
}
.goal-card__text{
  font-size:16px;
  line-height:1.7;
  color:#333;
  margin:0;
  position:relative;
  z-index:1;
}

/* why us panel */
.trust{
  margin-top:18px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 48px rgba(0,0,0,.07);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
}

.trust__about{
  padding:22px 22px 18px;
  background: linear-gradient(180deg, rgba(34,193,182,.10) 0%, rgba(34,193,182,0) 70%);
}

.trust__title{
  font-size:30px;
  line-height:1.15;
  font-weight:900;
  color:#111;
  margin:0 0 12px;
}

.trust__text{
  font-size:16px;
  line-height:1.75;
  color:#333;
  margin:0 0 12px;
}

/* pills */
.pill-row{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#111;
  background:rgba(0,0,0,.05);
}
.pill:nth-child(1){ background: rgba(34,193,182,.18); }
.pill:nth-child(3){ background: rgba(34,193,182,.12); }

/* features */
.trust__grid{
  padding:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  background:#fff;
}
.feat{
  border-radius:22px;
  background:#f6f6f6;
  border:1px solid rgba(0,0,0,.06);
  padding:14px 14px 12px;
}
.feat__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}
.feat__mark{
  width:12px;
  height:12px;
  border-radius:999px;
  background:#22c1b6;
  box-shadow:0 0 0 6px rgba(34,193,182,.12);
  flex:0 0 auto;
}
.feat__title{
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  color:#111;
  margin:0;
}
.feat__text{
  font-size:15px;
  line-height:1.7;
  color:#333;
  margin:0;
}

/* responsive */
@media (max-width: 980px){
  .goals{ grid-template-columns:1fr; }
  .trust{ grid-template-columns:1fr; }
  .focus__title{ font-size:30px; }
}
@media (max-width: 600px){
  .focus{ padding:0 14px; margin-bottom:40px; }
  .focus__title{ font-size:24px; }
  .focus__lead{ font-size:17px; }
  .trust__about{ padding:18px 14px 14px; }
  .trust__grid{ padding:14px; }
}
.product-category a{
    color: #55bac8 !important;
}
.product-category{
  text-align: center;
}
.cont_full {
  width: 100%;
}

main {
  padding-top: 80px;
  min-height: 70vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* БАЗОВЫЙ РАЗМЕР ТЕКСТА ДЛЯ ВСЕГО САЙТА */
body {
  font-size: 17px;
  line-height: 1.6;
  color: #111111;
}

header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 10px 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transform: translateY(0);
  transition: transform 0.3s ease;
  /* Кнопка с лупой */
}
header .logo {
  height: 100%;
}
header .logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .search {
  position: relative;
  display: flex;
  align-items: center;
}
header .search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
header .search-toggle svg {
  width: 43px;
  height: 60px;
  display: block;
}
header .lang {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lang button {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .lang img {
  display: block;
  width: 32px;
  height: auto;
  border-radius: 3px;
}
header .burger button {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 56px;
  height: 56px;
}
header .burger .burger-toggle {
  position: relative;
}
header .burger .burger-toggle.is-open {
  z-index: 2;
}
header .burger .burger-line {
  position: relative;
  width: 37px;
  height: 3px;
  border-radius: 999px;
  background: #333333;
  display: block;
  transition: background 0.2s ease;
}
header .burger .burger-line::before,
header .burger .burger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 45px;
  height: 3px;
  border-radius: 999px;
  background: #333333;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, opacity 0.2s ease;
}
header .burger .burger-line::before {
  top: -12px;
}
header .burger .burger-line::after {
  top: 12px;
}
header .burger .burger-toggle.is-open .burger-line {
  background: transparent;
}
header .burger .burger-toggle.is-open .burger-line::before {
  top: 0;
  transform: rotate(45deg);
}
header .burger .burger-toggle.is-open .burger-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.header--hidden {
  transform: translateY(-100%);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
  height: 100vh;
}

/* панель поиска как оверлей сверху */
.search-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 12px 48px 12px 16px;
  box-sizing: border-box;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1000;
  box-sizing: border-box;
}

/* когда поиск открыт */
.search.is-open .search-overlay {
  opacity: 1;
  pointer-events: auto;
}

.search.is-open .search-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.speedbar .over{
  padding: 10px 20px;
  text-align: center;
}
.speedbar .over a{
  color: black;
  text-decoration: none;
}
[itemprop="item"] span {
  font-size: 18px;
}
[itemprop="item"]{
  opacity: 0.5;
}
/* оформление формы внутри панели */
#q_search {
  margin: 32px 0 0;
}

.q_search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* svg-лупа внутри панели */
.search-icon {
  flex-shrink: 0;
 width: 50px;
  height: 50px;
  display: block;
}

.search-icon path {
  fill: #999999;
}

/* поле ввода */
.search-input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 6px 4px;
  font-size: 17px;
  line-height: 1.4;
  background: transparent;
  color: #333333;
  border-radius: 20px !important;
}

.search-input::-moz-placeholder {
  color: #999999;
}

.search-input::placeholder {
  color: #999999;
}

/* кнопка Search справа */
.search-btn {
  border: none;
  background: none;
  padding: 4px 0 4px 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #333333;
}

/* кнопка закрытия в панели поиска */
.search-close {
  position: absolute;
  top: 0px;
  right: 12px;
  border: none;
  background: none;
  font-size: 55px;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
}

.lang-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.lang-overlay.is-open {
  display: block;
}

.lang-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.lang-overlay__panel {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 320px;
  width: 90%;
  max-height: 220px;
  padding: 20px 24px;
  border-radius: 12px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.lang-overlay__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #333333;
}

.lang-overlay__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

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

.lang-option {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  background-color: #f2f2f2;
  color: #333333;
}

.lang-option + .lang-option {
  background-color: #e5e5e5;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

.menu-overlay.is-open {
  display: block;
}

.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
}

.menu-overlay__panel {
  position: absolute;
  inset: 0;
  padding: 30% 32px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 901px){
  .menu-overlay__panel{
    padding: 20% 32px 32px;
    overflow: auto;
  }
}

.menu-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.menu-overlay__item {
  margin-bottom: 12px;
}

.menu-overlay__item a {
  text-decoration: none;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
}

.menu-overlay__item--has-children {
  margin-bottom: 8px;
}

.menu-overlay__toggle {
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.menu-overlay__text {
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
}

.menu-overlay__arrow {
  width: 0;
  height: 0;
  border-left: 10px solid #22c1b6;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: transform 0.2s ease;
}

.menu-overlay__sub {
  list-style: none;
  margin: 8px 0 0 6px;
  padding-left: 12px;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.menu-overlay__sub li {
  margin-bottom: 6px;
}

.menu-overlay__sub a {
  font-size: 25px;
  color: #000000;
  text-decoration: none;
}

.menu-overlay__item--open .menu-overlay__sub {
  max-height: 400px;
  opacity: 1;
}

.menu-overlay__item--open .menu-overlay__arrow {
  transform: rotate(90deg);
}

.banner-slider {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto 32px;
  padding: 16px 18px;
}

.banner-slider__track {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #cfcfcf;
  aspect-ratio: 16/9;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.banner-slide.is-active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-slider__dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.banner-dot.is-active {
  background: rgba(0, 0, 0, 0.6);
}

.category {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 18px 24px;
}

.category__header {
  margin-bottom: 12px;
}

.category__title {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.category-card {
  border-radius: 18px;
border: 1.5px solid #49e0c7;
    overflow: hidden;
    background: #ffffff;
    min-height: 150px;
    text-decoration: none;
}

.category-card__inner {
  height: 100%;
  padding: 16px 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.category-card__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.category-card__image img {
  max-width: 80%;
  height: auto;
  display: block;
}

.category-card__title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}



@media (max-width: 600px) {
  .category__grid {
    gap: 10px;
  }
  .category-card {
    min-height: 130px;
  }
  .category-card__inner {
    padding: 14px 10px 8px;
  }
}
/* PRODUCTS */
.products {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 16px 18px 28px;
}

.products__header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products__title {
  font-size: 26px;
  font-weight: 500;
  color: #111111;
}

.products__view-all {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  opacity: 0.6;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: pointer;
}

.products__view-all:hover {
  opacity: 0.9;
}
.products__grid_related{
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 0 10px;
    max-width: 1300px;
    
}

.products__grid #dle-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.navigation {
    grid-column: 1 / -1;   /* растянуть от первой до последней колонки */
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
}
.pages {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prev{
  margin-right: 20px;
}
.next{
  margin-left: 20px;
}

.pages a,
.pages span,
.page-prev,
.page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
min-width: 50px;
  height: 50px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #333333;
  background: #f5f5f5;
}

.pages a:hover,
.page-prev:hover,
.page-next:hover {
  background: #e4e4e4;
}

/* активная страница (DLE обычно выводит её как span или span.current) */
.pages span,
.pages .current {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.product-card {
  border-radius: 24px;
  background: #cccccc;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.product-card__inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #d4d4d4;
  width: 100%;
}

/* верхняя часть: фото заполняет фон, название поверх градиента снизу вверх */
.product-card__top {
  position: relative;
  min-height: 220px;
  padding: 16px 16px 5px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.product-card__top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(0deg, rgb(235, 235, 235) 0%, rgba(235, 235, 235, 0.85) 35%, rgba(235, 235, 235, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.product-card__image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-card__name {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

/* бейдж in stock по диагонали */
.product-card__badge {
  position: absolute;
  top: 6px;
  right: -37px;
  width: 140px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #c03d3d;
  padding: 6px 0;
  transform: rotate(35deg);
  transform-origin: center;
  z-index: 1;
}

/* блок с объёмом/концентрацией и ценой */
.product-card__info {
    height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px 12px;
  background: #ececec;
}

.out_prod {
  background-color: #157476 !important;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.product-card__tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
}

.product-card__price {
  font-size: 27px;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

/* кнопка buy внизу */
.product-card__cta {
  border: none;
  width: 100%;
  padding: 12px 0 14px;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  text-transform: lowercase;
  color: #ffffff;
  background: #23b0b3;
  cursor: pointer;
}

.product-card__cta:hover {
  background: #a5a5a5;
}

.text-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 18px;
}

.text-section__inner {
  border-radius: 24px;
}

.text-section__h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
}

.text-section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.text-section__h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 18px 0 10px;
  color: #111111;
}

.text-section__h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #222222;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 14px;
}

.text-section__list {
  margin: 0 0 16px;
  padding-left: 18px;
  list-style: none;
}

.faq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 18px;
}

.faq__inner {
  padding: 0 0 8px;
}

.faq__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111111;
}

/* верхняя и нижние полоски именно тем же зелёным цветом */
.faq__item {
  padding: 16px 0;
  border-top: 1px solid #22c1b6;
}

.faq__question {
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq__question-text {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #111111;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #22c1b6;
}

.faq__icon::before {
  content: "+";
}

.faq__item.is-open .faq__icon::before {
  content: "×";
}

.faq__answer {
  margin-top: 8px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
  opacity: 1;
}

.footer {
  width: 100%;
  background: #ffffff;
  color: #f5f5f5;
  padding: 24px 0 32px;
  margin-top: 24px;
  border-top: #22c1b6 3px solid;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__bottom{
    flex-direction: column;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
}

.footer__social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #f5f5f5;
}

.footer__social-link:hover {
  opacity: 0.85;
}

/* прячем обычный текстовый label, будем использовать псевдоэлементы */
.footer__social-label {
  display: none;
}

.footer__social-icon {
  width: 64px; /* было 32px – делаем в два раза больше */
  height: 64px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* чтобы текст внутри не мешал */
  background: transparent;
  color: inherit;
  position: relative; /* нужно для позиционирования текста поверх иконки */
}

/* svg растягиваем на весь контейнер иконки */
.footer__social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* подписи "channel" / "bot" прямо на иконке Telegram */
.footer__social-link--tg-channel .footer__social-icon::after,
.footer__social-link--tg-bot .footer__social-icon::after {
  position: absolute;
  left: 93%;
  bottom: 6px;
  transform: translateX(-50%);
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7); /* фон под текстом */
  white-space: nowrap;
  z-index: 1;
}

.footer__social-link--tg-channel .footer__social-icon::after {
  content: "channel";
}

.footer__social-link--tg-bot .footer__social-icon::after {
  content: "bot";
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px солид rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer__logo img {
  display: block;
  height: 75px;
  width: auto;
}

.footer__company-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #333333;
}

.footer__company-tagline {
  font-size: 20px;
  opacity: 0.7;
  color: #333333;
}

.footer__company {
  text-align: center;
}

.text-section__list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}

.text-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c1b6;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .text-section {
    padding: 0 14px;
    margin-bottom: 40px;
  }
  .text-section__h1 {
    font-size: 24px;
  }
  .text-section__h2 {
    font-size: 20px;
  }
  .text-section__h3 {
    font-size: 17px;
  }
  .faq {
    padding: 0 14px;
    margin-bottom: 40px;
  }
  .faq__title {
    font-size: 24px;
  }
  .faq__question-text {
    font-size: 18px;
  }
  .footer__inner {
    padding: 0 14px;
  }
  .footer__company {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .products {
    padding: 14px 14px 24px;
  }
  .products__title {
    font-size: 22px;
  }
  .products__grid #dle-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .products__grid_related{
         grid-template-columns: repeat(2, 1fr);
  }
}
/* ВРЕМЕННЫЙ ЖЁСТКИЙ ОВЕРРАЙД, ЧТОБЫ ТОЧНО УВИДЕТЬ ИЗМЕНЕНИЯ
   Можно удалить потом, когда убедишься, что этот CSS точно подключён */
body,
.category,
.products,
.text-section,
.faq,
.footer {
  font-size: 18px !important;
}

.text-section__h1,
.products__title,
.faq__title {
  font-size: 30px !important;
}

.product-card__name {
  font-size: 24px !important;
}

.faq__question-text {
  font-size: 22px !important;
}

.product-extra__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #111111;
  background: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.product-extra__toggle:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}/*# sourceMappingURL=style.css.map */