  :root {
  /* === ТЕМНА ТЕМА (Стандарт) === */
  --bg-color: #0f172a;
  --bg-image: linear-gradient(180deg, #061023 0%, #071427 50%, #0b1a2b 100%);
  --text-main: #e6eef6;
  --text-muted: #94a3b8;
  --accent: #0ea5a4;
  
  /* Картки (темні) */
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.05);
  --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* === СВІТЛА ТЕМА (Вмикається класом) === */
body.light-theme {
  --bg-color: #f8fafc;
  --bg-image: none; /* Прибираємо темний градієнт */
  --text-main: #1e293b; /* Темно-синій текст */
  --text-muted: #475569; /* Сірий текст */
  
  /* Картки (світлі) */
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Основні налаштування тіла */
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  background-image: var(--bg-image);
  color: var(--text-main);
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

/* === ВАЖЛИВО: Оновлення карток, щоб вони реагували на тему === */
.card, .service, .step, .product-card, .stat {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  box-shadow: var(--card-shadow) !important;
  color: var(--text-main) !important;
  transition: 0.3s;
}

/* Колір заголовків і тексту всередині блоків */
h1, h2, h3, h4, strong { color: var(--text-main); }
p, li, .desc { color: var(--text-muted); }

/* === КНОПКА ПЕРЕМИКАЧА === */
.theme-toggle-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-main);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 0;
}
.theme-toggle-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(15deg);
}

/* Логіка іконок: показуємо потрібну */
.theme-toggle-btn .icon-sun { display: block; }
.theme-toggle-btn .icon-moon { display: none; }

