/* Общие стили для всего тела сайта */
body {
    font-family: 'Onest', sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #fff;
}

/* Расстояние между шапкой и телом страницы */
.home.content {
    margin-top: 15px;
    padding: 0 60px !important;
    max-width: 1440px !important;
    margin-left: auto !important; 
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Стили для героя-баннера */
.hero-banner {
    width: 100%;
    height: 522px;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    margin-bottom: 25px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Градиент поверх изображения */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(267deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.73) 100%);
    z-index: 1;
}

/* Контент должен быть поверх градиента */
.hero-content {
    position: absolute;
    left: 53px;
    top: 201px;
    width: 536px;
    color: white;
    z-index: 2; 
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 56px;
}

.hero-button {
    width: 291px;
    height: 56px;
    padding: 10px;
    background: #2A85F7;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #1a75e6;
}

.section-title-popular {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 23px;
}

#sectionnewtitle {
    font-size: 36px !important;
    font-weight: 600 !important;
    margin-bottom: 23px !important;
}

#sectionnewtitle-header {
    gap: 0px;
}


.popular-categories {
    margin-bottom: 50px;
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-wrap: nowrap;
}

.container {
    width: 100%;
    max-width: 100%;
    overflow: none !important;
}

.category-card {
    width: 117px;
    padding: 16px;
    background: #F4F4F4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-card:hover {
    border-color: #2A85F7;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: auto;
    max-height: 92px;
    object-fit: contain;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
}

.about-section {
    margin-bottom: 25px;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 25px;
    width: 1147px;
}

.features-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 49px;
    width: 100%;
    height: 220px;
}

