
/* СТИЛИ ДЛЯ НОВОЙ СТРАНИЦЫ ПРОДУКЦИИ */
 .support-block {
  background: #f6f8ff;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #618ac8;
  transition: all 0.3s ease;
  list-style: none;
}
 /* Стили для кнопки скачивания приложения */
.download-app-link {
    display: block;
    width: 100%;
    padding: 15px 20px;
    color: #618ac8;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    margin: 25px 0;
}

.download-app-link:hover {
    color: #4a6ca7;
    text-decoration: none;
    transform: translateY(-1px);
}

.download-app-link i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.download-app-link span {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.download-app-link small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
    display: block;
}

/* Стили для серых кнопок поддержки */
.support-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-support {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 15px;
    background-color: #e2e7ec;
    color: rgb(81, 81, 85);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-support:hover {
    background-color: #5a6268;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-support i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .support-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .download-app-link {
        padding: 12px 15px;
    }

    .download-app-link span {
        font-size: 1.1rem;
    }

    .download-app-link i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .download-app-link {
        padding: 10px 12px;
    }

    .download-app-link span {
        font-size: 1rem;
    }

    .download-app-link small {
        font-size: 0.8rem;
    }

    .download-app-link i {
        font-size: 1.6rem;
    }

    .btn-support {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
}
/* Стили для блока с краткими характеристиками */
.brief-specs-box {
    padding: 20px;
    margin: 20px 0;

    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.brief-specs-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #618ac8;
    padding-bottom: 8px;
}

.brief-specs-box ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.brief-specs-box li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #495057;
}

.brief-specs-box strong {
    color: #2c3e50;
}


.price-button-container {
    margin: 10px 0;
}

.price {
    margin: 0 0 5px 0;
}

.price-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
    display: block;
}

.purchase-buttons {
    display: flex;
    justify-content: center;
    margin-top: 0; /
}

.purchase-buttons .btn-get-started {
    display: inline-block;
    width: auto;
    min-width: 240px;
    padding: 14px 35px;
    background-color: #618ac8;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
}