/* Коли увімкнено світло - міняємо іконку */
body.light-theme .theme-toggle-btn .icon-sun { display: none; }
body.light-theme .theme-toggle-btn .icon-moon { display: block; }
    .container{max-width:var(--max-width);margin:0 auto;padding:32px}
    header{display:flex;align-items:center;justify-content:space-between;gap:16px; position: sticky; top: 0; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); z-index: 999;}
    .logo{display:flex;align-items:center;gap:12px}
    .logo .mark{width:54px;height:54px;border-radius:12px;background:linear-gradient(135deg,var(--accent),#065f66);display:flex;align-items:center;justify-content:center;font-weight:800;color:#042028}
    nav a{color:var(--muted);text-decoration:none;margin-left:18px;font-weight:600}
    nav a.cta{background:linear-gradient(90deg,var(--accent),#06b6b4);color:#042028;padding:10px 14px;border-radius:10px}

    .hero{display:grid;grid-template-columns:1fr 380px;gap:32px;align-items:center; padding: 60px 0;}
    .hero .title{font-size:38px;font-weight:800;letter-spacing:-0.02em;margin:0}
    .hero p.lead{color:var(--muted);margin:16px 0 24px}
    .cta-row{display:flex;gap:12px}
    .btn{background:var(--accent);color:#042028;padding:12px 18px;border-radius:12px;font-weight:700;border:none;cursor:pointer; box-shadow:0 0 12px rgba(14, 165, 164, 0.4); transition: all 0.3s ease; text-decoration: none;}
    .btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted)}
    .btn:hover {transform: translateY(-2px); box-shadow: 0 0 18px rgba(14, 165, 164, 0.8); text-decoration: none;}

    .card{background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));padding:18px;border-radius:14px;border:100px solid rgba(255,255,255,0.03)}

    .stats{display:flex;gap:12px;margin-top:20px}
    .stat{flex:1;padding:14px;border-radius:12px;background:var(--glass);text-align:center;}
    .stat:hover{transform: translateY(-5px); text-decoration: none; box-shadow: 0 0 18px rgba(15, 23, 60, 0.9);}
    .stat h3{margin:0;font-size:20px}
    .stat p{margin:6px 0 0;color:var(--muted);font-size:13px}

    .services{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin:36px 0}
    .service{padding:18px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);border:1px solid rgba(255,255,255,0.02)}
    .service h4{margin:8px 0 6px}
    .service p{color:var(--muted);font-size:14px}

    .process{display:flex;flex-direction:column;gap:12px;margin:26px 0}
    .proc-step{display:flex;gap:16px;align-items:flex-start}
    .step-num {
  min-width: 40px;
  height: 40px;
  background: rgba(14, 165, 164, 0.2); /* Трохи кольору */
  color: #0ea5a4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

    .gallery{display:grid;grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px}
    .gallery img{width:100%;height:190px;object-fit:cover;border-radius:10px}

    .testimonials{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
    .testimonial{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.02)}

    footer{padding:16px 32px;border-top:1px solid rgba(255,255,255,0.02);color:var(--muted);display:flex;justify-content:space-between;align-items:center; background: #0a192f; color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.1);}
    .footer-left, .footer-right {display: flex; align-items: center;}
    .tiktok-link{text-decoration: none;}
    .tiktok-icon {width: 26px; height: 26px; filter: invert(1); opacity: 0.8; transition: transform 0.3s ease, opacity 0.3s ease;} 
    .tiktok-link:hover .tiktok-icon {transform: scale(1.15); opacity: 1;}
    .phone-number {color: #0ea5a4; font-weight: 600; text-decoration: none;}
    .phone-number:hover {text-decoration: underline;}
    @media (max-width:980px){.hero{grid-template-columns:1fr;}.container{padding:20px}.gallery img{height:140px}}
    @media (max-width:520px){nav{display:none}.hero .title{font-size:28px}}

    .float{animation:float 6s ease-in-out infinite}
    @keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-6px)}100%{transform:translateY(0)}}
    .video iframe {width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; box-shadow: 0 0 16px, rgba(0, 0, 0, 0.4);}
    #socials {text-align: center; padding: 40px 0}
    .social-links a {display: inline-block; margin: 0 10px; padding: 10px 20px; border-radius: 30px; background: #0ea5a4; color: white; text-decoration: none; transition: transform 0.3s ease;}
    .social-links a:hover {transform: scale(1.1s);}
    .reviews-section {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 800px;
}

.review-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.review {
  display: none;
  max-width: 600px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.review.active {
  display: block;
  opacity: 1;
}

.arrow {
  background: none;
  border: none;
  color: #0ea5a4;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

.arrow.left {
  position: absolute;
  left: 0;
}

.arrow.right {
  position: absolute;
  right: 0;
}

.review p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.review h4 {
  color: #0ea5a4;
  font-weight: bold;
}
.reviews-section {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.review-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-wrapper {
  display: flex;
  width: 300%; /* 3 отзыва → 3 * 100% */
  transition: transform 0.6s ease;
}

.review {
  width: 100%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.review.active {
  opacity: 1;
}

.arrow {
  background: none;
  border: none;
  color: #0ea5a4;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.arrow:hover { transform: scale(1.2) translateY(-50%); }

.review p {
  font-size: 1.1rem;
  font-style: italic;
}

.review h4 {
  color: #0ea5a4;
  font-weight: bold;
}
/* === Каталог плиток === */

.catalog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin-top:20px;
}

.cat-item{
  background:#ffffff10;
  border:2px solid #0ea5a4;
  border-radius:12px;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:200px;
  cursor:pointer;
  transition:0.3s;
  transform-style:preserve-3d;
  text-decoration: none;
}
.cat-images {
  display: flex; /* Трохи збільшили відстань між фото */
  align-items: center;
  justify-content: space-evenly; 
  flex-grow: 1; 
  flex-wrap: wrap; 
  margin-left: 10px; /* Відступ від тексту зліва */
}

.cat-item:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 10px 20px rgba(0,0,0,0.5);
}

.cat-item img {
  width: 250px; /* Збільшили ширину (було 140px) */
  height: 250px; /* Збільшили висоту */
  object-fit: cover; 
  border-radius: 12px; /* Трохи кругліші кути */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); /* Більш м'яка і об'ємна тінь */
  transition: 0.3s;
}
.cat-item img:hover {
  transform: scale(1.08) rotate(2deg);
}

.cat-text{
  color:#0ea5a4;
  font-weight:700;
  text-transform:uppercase;
  font-size:20px;
  line-height:1.1;
  max-width:140px;
  text-decoration: none;
}

/* Hover 3D эффект */
.catalog-grid:hover .cat-item{
  transition:transform .2s;
}
.service-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
/* Общий блок аккордеона */
.collapse {
  padding: 0;
  overflow: hidden;
}

/* Заголовок */
.collapse-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  cursor: pointer;
}

.collapse-header:hover {
  background: rgba(255,255,255,0.05);
}

/* Стрелочка */
.collapse .arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Содержимое */
.collapse-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.collapse-content p {
  margin: 10px 0;
}

.collapse-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Активный (открытый) блок */
.collapse.active .collapse-content {
  padding: 16px;
  max-height: 500px; /* увеличить если фото большое */
}

.collapse.active .arrow {
  transform: rotate(180deg);
}
/* Контейнер шага */
.step {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; /* Важливо, щоб прихований контент не вилазив */
}

/* Верхняя панель шага */
.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s;
}

.step-header:hover {
  background: rgba(255,255,255,0.05);
}

.step-header strong {
  font-size: 16px;
}

/* Стрелочка */
.arrow {
  margin-left: auto;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Скрытый блок */
.step-content {
  max-height: 0; /* Приховано */
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.3s;
}

.step-content p {
  margin: 12px 0;
}

.step-img {
  width: 100%;      /* Ширина на весь блок */
  height: auto;     /* Висота автоматична (пропорційна), щоб не обрізало */
  display: block;   /* Прибирає зайві відступи знизу */
  border-radius: 8px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Тінь для краси */
}

/* Активный блок */
.step.active .step-content {
  /* Ставимо велике значення, щоб влізло навіть вертикальне фото */
  max-height: 2000px; 
  opacity: 1;
  padding-bottom: 20px;
}

.step.active .arrow {
  transform: rotate(180deg);
}
/* Контейнер для сетки товаров */
.product-grid {
    display: grid;
    /* Создаем 4 колонки равной ширины. 
       На мобильных можно сделать меньше, но пока делаем как на фото */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 20px; /* Отступ между товарами */
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Сама карточка товара (она же ссылка) */
.product-card {
    border: 1px solid #eaeaea; /* Легкая рамка */
    border-radius: 8px;        /* Скругление углов */
    padding: 15px;
    text-align: center;        /* Центрируем текст и фото */
    text-decoration: none;     /* Убираем подчеркивание ссылки */
    color: #333;               /* Цвет текста */
    transition: box-shadow 0.3s; /* Плавная анимация тени */
    background: #fff;
    display: flex;             /* Чтобы ровно выстроить содержимое */
    flex-direction: column;    /* Содержимое друг под другом */
    justify-content: space-between;
}

/* Эффект при наведении мышкой */
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Тень при наведении */
}

/* Картинка товара */
.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Название товара */
.product-title {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #555;
}

/* Цена */
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #3399cc; /* Синий цвет цены как на фото */
}
/* Карта */
#map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 1;
}