.feature-card {
    height: 220px;
    padding: 12px 22px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.feature-card:first-child {
    width: 60%;
    background-image: url('https://roviosda.github.io/fonts-for-pdf/index/block1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: flex-end;
    padding-bottom: 22px !important;
    color: white;
}


.feature-card:not(:first-child) {
    width: 25%;
    background: rgba(0, 0, 0, 0.06);
    color: black;
    justify-content: space-around;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 7px;
}

.feature-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 7px;
}

/* Адаптивность */
@media (max-width: 1395px) {
    .hero-content {
        left: 30px;
        top: 150px;
        width: 450px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 34px;
    }
    
    .about-title {
        width: 100%;
    }
    
    .features-container {
        gap: 30px;
    }

    .categories-grid {
        flex-wrap: wrap;
        justify-content: start;
    }
}

@media (max-width: 1200px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-content {
        left: 20px;
        top: 120px;
        width: 400px;
    }

    .feature-card:first-child {
        width:50%;
    }

    .features-container {
        flex-direction: row !important;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 30px;
    }
    
    .hero-button {
        width: 250px;
        height: 50px;
        font-size: 20px;
    }
    
    .categories-grid {
        justify-content: start;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .category-card {
        width: 100px;
        padding: 12px;
    }
    
    .features-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    
    .feature-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .hero-content {
        left: 15px;
        top: 80px;
        width: 300px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    .hero-button {
        width: 200px;
        height: 45px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .categories-grid {
        gap: 8px;
    }
    
    .category-card {
        width: 90px;
        padding: 10px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .about-title {
        font-size: 28px;
        line-height: 32px;
    }
}

.special-offers {
    margin-bottom: 25px;
    padding-top: 42px;
    padding-left: 0px;
    padding-right: 0px;
    background: rgba(42, 133, 247, 0.07);
    border-radius: 15px;
}

.special-offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 23px;
    margin-bottom: 23px;
    padding: 0 48px;
}

.special-offers-title {
    width: 867px;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

.view-all-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #2A85F7;
}

.special-offers-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    position: relative;
    overflow: auto;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #2A85F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
    flex-shrink: 0;
}

.nav-btn:hover {
    background-color: #1a75e6;
}

.slick-track {
    height: 200px;
}

.products-carousel {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 15px;
    margin: 0 6px;
}

.product-card {
    flex: 1;
    min-width: 0;
    background: white;
    border-radius: 20px;
    outline: 1px solid rgba(0, 0, 0, 0.03);
    outline-offset: -1px;
    padding: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-image-slider {
    width: 100%;
    height: 212px;
    position: relative;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.indicator {
    width: 8px;
    height: 2px;
    background: #DADCDE;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #767D83;
}

.product-price-container {
    display: flex;
    align-items: start !important;
    gap: 6px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #1C2126;
}

.discount-badge {
    height: 20px;
    padding: 0 8px;
    background: #2A85F7;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.product-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #1C2126;
    margin-bottom: 8px;
    flex-grow: 1;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    display: flex;
    align-items: center;
}

.rating-value {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #1C2126;
}

.reviews-count {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
}

.product-code {
    display: flex;
    align-items: center;
    gap: 4px;
}

.code-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
    cursor: pointer;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.stock-info {
    margin-bottom: 16px;
}

.stock-status {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #3CAA3C;
    margin-bottom: 4px;
}

.delivery-info {
    display: flex;
    justify-content: start;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
    margin-bottom: 4px;
}

.delivery-date {
    border-bottom: 1px dotted #767D83;
    margin-left: 5px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 8px 27px;
    background: #2A85F7;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background-color: #1a75e6;
}

/* Адаптивность */
@media (max-width: 1395px) {
    .special-offers-header {
        padding: 0 60px;
    }
    
    .special-offers-container {
        padding: 0 30px;
    }
    
    .special-offers-title {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .special-offers-title {
        font-size: 26px;
        line-height: 30px;
    }
    
    .products-carousel {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .special-offers {
        padding: 30px 0;
    }
    
    .special-offers-header {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .special-offers-container {
        padding: 0 15px;
    }
    
    .special-offers-title {
        font-size: 22px;
        line-height: 26px;
        text-align: center;
    }
    
    .nav-btn {
        display: none;
    }
    
    .products-carousel {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Стили для CTA баннера */
.cta-banner {
    margin-bottom: 25px;
}

.cta-banner-content {
    width: 100%;
    height: 197px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-image: url('https://roviosda.github.io/fonts-for-pdf/index/backgroundcta.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.cta-title {
    width: 536px;
    color: white;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-left: 39px;
    word-wrap: break-word;
}

/* Адаптивность для CTA баннера */
@media (max-width: 1395px) {
    .cta-banner-content {
        height: 180px;
    }
    
    .cta-title {
        font-size: 30px;
        line-height: 34px;
        margin-left: 30px;
        width: 450px;
    }
}

@media (max-width: 1200px) {
    .cta-banner-content {
        height: 160px;
    }
    
    .cta-title {
        font-size: 26px;
        line-height: 30px;
        margin-left: 20px;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .cta-banner-content {
        height: 140px;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 22px;
        line-height: 26px;
        margin-left: 15px;
        width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-banner-content {
        height: 120px;
    }
    
    .cta-title {
        font-size: 18px;
        line-height: 22px;
        width: 250px;
    }
}

/* Стили для секции наших акций */
.promotions-section {
    margin-bottom: 100px;
}

.promotions-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 23px;
    margin-bottom: 23px;
}

.promotions-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
    color: #000;
}

.view-all-promotions {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-promotions:hover {
    color: #2A85F7;
}

.promotions-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-wrap: nowrap;
}

.promotion-card {
    width: 220px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    outline: 1px solid rgba(0, 0, 0, 0.06);
    outline-offset: -1px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promotion-card:hover {
    outline-color: #2A85F7;
}

.promotion-image {
    width: 100%;
    height: 113px;
    border-radius: 16px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-content {
    width: 100%;
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

.promotion-name {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotion-date {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #767D83;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Адаптивность для секции акций */
@media (max-width: 1395px) {
    .promotions-grid {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: start;
    }
    
}

@media (max-width: 1200px) {
    .promotions-title {
        font-size: 30px;
        line-height: 34px;
        flex-wrap: wrap;
        justify-content: start;
    }
    
    .promotion-card {
        width: calc(25% - 15px);
    }
}

@media (max-width: 768px) {
    .promotions-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .promotions-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .promotion-card {
        width: 100%;
        max-width: 300px;
    }
    
    .promotions-grid {
        justify-content: start;
    }
}

@media (max-width: 480px) {
    .promotions-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .promotion-card {
        max-width: 100%;
    }
}

/* Адаптивность для больтшх экранов (карточки секция) Иммитация слайдера */
@media (min-width: 1920px) {


.slide img {
object-fit: contain;
}
}

.service-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 23px;
    margin-bottom: 25px;
}

.service-title {
    align-self: stretch;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 36px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
}

.service-banner {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.banner-background {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
    object-position: right center;
}

.service-cards {
    width: 859px;
    position: absolute;
    left: 15px;
    top: 50px;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
    display: inline-flex;
}

.service-card {
    padding: 18px 15px;
    background: white;
    border-radius: 15px;
    outline: 1px rgba(0, 0, 0, 0.03) solid;
    outline-offset: -1px;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    display: flex;
}

.service-card:nth-child(1) {
    width: 343px;
}

.service-card:nth-child(2) {
    width: 266px;
}

.service-card:nth-child(3) {
    width: 216px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    line-height: 20px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .service-cards {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .service-card {
        width: auto !important;
        min-width: 200px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .service-banner {
        height: auto;
        min-height: 200px;
    }
    
    .service-cards {
        position: relative;
        top: 20px;
        left: 0;
        padding: 0 15px;
        flex-direction: column;
    }
    
    .service-card {
        width: 100% !important;
        max-width: 300px;
    }
}

#zapas {
    margin-bottom: 0px !important;
}

.products-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
    margin: 25px 0;
    margin-bottom: 50px;
}

.section-header {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    display: flex;
}

.section-header h2 {
    width: 984px;
    color: black;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31px;
    margin: 0;
}

.tags-container {
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    gap: 11px;
    display: inline-flex;
    flex-wrap: wrap;
}

.tag {
    padding: 10px;
    border-radius: 85px;
    outline: 1px rgba(0, 0, 0, 0.06) solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.tag:hover {
    background-color: #2A85F7;
    color: white;
}

.tag.popular {
    background: #2A85F7;
    color: white;
}

.dropdown-arrow {
    cursor: pointer;
}

                .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
    gap: 15px;
    width: 100%;
                }
                
                .product-card {
                    width: 236px;
                    background: white;
                    border-radius: 20px;
                    outline: 1px solid rgba(0, 0, 0, 0.03);
                    outline-offset: -1px;
                    padding: 13px;
                    position: relative;
                    display: block;
                }
                
                .product-image {
                    width: 210px;
                    height: 212px;
                    margin-bottom: 25px;
                    position: relative;
                }
                
                .product-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 10px;
                }
                
                .slider-indicators {
                    position: absolute;
                    bottom: 10px;
                    left: 50%;
                    transform: translateX(-50%);
                    display: flex;
                    gap: 4px;
                }
                
                .indicator {
                    width: 8px;
                    height: 2px;
                    background: #DADCDE;
                    border-radius: 1px;
                }
                
                .indicator.active {
                    background: #767D83;
                }
                
                .product-price {
                    font-size: 20px;
                    font-weight: 700;
                    line-height: 24px;
                    color: #1C2126;
                    margin-bottom: 8px;
                }
                
                .product-description {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    color: #1C2126;
                    margin-bottom: 8px;
                    height: 60px;
                    overflow: hidden;
                }
                
                .product-info {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 8px;
                }
                
                .product-rating {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                }
                
                .rating-stars {
                    display: flex;
                    align-items: center;
                }
                
                .rating-value {
                    font-size: 14px;
                    font-weight: 700;
                    line-height: 20px;
                    color: #1C2126;
                }
                
                .reviews-count {
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #767D83;
                }
                
                .product-code {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                }
                
                .code-text {
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #767D83;
                    cursor: pointer;
                }
                
                .copy-btn {
                    background: none;
                    border: none;
                    cursor: pointer;
                    padding: 0px !important;
                }
                
                .stock-info {
                    margin-bottom: 16px;
                }
                
                .stock-status {
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #3CAA3C;
                    margin-bottom: 4px;
                }
                
                .delivery-info {
                    display: flex;
                    justify-content: start;
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #767D83;
                    margin-bottom: 4px;
                }
                
                .delivery-date {
                    border-bottom: 1px dotted #767D83;
                    margin-left: 5px;
                }
                
                .add-to-cart-btn {
                    width: 100%;
                    padding: 8px 27px;
                    background: #2A85F7;
                    border: none;
                    border-radius: 12px;
                    color: white;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    transition: background-color 0.3s ease;
                }

.view-all-btn {
    width: 243px;
    padding: 10px;
    border-radius: 85px;
    outline: 1px rgba(0, 0, 0, 0.06) solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    background: white;
    border: none;
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .products-grid {
        justify-content: center;
    }
    
    .section-header h2 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tags-container {
        justify-content: center;
    }
    
    .product-card {
        width: 100%;
        max-width: 300px;
    }
}

                .brands-section {
                    margin-bottom: 25px;
                    margin-top: 25px;
                }
                
                .brands-slider {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 20px 0;
                }
                
.brand-logo {
    width: 147px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.brand-logo img {
    width: 100%;
    height: 100%; 
    object-fit: contain; 
}

.related-equipment {
    margin-bottom: 25px;
}

.equipment-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-wrap: nowrap;
}

.equipment-card {
    flex: 1;
    padding: 16px;
    background: #F4F4F4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-height: 200px;
}

.equipment-card:hover {
    border-color: #2A85F7;
    cursor: pointer;
}

.equipment-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    margin-bottom: 8px;
    width: 100%;
}

.equipment-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
}

.equipment-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.equipment-image img {
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Адаптивность */
@media (max-width: 1395px) {
    .equipment-grid {
        flex-wrap: wrap;
        justify-content: start;
    }
    
    .equipment-card {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
}

@media (max-width: 1200px) {
    .equipment-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        gap: 10px;
    }
    
    .equipment-card {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        padding: 12px;
    }
    
    .equipment-name {
        font-size: 13px;
    }
    
    .equipment-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .equipment-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.reviews-section {
    padding-bottom: 0px;
    padding-top: 0px;
    font-family: 'Onest', sans-serif;
}

.container2 {
    max-width: 100%;
}

.reviews-columns {
    display: flex;
    gap: 20px;
    flex-direction: wrap;
}

.review-column {
    flex: 1;
}

.reviews-block {
    border-radius: 13px;
    outline: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 15px;
    cursor: pointer;
    transition: outline-color 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.reviews-block:hover {
    outline-color: #2A85F7;
}

.reviews-header {
    color: black;
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 12px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    color: black;
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.partial-star {
    position: relative;
    width: 19px;
    height: 18px;
}

.partial-star svg:first-child {
    position: absolute;
    left: 0;
    top: 0;
}

.partial-star svg:last-child {
    position: absolute;
    top: 0;
}

.reviews-count {
    color: black;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.purchased-count {
    color: rgba(0, 0, 0, 0.33);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.write-review-btn {
    background: #2A85F7;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border: none;
    border-radius: 12px;
    padding: 8px 27px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 239px;
    text-align: center;
}

.write-review-btn:hover {
    background-color: #1a6fd0;
}

.rating-details {
    margin-top: 16px;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 0.5px solid rgba(42, 133, 247, 0.14);
}

.stars {
    display: flex;
    gap: 5.56px;
}

.rating-count {
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}