

.hero-section.cart {
    width: 100%;
    /* min-height: calc(100vh - 89px); */
    width: 100%;
    min-height: 250px;
    background-image: url('/public/static/img/project_mumie/cart/bg_cart.webp');
    /* background-attachment: fixed; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    filter: grayscale(85);
}

.hero-section.cart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 101, 101, 0.5);
}

.section_faq {
    background-color: #fff;
    margin: 100px 0 100px 0;
}

.faq-container {
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 50px 0 25px 0;
}

.faq-group {
    border-top: 1px solid #eaeaea;
    /* Верхняя линия для всей группы */
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    /* Разделительные линии между вопросами */
}

.faq-item[open] {
    background-color: #ffffff;
    /* Легкий фон для открытого вопроса (опционально) */
}

.faq-question {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    padding: 20px 40px 20px 0;
    /* Отступ справа под стрелочку */
    cursor: pointer;
    list-style: none;
    /* Убираем стандартный маркер браузера */
    position: relative;
    transition: color 0.2s ease;
}

/* Убираем стандартную стрелку в Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: #000000;
}

/* Кастомная стрелка справа как на макете */
.faq-question::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #b2b2b2;
    border-bottom: 2px solid #b2b2b2;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

/* Поворот стрелки при раскрытии списка */
.faq-item[open] .faq-question::after {
    transform: translateY(-25%) rotate(-135deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    /* Анимация появления текста */
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

