body {
    margin: 0;
}
.main-content {
    width: 1440px;
}
.main-content h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
}
.type-panel {
    display: flex;
    justify-content: space-between;
    width: 100%;


    h3 {
        flex: 0 0 29%;
        margin: 30px 0;
    }
    .slider-sw {
        flex: 0 0 62%;
        width: 894px;
        background: #ffffff;
    }
}
.detail-container {
    font-size: 18px;
    line-height: 28px;
}
.prod-block {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin: 60px 0;
}
.title-prop {
    flex: 0 0 29%;
}
.descript-prop {
    flex: 0 0 62%;
}
.attribut {
    background: #fff;
}
.attribut {
    background-color: #F8F9FA;
    padding: 24px;
}
.attr-block {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}
.attr-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #212529;
}
.attr-value {
    flex: 0 0 304px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: right;
    color: #212529;
}
.FAQ-block {
    margin: 30px 0;
}
.FAQ-block .title-prop {
    padding: 16px;
}
.faq-prop {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fq-block {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.fq-block:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: #007aff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Опционально - стили для заголовка */
.title-prop {
    margin-bottom: 20px;
}

.name-prop {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.slider-sw .swiper {
    padding: 5px 0 40px 0;
}

.slider-sw .swiper-slide {
    flex-shrink: 0;
}

/* Элемент панели */
.panel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Изображение */
.panel-image {
    width: 224px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.panel-image img {
    width: 224px;
    height: 380px;
    object-fit: contain;
    display: block;
}

/* Для вертикальных изображений */
.panel-image img.vertical {
    object-fit: contain;
    width: auto;
    height: 380px;
}

/* Описание */
.panel-description {
    width: 224px;
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    min-height: 44px;
    word-break: break-word;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Пагинация (точки) */
.slider-sw .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.slider-sw .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.slider-sw .swiper-pagination-bullet-active {
    background: #007aff;
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 767px) {

    .type-panel h3 {
        font-size: 32px;
    }

    .slider-sw .swiper-slide {
        width: 100% !important;
        max-width: 224px;
        margin: 0 auto;
    }

    .panel-image,
    .panel-image img,
    .panel-description {
        width: 100%;
        max-width: 224px;
    }

    .panel-image {
        height: auto;
        aspect-ratio: 1/1;
    }

    .panel-image img {
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .slider-sw .swiper-slide {
        width: 200px !important;
    }

    .panel-image,
    .panel-image img,
    .panel-description {
        width: 200px;
    }

    .panel-image {
        height: 200px;
    }

    .panel-image img {
        height: 200px;
    }
}