/* Кастомізація попапів (вікон при кліку) під темну тему */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: #0b1220;
  color: #e6eef6;
  border: 1px solid var(--accent);
  border-radius: 8px;
}
.leaflet-popup-content {
  margin: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* === Нова шапка з фото === */

/* Обгортка на всю ширину екрану */
.hero-wrapper {
  /* Градієнт затемнює фото, щоб текст був читабельним */
  background: 
    linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.3)),
    url('https://i.postimg.cc/W1n8dyPm/Gemini-Generated-Image-y2v4bpy2v4bpy2v4.png'); 
  background-size: cover;
  background-position: center;
  background-attachment:scroll ; /* Ефект паралаксу (фото стоїть на місці при прокрутці) */
  position: relative;
  margin-bottom: 1px;
  padding-bottom: 600px
}

/* Прибираємо старі фони, щоб вони не перекривали фото */
.hero-wrapper header {
  background: transparent; 
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Додаткова тінь для тексту, щоб краще читався на фото */
.hero .title, .hero .lead {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Адаптація контейнера всередині обгортки */
.hero-wrapper .container {
  padding-top: 0;
  padding-bottom: 40px;
}
/* === Стилі для ТОП ПРОДАЖІВ === */

.top-products-grid {
  display: grid;
  /* Було 240px, ставимо 300px. 
     Це змусить браузер ставити по 3 картки в ряд на звичайному ноутбуці/ПК, 
     що ідеально для 6 товарів. */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

/* Бейджики (TOP, SALE) */
.badge-top, .badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}
.badge-top { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.badge-sale { background: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }

/* Фото товару */
.img-wrap {
  width: 100%;
  height: 200px;
  background: #fff; /* Білий фон для товарів, щоб їх було видно */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Інформація про товар */
.prod-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-info h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
}

.prod-info .desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

/* Ціна */
.price-row {
  margin-top: auto; /* Притискає ціну до низу */
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
}

.new-price {
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
}

/* Кнопка */
.btn-buy {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-buy:hover {
  background: var(--accent);
  color: #042028;
  box-shadow: 0 0 15px rgba(14, 165, 164, 0.4);
}
/* === Стилі для Прайс-листа === */

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(14, 165, 164, 0.3);
}

/* Блок зображення */
.price-img-holder {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.price-img-holder img {
  width: 100%;
  height: 100%;
  object-fit:initial;
  transition: transform 0.5s ease;
}

.price-card:hover .price-img-holder img {
  transform: scale(1.05);
}

/* Бейдж "Популярне" */
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #042028;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Контент картки */
.price-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.price-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.price-content .desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Велика ціна */
.price-row-large {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--text-main);
}

.price-row-large .label {
  font-size: 14px;
  color: var(--muted);
  margin-right: auto;
}

.price-row-large .currency {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-row-large .unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Кнопка замовлення в прайсі */
.btn-price {
  margin-top: 18px;
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: rgba(14, 165, 164, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-sizing: border-box; /* Щоб padding не ламав ширину */
}

.btn-price:hover {
  background: var(--accent);
  color: #fff;
}

/* --- Спеціальний стиль для картки Комплекту --- */
.kit-card {
  border: 1px solid var(--accent); /* Виділяємо рамкою */
  background: linear-gradient(180deg, rgba(14, 165, 164, 0.05) 0%, rgba(15, 23, 42, 0) 100%);
}

.kit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.kit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-main);
}

.check-icon {
  color: var(--accent);
  font-weight: bold;
}

.separator {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 10px 0 20px;
  width: 100%;
}
.sidebar-card {
  padding: 0 !important; /* Прибираємо старі відступи, щоб фото було на всю ширину */
  overflow: hidden;      /* Обрізаємо все, що вилазить */
  display: flex;
  flex-direction: column;
}

.sidebar-img-wrap {
  width: 100%;
  height: 200px; /* Висота картинки */
  background: #000;
}

.sidebar-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Фото заповнює блок і не розтягується */
}

.sidebar-content {
  padding: 24px; /* Внутрішні відступи для тексту */
}