  /* Отключение калькулятор! */
  .bottom-total-price {
    display: none !important;
}
  /* отключение блока с продукцией категории*/
  .widget-products__items
  {
    display: none !important;
  }
  .my-check {
    display: inline-block;
    width: 16px;     /* размер галочки */
    height: 16px;
    background-color: #28a745; /* зеленый цвет */
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M6 10.793L3.354 8.146 2.646 8.854 6 12.207l8-8-0.707-0.707z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M6 10.793L3.354 8.146 2.646 8.854 6 12.207l8-8-0.707-0.707z"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* ================== БЛОК ПОДДЕРЖКИ ДЛЯ РОДИТЕЛЬСКОЙ СТРАНИЦЫ ================== */
.parent-support-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin: 20px 0;
  width: 100%;
}

.parent-support-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.parent-support-icon svg {
  width: 50px;
  height: 50px;
}

.parent-support-content {
  flex: 1;
  width: 100%;
}

.parent-support-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.parent-support-text-content {
  flex: 1;
}

.parent-support-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.parent-support-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}

.parent-support-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
  max-width: 200px;
}

.parent-support-button:hover {
  background: #0056b3;
}

/* ================== ОСНОВНОЙ КОНТЕНТ ДЛЯ РОДИТЕЛЬСКОЙ СТРАНИЦЫ ================== */
.parent-about-content {
  flex: 1;
  font-size: 16px;
  min-width: 0;
  margin-top: -109px;
}

/* СЕТКА ЭЛЕМЕНТОВ */
.parent-content-grid {
  display: grid;
  grid-template-columns: 1fr; /* на мобильных — один столбец */
  gap: 15px;
}

.parent-content-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  width: 100%;
  height: auto;
  min-height: 200px;
  text-decoration: none;
  color: black;
}


.parent-content-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
  text-decoration: none;
  color: black;
}

.parent-content-item img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.parent-content-item h3 {
  font-size: 16px;
  margin: 10px 0 0 0;
}

/* Стили для планшетов и десктопов */
@media (min-width: 769px) {
  .parent-content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .parent-content-item {
    flex-direction: row;
    text-align: left;
    height: 300px;
    padding: 20px;
  }
  
  .parent-content-item img {
    width: 150px;
    height: 200px;
  }
  
  .parent-content-item h3 {
    margin-top: 20px;
    margin-left: 20px;
  }
  
  .parent-support-block {
    flex-direction: row;
    max-width: 700px;
    margin-left: 350px;
  }
  
  .parent-support-text-wrapper {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }
  
  .parent-support-button {
    width: auto;
  }
}
.my-about-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.my-about-sidebar ul li {
  border-bottom: 1px solid #eee;
  position: relative;
}
.my-about-sidebar ul li:last-child { border-bottom: none; }

/* Заголовок пункта меню */
.my-about-sidebar ul li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #222;
  cursor: pointer;
  font-size: 15px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