.purchase-buttons .btn-get-started:hover {
    background-color: #4a6ca7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
    .price-button-container {
        margin: 8px 0;
    }

    .purchase-buttons .btn-get-started {
        min-width: 220px;
        padding: 13px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .price-button-container {
        margin: 5px 0;
    }

    .price-value {
        font-size: 1.6rem;
    }

    .purchase-buttons .btn-get-started {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 1.05rem;
    }
}
.product-main {
  padding: 40px 0;
}

.product-image {
  padding-right: 20px;
  text-align: center;
}

.product-image img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

.purchase-info {
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

@media (max-width: 991px) {
  .product-image {
    padding-right: 0;
  }

  .product-image img {
    max-width: 60%;
  }
}

@media (max-width: 767px) {
  .product-image img {
    max-width: 80%;
  }
}

@media (max-width: 575px) {
  .product-image img {
    max-width: 100%;
  }

  .purchase-buttons .btn-get-started {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.product-image {
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.portfolio-details-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-details-slider .swiper {
    height: 100%;
}

.portfolio-details-slider .swiper-wrapper {
    height: 100%;
}

.portfolio-details-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-top: 0;
}

.portfolio-details-slider .swiper-slide img {
    max-width: 95%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    margin-top: 0;
}


.portfolio-details-slider .swiper-button-next,
.portfolio-details-slider .swiper-button-prev {
    color: #618ac8;
    background: rgba(255, 255, 255, 0.95);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.portfolio-details-slider .swiper-button-next:after,
.portfolio-details-slider .swiper-button-prev:after {
    font-size: 1.4rem;
    font-weight: bold;
}

.portfolio-details-slider .swiper-button-next:hover,
.portfolio-details-slider .swiper-button-prev:hover {
    background: #618ac8;
    color: white;
    transform: translateY(-50%) scale(1.15);
}

.portfolio-details-slider .swiper-button-prev {
    left: 30px;
}

.portfolio-details-slider .swiper-button-next {
    right: 30px;
}


.purchase-info {
    padding: 40px 35px;
    border-radius: 16px;
    height: 100%;
    background: white;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
}

.row {
    align-items: stretch;
}

.col-lg-6 {
    display: flex;
}

.col-lg-6 > div {
    width: 100%;
}


@media (max-width: 1199px) {
    .portfolio-details-slider .swiper-button-prev {
        left: 20px;
    }

    .portfolio-details-slider .swiper-button-next {
        right: 20px;
    }

    .purchase-info {
        padding: 35px 30px;
    }
}

@media (max-width: 991px) {
    .col-lg-6 {
        display: block;
    }

    .product-image {
        height: auto;
        min-height: 500px;
        align-items: center;
    }

    .portfolio-details-slider .swiper-slide {
        align-items: center;
    }

    .portfolio-details-slider .swiper-slide img {
        max-width: 90%;
        max-height: 450px;
    }

    .portfolio-details-slider .swiper-button-next,
    .portfolio-details-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .portfolio-details-slider .swiper-button-next:after,
    .portfolio-details-slider .swiper-button-prev:after {
        font-size: 1.2rem;
    }

    .purchase-info {
        padding: 30px 25px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .product-image {
        min-height: 400px;
    }

    .portfolio-details-slider .swiper-slide img {
        max-width: 92%;
        max-height: 380px;
    }

    .portfolio-details-slider .swiper-button-prev {
        left: 15px;
    }

    .portfolio-details-slider .swiper-button-next {
        right: 15px;
    }

    .portfolio-details-slider .swiper-button-next,
    .portfolio-details-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .portfolio-details-slider .swiper-button-next:after,
    .portfolio-details-slider .swiper-button-prev:after {
        font-size: 1.1rem;
    }

    .purchase-info {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .product-image {
        min-height: 350px;
    }

    .portfolio-details-slider .swiper-slide img {
        max-width: 95%;
        max-height: 320px;
    }

    .portfolio-details-slider .swiper-button-prev {
        left: 10px;
    }

    .portfolio-details-slider .swiper-button-next {
        right: 10px;
    }

    .portfolio-details-slider .swiper-button-next,
    .portfolio-details-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .portfolio-details-slider .swiper-button-next:after,
    .portfolio-details-slider .swiper-button-prev:after {
        font-size: 1rem;
    }

    .purchase-info {
        padding: 20px 15px;
    }
}
/* Стили для основных блоков контента */
.full-specs, .support, .faq {
  padding: 30px 0;
}

.full-specs {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.support {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Заголовки секций */
.full-specs h2,
.support h2,
.faq h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.full-specs h2::after,
.support h2::after,
.faq h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #618ac8, #4a6ca7);
  border-radius: 2px;
}

/* Блоки с контентом */
.portfolio-info {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Заголовки внутри блоков */
.portfolio-info h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.portfolio-info h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #618ac8;
}

.portfolio-info h4 {
  color: #34495e;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 25px 0 15px 0;
  padding-left: 15px;
  border-left: 4px solid #618ac8;
}

/* Списки характеристик */
.portfolio-info ul {
  padding-left: 0;
  margin-bottom: 25px;
}

.portfolio-info li {
  background: #f8f9fa;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #618ac8;
  transition: all 0.3s ease;
  list-style: none;
}

.portfolio-info li:hover {
  background: #e9ecef;
}

.portfolio-info li strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Вложенные списки */
.portfolio-info ul ul {
  margin: 10px 0 0 20px;
  padding-left: 0;
}

.portfolio-info ul ul li {
  background: white;
  border-left: 3px solid #a0b8e0;
  padding: 10px 15px;
  margin-bottom: 8px;
}

.portfolio-info ul ul li:hover {
  background: #f8f9fa;
}


.portfolio-info p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 15px;
  padding: 0 10px;
}

.portfolio-video a {
  display: inline-flex;
  align-items: center;
  background: #618ac8;
  color: white !important;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.portfolio-video a:hover {
  background: #4a6ca7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(97, 138, 200, 0.3);
}

.portfolio-video a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Карточка в характеристиках */
.portfolio-info .card {
  background: linear-gradient(135deg, #618ac8, #4a6ca7);
  color: white;
  border-radius: 12px;
  margin-bottom: 25px;
  border: none;
  box-shadow: 0 6px 20px rgba(97, 138, 200, 0.2);
}

.portfolio-info .card-body {
  padding: 20px;
  font-size: 1rem !important;
  font-weight: 500;
}

@media (max-width: 768px) {
  .full-specs, .support, .faq {
    padding: 20px 0;
  }

  .portfolio-info {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .full-specs h2,
  .support h2,
  .faq h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .portfolio-info h3 {
    font-size: 1.3rem;
  }

  .portfolio-info li {
    padding: 12px 15px;
  }

  .portfolio-info a {
    padding: 10px 15px 10px 45px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .portfolio-info {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .portfolio-info h3 {
    font-size: 1.2rem;
  }

  .portfolio-info h4 {
    font-size: 1.1rem;
  }

  .portfolio-info li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
.portfolio-details-slider {
    user-select: none;
    -webkit-user-select: none;
}
.for-h1 h1{
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
}
/* FILL */
.template-buttons {
    min-width: 180px;
}

.template-btn-neo {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
}

.template-btn-neo:hover {
    transform: translateY(-2px);
    box-shadow: 12px 12px 24px #d1d9e6, -12px -12px 24px #ffffff;
}

.template-btn-neo:active {
    transform: translateY(0);
    box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
}

.template-primary {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.template-success {
    background: linear-gradient(145deg, #e8f5e8, #c8e6c9);
    color: #2e7d32;
}

.template-info {
    background: linear-gradient(145deg, #e1f5fe, #b3e5fc);
    color: #0277bd;
}

.template-warning {
    background: linear-gradient(145deg, #fff8e1, #ffecb3);
    color: #ff8f00;
}

.template-btn-neo:hover {
    color: inherit;
}


/* СТИЛИ ДЛЯ КАРТОЧЕК ИЗОБРАЖЕНИЙ В fill */
 .image-grid.news-image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 10px;
    }

    .image-item.news-image-item {
        display: flex;
        flex-direction: column;
    }

    .news-image-grid .card {
        transition: transform 0.2s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-image-grid .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .news-image-grid .card-img-top {
        height: 100px;
        object-fit: contain;
        padding: 5px;
        background-color: #f8f9fa;
        flex-shrink: 0;
    }

    .news-image-grid .card-body {
        padding: 8px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-image-grid .card-text {
        flex-grow: 1;
    }

    .news-image-grid .card-footer {
        padding: 5px;
        background: transparent;
        border-top: 1px solid #eee;
        margin-top: auto;
        flex-shrink: 0;
    }
    .image-item.selected {
    border: 3px solid #007bff;
    border-radius: 8px;
    }

    .image-item.selected .card {
        border-color: #007bff;
    }
