 /* Стили для липкой шапки */
 .navbar {
     position: sticky;
     top: 0;
     z-index: 1020;
     box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.2);
 }

 .logo {
     height: 50px;
 }

 /* Стили для слайдера */
 .hero-slider .item {
     height: 600px;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
 }

 .hero-slider .item-content {
     background-color: rgba(0, 0, 0, 0.6);
     padding: 30px;
     max-width: 500px;
 }

 /* Стили для категорий товаров */
 .category-item {
     margin-bottom: 30px;
     transition: transform 0.3s;
 }

 .category-item:hover {
     transform: translateY(-5px);
 }

 .category-img {
     height: 200px;
     object-fit: cover;
     width: 100%;
     border-radius: 10px;
 }

 /* Стили для блока преимуществ */
 .benefit-icon {
     font-size: 40px;
     margin-bottom: 15px;
 }

 /* Стили для фотогалереи */
 .gallery-item {
     height: 250px;
     overflow: hidden;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 /* Стили для формы захвата */
 .capture-form {
     background-size: cover;
     background-position: center;
     padding: 80px 0;
 }

 .form {
     /* background-color: rgba(255, 255, 255, 0.5); */
     background-color: #fff;
 }

 .bonus-list {
     list-style-type: none;
     padding-left: 0;
 }

 .bonus-list li {
     margin-bottom: 15px;
     padding-left: 30px;
     position: relative;
 }

 .bonus-list li:before {
     content: "✓";
     position: absolute;
     left: 0;
     color: #28a745;
     font-weight: bold;
 }

 /* Стили для подвала */
 footer {
     background-color: #f8f9fa;
     padding: 50px 0 20px;
 }

 .footer-links {
     list-style-type: none;
     padding-left: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .social-links a {
     display: inline-block;
     margin-right: 10px;
 }

 /* Кнопка "Смотреть все работы" под каруселью */
 .btn-view-all {
     padding: 0.6rem 1.4rem;
     font-weight: 600;
 }

 /* Кнопка "Наверх" (скролл) */
 .scroll-top {
     position: fixed;
     left: 20px;
     bottom: 40px;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #0d6efd;
     color: #fff;
     border: none;
     box-shadow: 0 6px 18px rgba(13, 110, 253, 0.24);
     cursor: pointer;
     z-index: 2000;
     opacity: 0;
     visibility: hidden;
     transform: translateY(8px);
     transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
 }

 .scroll-top.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .scroll-top svg {
     width: 20px;
     height: 20px;
     display: block;
 }

 .mobile-phone-btn {
     width: 50px;
     height: 50px;
     position: fixed;
     background: #28d231 url(/images/phone.svg) center center no-repeat;
     background-repeat: no-repeat;
     background-size: 30px 30px;
     border-radius: 50%;
     bottom: 40px;
     right: 25px;
     z-index: 99999;
 }

 /* Страница категорий товаров */
 .product-image {
     height: 240px;
     object-fit: contain;
     width: 100%;
     cursor: pointer;
 }

 .product-card {
     height: 100%;
     transition: transform 0.3s;
 }

 .product-card:hover {
     transform: translateY(-5px);
 }

 .old-price {
     text-decoration: line-through;
     color: #6c757d;
 }

 .current-price {
     font-weight: bold;
     color: #dc3545;
     font-size: 1.5rem;
 }

    /* Страница продукта */
    .main-image {
        max-height: 600px;
        object-fit: contain;
        width: 100%;
        cursor: pointer;
    }

    .thumbnail-image {
        height: 150px;
        object-fit: cover;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .thumbnail-image:hover,
    .thumbnail-image.active {
        opacity: 1;
    }

    .thumbnail-carousel {
        margin-top: 15px;
    }

 