.products-category-wrapper {
    padding: 15px;
    margin-bottom: 30px;
}

.products-category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    height: 400px;
}

.products-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.products-category-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.products-category-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.products-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-category-card:hover .products-category-image {
    transform: scale(1.05);
}

.products-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-category-card:hover .products-category-overlay {
    opacity: 1;
}

.products-category-content {
    position: relative;
    padding: 25px 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.products-category-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Двойное подчеркивание точно по длине текста */
.products-category-title:before {
    opacity: 0;
    transform: translate(-20px, 0);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    bottom: -7px;
    content: '';
    width: 100%;
    height: 1px;
    background: #fec300;
}

.products-category-title:after {
    opacity: 0;
    transform: translate(-20px, 0);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    bottom: -10px;
    content: '';
    width: 100%;
    height: 1px;
    background: #fec300;
}

.products-category-card:hover .products-category-title:before,
.products-category-card:hover .products-category-title:after {
    opacity: 1;
    transform: translate(0, 0);
}

.products-category-arrow {
    font-size: 20px;
    color: #999;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.products-category-card:hover .products-category-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: #fec300;
}

/* Стили для карточек товаров */
.products-item-wrapper {
    padding: 15px;
    margin-bottom: 30px;
}

.products-item-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.products-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.products-item-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.products-item-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.products-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-item-card:hover .products-item-image {
    transform: scale(1.03);
}

/* Стили для анимации крестика при hover на изображение */
.products-item-image-container.imgLayer {
    position: relative;
    display: block;
    overflow: hidden;
}

.products-item-image-container.imgLayer:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.products-item-image-container.imgLayer:hover:before {
    opacity: 1;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.products-item-image-container.imgLayer span {
    width: 50px;
    height: 2px;
    background: #fec300;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -1px;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.products-item-image-container.imgLayer span:first-of-type {
    -webkit-transform: translate(-100px) rotate(90deg);
    transform: translate(-100px) rotate(90deg);
}

.products-item-image-container.imgLayer span:last-child {
    -webkit-transform: translate(100px);
    transform: translate(100px);
}

.products-item-image-container.imgLayer:hover span {
    opacity: 1;
    -webkit-transform: translate(0px) rotate(0);
    transform: translate(0px) rotate(0);
}

.products-item-image-container.imgLayer:hover span:last-child {
    opacity: 1;
    -webkit-transform: translate(0px) rotate(90deg);
    transform: translate(0px) rotate(90deg);
}

.products-item-content {
    padding: 20px 15px 25px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.products-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 70px;
}

.products-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.products-item-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.products-item-price {
    font-size: 22px;
    font-weight: 700;
    color: #fec300;
    margin: 0;
    line-height: 1;
}

.products-item-arrow {
    font-size: 18px;
    color: #ddd;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: #f8f9fa;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-item-card:hover .products-item-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: #fec300;
    background: rgba(254, 195, 0, 0.1);
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .products-category-card {
        height: 350px;
        border-radius: 15px;
    }

    .products-category-image-container {
        height: 230px;
    }

    .products-category-title {
        font-size: 20px;
    }

    .products-category-wrapper {
        padding: 10px;
        margin-bottom: 20px;
    }

    .products-item-wrapper {
        padding: 10px;
        margin-bottom: 20px;
    }

    .products-item-card {
        border-radius: 15px;
    }

    .products-item-title {
        font-size: 16px;
    }

    .products-item-price {
        font-size: 18px;
    }
}

.footer-telegram {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-top: 10px;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.telegram-link:hover {
    background: #006699;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.telegram-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Секция документов */
.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #fec300;
}

.footer-links-list {
    margin-top: 25px;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-doc-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-doc-link:hover {
    color: #fec300;
    text-decoration: none;
}

/* Секция компании */
.footer-company-section {
    display: flex;
    justify-content: flex-end;
}

.company-info-block {
    text-align: right;
}

.company-brand {
    margin-bottom: 25px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #fec300;
    margin-bottom: 5px;
    position: relative;
}

.brand-name:before {
    content: '©';
    margin-right: 5px;
    color: #666;
    font-weight: 400;
}

.brand-rights {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.company-legal {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 4px solid #fec300;
    display: inline-block;
}

.legal-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    min-width: 200px;
}

.legal-item:last-child {
    margin-bottom: 0;
}

.legal-label {
    color: #666;
    font-weight: 600;
    font-size: 13px;
}

.legal-value {
    color: #333;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .footer-telegram {
        justify-content: center;
        margin-top: 25px;
    }

    .footer-links-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-company-section {
        justify-content: center;
    }

    .company-info-block {
        text-align: center;
    }

    .company-legal {
        text-align: left;
    }

    .telegram-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .telegram-icon {
        width: 16px;
        height: 16px;
    }
}

/* Заголовок секции */
.featured-title-section {
    margin-bottom: 20px;
}

.featured-subtitle {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.featured-title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #fec300;
}

.featured-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Карточки товаров */
.featured-product-wrapper {
    padding: 15px;
    margin-bottom: 30px;
}

.featured-product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    height: 360px;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.featured-product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.featured-product-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-image {
    transform: scale(1.03);
}

/* Стили для анимации крестика при hover на изображение */
.featured-product-image-container.imgLayer {
    position: relative;
    display: block;
    overflow: hidden;
}

.featured-product-image-container.imgLayer:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.featured-product-image-container.imgLayer:hover:before {
    opacity: 1;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.featured-product-image-container.imgLayer span {
    width: 50px;
    height: 2px;
    background: #fec300;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -1px;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.featured-product-image-container.imgLayer span:first-of-type {
    -webkit-transform: translate(-100px) rotate(90deg);
    transform: translate(-100px) rotate(90deg);
}

.featured-product-image-container.imgLayer span:last-child {
    -webkit-transform: translate(100px);
    transform: translate(100px);
}

.featured-product-image-container.imgLayer:hover span {
    opacity: 1;
    -webkit-transform: translate(0px) rotate(0);
    transform: translate(0px) rotate(0);
}

.featured-product-image-container.imgLayer:hover span:last-child {
    opacity: 1;
    -webkit-transform: translate(0px) rotate(90deg);
    transform: translate(0px) rotate(90deg);
}

.featured-product-content {
    padding: 20px 15px 25px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.featured-product-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 65px;
}

.featured-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.featured-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #fec300;
    margin: 0;
    line-height: 1;
}

.featured-product-arrow {
    font-size: 16px;
    color: #ddd;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: #f8f9fa;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product-card:hover .featured-product-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: #fec300;
    background: rgba(254, 195, 0, 0.1);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .featured-title {
        font-size: 28px;
    }

    .featured-description {
        font-size: 15px;
    }

    .featured-product-wrapper {
        padding: 10px;
        margin-bottom: 20px;
    }

    .featured-product-card {
        height: 340px;
        border-radius: 15px;
    }

    .featured-product-image-container {
        height: 200px;
    }

    .featured-product-title {
        font-size: 16px;
        min-height: 60px;
    }

    .featured-product-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .featured-title {
        font-size: 24px;
    }
}

.product-slider-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-slider-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fec300" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23fec300" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.slide-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.slide-content {
    align-items: center;
}

/* Изображение слайда */
.slide-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.slide-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.slide-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.slide-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide-image-container:hover .slide-product-image {
    transform: scale(1.05);
}

.slide-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(254, 195, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-image-container:hover .slide-image-overlay {
    opacity: 1;
}

/* Контент слайда */
.slide-text-col {
    padding-left: 40px;
}

.slide-product-content {
    max-width: 500px;
}

.slide-product-badge {
    display: inline-block;
    background: #fec300;
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.slide-product-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.slide-product-description {
    margin-bottom: 30px;
}

.slide-product-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.slide-product-price {
    margin-bottom: 35px;
}

.slide-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #fec300;
    position: relative;
}

/* Стрелки слайдера - переопределяем оригинальные стили Swiper */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #fec300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fec300;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 20;
    background-image: none !important;
    background-size: auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Убираем все псевдоэлементы Swiper'а */
.swiper-button-prev:before,
.swiper-button-next:before,
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none !important;
    content: none !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #fec300 !important;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(254, 195, 0, 0.4);
}

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

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

/* Пагинация */
.slider-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(254, 195, 0, 0.3);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.slider-pagination .swiper-pagination-bullet-active {
    background: #fec300;
    transform: scale(1.3);
}

/* Мобильная адаптация */
@media (max-width: 991px) {
    .slide-text-col {
        padding-left: 15px;
        margin-top: 40px;
        text-align: center;
    }

    .slide-product-title {
        font-size: 36px;
    }

    .slide-price-value {
        font-size: 28px;
    }

    .slide-price-value:before {
        left: -20px;
    }
}

@media (max-width: 768px) {
    .product-slider-section {
        padding: 60px 0;
    }

    .slide-container {
        min-height: auto;
        padding: 40px 0;
    }

    .slide-image-container {
        height: 300px;
        margin: 0 auto;
        max-width: 300px;
    }

    .slide-product-title {
        font-size: 28px;
    }

    .slide-price-value {
        font-size: 24px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .slider-pagination {
        display: block;
    }
}

/* Стили для кнопки на светлом фоне */
.button-dark-text {
    color: #333 !important;
}

.button-dark-text:hover {
    color: #333 !important;
}

/* Стили для кнопки на светлом фоне */
@media (max-width: 480px) {
    .slide-product-title {
        font-size: 24px;
    }

    .slide-product-description p {
        font-size: 15px;
    }

    .slide-price-value {
        font-size: 22px;
    }
}

/* Скрыть пагинацию на десктопе */
@media (min-width: 769px) {
    .slider-pagination {
        display: none;
    }
}


.product-page-section {
    background: #fff;
    padding: 40px 0 60px;
}

/* Изображение товара */
.product-image-section {
    position: sticky;
    top: 20px;
}

.product-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.product-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image:hover .product-image {
    transform: scale(1.05);
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image:hover .product-image-overlay {
    opacity: 1;
}

.product-image-overlay i {
    color: white;
    font-size: 32px;
}

/* Состав - красивый заголовок */
.product-ingredients-simple {
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-ingredients-simple .ingredients-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.product-ingredients-simple .ingredients-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #fec300;
}

.product-ingredients-simple .ingredients-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Убираем списки из состава */
.product-ingredients-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.product-ingredients-simple li {
    display: inline;
}

.product-ingredients-simple li:not(:last-child):after {
    content: ', ';
}

/* Информация о товаре */
.product-info-section {
    padding-left: 40px;
}

.product-header {
    margin-bottom: 25px;
}

.product-badge {
    display: inline-block;
    background: #fec300;
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.product-description {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.product-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Характеристики */
.product-features {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.features-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.features-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #fec300;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(254, 195, 0, 0.1);
}

.feature-label {
    font-weight: 600;
    color: #333;
}

.feature-value {
    color: #666;
}

/* Варианты товара */
.product-variants {
    margin-bottom: 30px;
}

.variant-option {
    margin-bottom: 15px;
}

.variant-radio {
    display: none;
}

.variant-label {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-option.active .variant-label,
.variant-radio:checked + .variant-label {
    background: rgba(254, 195, 0, 0.1);
    border-color: #fec300;
}

.variant-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.variant-left {
    flex: 1;
}

.variant-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.variant-price-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
}

.variant-price {
    color: #fec300;
    font-size: 24px;
    font-weight: 700;
}

.currency {
    font-size: 20px;
}

/* Счетчик количества */
.variant-quantity {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    height: 50px;
    width: 140px;
}

.quantity-btn {
    width: 45px;
    height: 50px;
    border: none;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.quantity-btn:hover {
    background: #fec300;
    color: #333;
}

.quantity-minus {
    border-right: 1px solid #e0e0e0;
}

.quantity-plus {
    border-left: 1px solid #e0e0e0;
}

.quantity-input.amount {
    width: 50px;
    height: 50px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #fff;
    font-size: 16px;
    -moz-appearance: textfield;
}

.quantity-input.amount::-webkit-outer-spin-button,
.quantity-input.amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input.amount:focus {
    outline: none;
    background: #fafafa;
}

/* Кнопки действий */
.product-actions {
    text-align: center;
}

/* Стили для кнопки на светлом фоне */
.product-actions .button {
    color: #333 !important;
}

.product-actions .button:hover {
    color: #333 !important;
}

.product-unavailable {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.unavailable-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #006699;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Мобильная адаптация */
@media (max-width: 991px) {
    .product-info-section {
        padding-left: 15px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 26px;
    }

    .product-image {
        height: 400px;
    }

    .features-list {
        gap: 8px;
    }

    .feature-item {
        flex-direction: column;
        gap: 5px;
    }

    .variant-price {
        font-size: 20px;
    }

    .variant-quantity {
        width: 120px;
        height: 45px;
    }

    .quantity-btn {
        width: 40px;
        height: 45px;
        font-size: 16px;
    }

    .quantity-input.amount {
        width: 40px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 22px;
    }

    .product-image {
        height: 300px;
    }

    .variant-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .variant-quantity {
        width: 100%;
        justify-content: center;
    }
}

/* Убираем весь хаос из состава и делаем красивый текст */
.product-ingredients-simple ul.features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.product-ingredients-simple ul.features ul {
    display: inline;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-ingredients-simple li {
    display: inline;
    list-style: none;
}

.product-ingredients-simple li a {
    color: inherit;
    text-decoration: none;
    font-style: inherit;
}

.product-ingredients-simple .fa-check {
    display: none;
}

.product-ingredients-simple li:not(:last-child):after {
    content: ', ';
}

/* Убираем все вложенные списки */
.product-ingredients-simple ul ul ul ul ul ul {
    display: inline;
}

.product-ingredients-simple ul ul ul ul ul ul li {
    display: inline;
}

.product-ingredients-simple span.fa {
    display: none !important;
}