/* hover и активный */
.my-about-sidebar ul li:hover > a { background: #fafafa; }
.my-about-sidebar ul li.open > a { background: #00569c; font-weight: 600; color: white;}

/* стрелка */
.arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.arrow svg {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 220ms ease;
  transform-origin: center;
}
.my-about-sidebar ul li.open > a .arrow svg {
  transform: rotate(90deg);
}

/* подменю */
.submenu {
  display: none;
  background: #f6f6f6;
  padding: 10px 18px 14px 18px;
}
.submenu.open { display: block; background: #f6f6f6; color: #00569c; }

.submenu li {
  border: none;
  padding: 0;
  margin: 0;
}
.submenu li a {
  display: block;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
}
.submenu li a:hover { color: #333; }

/* Только текст текущей страницы синий */
.my-about-sidebar a.current-text {
  color: #00569c !important;
  background: #f6f6f6 !important;
}

.my-about-sidebar {
  width: 250px;
  margin-right: 40px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .my-about-sidebar { width: 100%; margin-right: 0; margin-bottom: 20px; }
}

/* ====== ОСНОВНОЙ КОНТЕНТ ====== */
.my-about-content {
  flex: 1;
  font-size: 16px;
  min-width: 0;
  margin-top: -165px;
}

/* СЕТКА ЭЛЕМЕНТОВ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ====== АДАПТИВ ====== */
@media (max-width: 768px) {
  .my-about-title {
    font-size: 22px;
    margin: 10px 4%;
  }
  .my-about-page-container {
    flex-direction: column;
    margin: 0 4%;
  }
  .my-about-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.my-about-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 5% 20px;
}

.my-about-page-container {
  display: flex;
  align-items: flex-start;
  margin: 0 5% 40px;
  flex-wrap: wrap;
}

/* БАННЕРЫ */
.my-about-sidebar-banner {
  margin-bottom: 20px;
}
.my-about-sidebar-banner img {
  width: 100%;
  display: block;
}

/* Блок поддержки */
.support-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin: 20px 0;
  width: 100%;
}
.support-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.support-icon svg {
  width: 50px;
  height: 50px;
}
.support-content { flex: 1; width: 100%; }
.support-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.support-text-content { flex: 1; }
.support-title { margin: 0 0 8px 0; font-size: 18px; font-weight: 600; color: #212529; }
.support-text { margin: 0; font-size: 14px; line-height: 1.5; color: black; }
.support-button {
  background: #fff;
  color: #0067bb;
  border: 2px solid #0067bb;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
  max-width: 200px;
}
.support-button:hover {
  background: #0067bb;
  color: white;
}

/* ==================== ГАЛЕРЕИ, КАРУСЕЛИ, МОДАЛКИ ==================== */
.my-list-viz-section { 
  display: block;
  /*width: 100%;*/
  position: relative;
  clear: both;
  margin: 60px auto;
  max-width: 1100px; 
  min-width: 1100px; 
}

.my-list-viz-gallery-container { display: flex; align-items: flex-start; gap: 20px; margin: 0 auto 50px; flex-wrap: wrap; }
.my-list-viz-thumbnails { display: flex; flex-direction: column; gap: 10px; }
.my-list-viz-thumbnails img { width: 80px; height: 60px; object-fit: cover; cursor: pointer; border: 2px solid transparent; border-radius: 4px; transition: 0.3s; }
.my-list-viz-thumbnails img:hover { border-color: #999; }
.my-list-viz-thumbnails img.my-list-viz-active { border-color: #007bff; }

.my-list-viz-main-image {
  position: relative;
  flex: 1;
  max-width: 600px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff00;
  border-radius: 8px;
  overflow: hidden;
}
.my-list-viz-main-image img { max-width: 400px; max-height: 100%; object-fit: contain; border-radius: 8px; display: block; }

.my-list-viz-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.my-list-viz-main-image:hover .my-list-viz-nav-btn { opacity: 1; }
.my-list-viz-prev-btn { left: 10px; }
.my-list-viz-next-btn { right: 10px; }
.my-list-viz-zoom-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.my-list-viz-main-image:hover .my-list-viz-zoom-btn { opacity: 1; }
.my-list-viz-description { flex: 1; min-width: 250px; }
.my-list-viz-description h3 { margin-top: 0; font-size: 22px; }
.my-list-viz-description p { font-size: 16px; line-height: 1.5; margin-bottom: 20px; }
.my-list-viz-btn { display: inline-block; padding: 10px 20px; background: #00569c; color: white; font-weight: bold; border-radius: 6px; text-decoration: none; transition: 0.3s; }
.my-list-viz-btn:hover { background: #0067bb; text-decoration: none; color: white;}

/* ===== ПОПАП ===== */
.my-list-viz-popup {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.my-list-viz-popup img { max-width: 90%; max-height: 90%; border-radius: 10px; }
.my-list-viz-popup.my-list-viz-active { display: flex; }
.my-list-viz-close-popup {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* ===== КАРУСЕЛЬ ===== */
.my-list-viz-carousel-container {
  position: relative;
  min-width: 900px;
  margin-top: 30px;
}
.my-list-viz-carousel {
  display: flex;
  overflow: hidden;
  gap: 10px;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.my-list-viz-carousel img {
  height: 120px;
  width: auto;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s;
  object-fit: cover;
}
.my-list-viz-carousel img:hover { transform: scale(1.05); }
.my-list-viz-carousel-btn {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none; color: white;
  font-size: 20px; cursor: pointer;
  padding: 10px 15px; border-radius: 4px; z-index: 2;
  transition: background 0.3s;
}
.my-list-viz-carousel-btn:hover { background: rgba(0,0,0,0.7); }
.my-list-viz-carousel-prev { left: 10px; }
.my-list-viz-carousel-next { right: 10px; }
.my-list-viz-carousel-indicator { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
.my-list-viz-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: background 0.3s; }
.my-list-viz-carousel-dot.active { background: #007bff; }

/* ===== НАШИ ПРЕИМУЩЕСТВА ===== */
.my-features { display: flex; justify-content: space-around; align-items: flex-start; padding: 40px 20px; background: #fff; gap: 30px; flex-wrap: wrap; width: 100%; border: 1px solid rgba(192,192,192,0.4); border-radius: 4px; }
.my-feature { display: flex; align-items: center; gap: 12px; max-width: 300px; flex: 1 1 250px; }
.my-feature img { width: 90px; flex-shrink: 0; }
.my-feature p { font-weight: bold; font-size: 14px; line-height: 1.4; margin: 0; text-align: left; }

/* ===== ТЕКСТОВЫЕ БЛОКИ ===== */
.text-block {
  background: url(https://static.wow2print.com/storage/4231/content/image/1707472880690072f42b50f1.41065460.png) #f2f2f2 0 0 repeat;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid #3498db;
  width: 100%;
  top: 30px;
}
.text-block p { margin: 0; font-size: 16px; text-align: justify; color: #444; }

.text-kontent { margin-top: 25px; margin-bottom: 15px; }
.text-kontent h1 { font-size: 24px; margin-top: 15px; margin-bottom: 15px; }
.text-kontent h2 { font-size: 20px; margin-top: 15px; margin-bottom: 15px; }
.text-kontent li { margin-top: 10px; margin-bottom: 10px; }

.back-button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; background-color: #fff; color: #333; text-decoration: none;
  border-radius: 8px; border: 1px solid #e0e0e0; font-size: 16px; font-weight: 500;
  transition: all 0.3s ease; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  top: 40px;
}
.back-button:hover { color: black; text-decoration: none; background-color: #f5f5f5; border-color: #d0d0d0; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* ==================== МОДАЛЬНОЕ ОКНО ==================== */
.my-list-viz-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); z-index: 10000; align-items: center; justify-content: center; }
.my-list-viz-modal.active { display: flex; }
.my-list-viz-modal-content { position: relative; width: 650px; height: 650px; background-color: #fff; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.my-list-viz-modal-content img { max-width: 100%; max-height: 100%; object-fit: contain; }
.my-list-viz-modal-close { position: absolute; top: 15px; right: 15px; color: #fff; font-size: 30px; font-weight: bold; cursor: pointer; z-index: 10001; background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.my-list-viz-modal-close:hover { background: rgba(0,0,0,0.7); }
.my-list-viz-modal-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; font-size: 24px; cursor: pointer; padding: 10px 15px; border-radius: 4px; z-index: 10001; transition: background 0.3s; }
.my-list-viz-modal-nav:hover { background: rgba(0,0,0,0.7); }
.my-list-viz-modal-prev { left: 20px; }
.my-list-viz-modal-next { right: 20px; }

/* Курсор для кликабельности */
.my-list-viz-main-image img, .my-list-viz-carousel img { cursor: pointer; }

 .my-list-viz-carousel-slide {
    width: 150px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    flex-shrink: 0;
}

/* =========================== */
/* МОБИЛЬНАЯ ВЕРСТКА */
/* =========================== */
@media (max-width: 768px) {

  /* Родительский контейнер */
  .my-about-page-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0 10px !important;
      margin: 0 auto !important;
  }

  /* Заголовок */
  .my-about-title {
      font-size: 26px;
      text-align: center;
      margin-bottom: 15px;
  }

  /* Левое меню */
  .my-about-sidebar {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
  }
  .my-about-sidebar ul {
      padding-left: 0;
  }

  /* Кнопки, баннеры внутри меню */
  .my-about-sidebar-banner img {
      width: 100%;
      height: auto;
  }

  /* Основной контент */
  .my-about-content {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
  }

  /* Галерея */
  .my-list-viz-gallery-container {
      flex-direction: column;
  }

  .my-list-viz-main-image img {
      width: 100% !important;
      height: auto !important;
  }

  .my-list-viz-description {
      margin-top: 20px;
  }

  /* Карусель */
  .my-list-viz-carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
  }

  .my-list-viz-carousel img {
      width: 27% !important;
      min-width: 27% !important;
  }

  /* Текстовые блоки */
  .text-block,
  .my-about-content p,
  .my-about-content ul {
      font-size: 16px;
      line-height: 1.5;
  }

  /* Убрать жёсткие отрицательные маргины */
  .parent-about-content,
  .my-about-content {
      margin-top: 0 !important;
  }
}
/* ======================
   АДАПТИВ ДО 480px
====================== */
@media (max-width: 480px) {
  .my-about-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .my-about-content {
    font-size: 14px;
    padding: 12px;
  }

  .my-about-sidebar ul li a {
    padding: 10px 12px;
    font-size: 15px;
  }

  .my-about-sidebar {
    margin-bottom: 15px;
  }

  .parent-about-content {
    padding: 0 5px;
  }
}

/* ======================
   АДАПТИВ ДО 360px
====================== */
@media (max-width: 360px) {
  .my-about-title {
    font-size: 20px;
  }

  .my-about-content {
    font-size: 13px;
    padding: 10px;
  }

  .my-about-sidebar ul li a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .parent-about-content {
    padding: 0 4px;
  }
}

/* ======================
   АДАПТИВ ДО 320px (Минимум)
====================== */
@media (max-width: 320px) {
  .my-about-title {
    font-size: 18px;
  }

  .my-about-content {
    font-size: 12px;
    padding: 8px;
  }

  .my-about-sidebar ul li a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .parent-about-content {
    padding: 0 2px;
  }
}
  /* =========================
   МОБИЛЬНАЯ ВЕРСТКА (до 768px)
=========================== */
@media (max-width: 768px) {
    body, .main {
        padding: 0 10px !important;
        box-sizing: border-box;
    }

    /* Контейнер каталога */
    .catalog-container,
    .my-list-viz-gallery-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Скрываем карусель полностью на мобильных */
    .my-list-viz-carousel-container {
        display: none !important;
    }

    /* Элементы каталога */
    .parent-content-grid,
    .content-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .parent-content-item,
    .my-list-viz-carousel-slide {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 10px !important;
    }

    .parent-content-item img,
    .my-list-viz-main-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 6px !important;
    }

    .parent-content-item h3 {
        margin: 10px 0 0 0 !important;
        font-size: 16px !important;
        text-align: center !important;
    }

    /* Галерея превью */
    .my-list-viz-thumbnails {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
        overflow-x: auto !important;
    }

    .my-list-viz-thumbnails img {
        width: 60px !important;
        height: 45px !important;
    }

    /* Основное фото */
    .my-list-viz-main-image {
        width: 100% !important;
        min-height: 250px !important;
        margin-bottom: 15px !important;
    }

    /* Кнопки */
    .parent-support-button,
    .support-button,
    .my-list-viz-btn,
    .back-button {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
        font-size: 16px !important;
        margin-top: 10px !important;
    }

    /* Текстовые блоки */
    .text-block,
    .text-kontent p,
    .text-kontent ul li {
        font-size: 15px !important;
        line-height: 1.5 !important;
        padding: 12px !important;
    }

    /* Особенности */
    .my-features {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px 10px !important;
    }

    .my-feature {
        flex: 1 1 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .my-feature img {
        width: 70px !important;
    }

    /* Модальные окна */
    .my-list-viz-modal-content {
        width: 95% !important;
        height: 95% !important;
    }
   .my-list-viz-section h4 {
        display: none !important;
    }
}
@media (max-width: 768px) {
    /* Сбрасываем min-width для мобильных */
    .my-list-viz-section {
        min-width: 0 !important;
        width: 100% !important;
    }
}