/* Распродажа: сайдбар с разделами (в стиле bx-sidebar-block / single__widget) */

.sale-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.sale-sections {
    flex: 0 0 280px;
    width: 280px;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 0 1.5rem;
}

.sale-content {
    flex: 1 1 auto;
    min-width: 0;
}

.sale-sections__toggle {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 0 2rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    padding-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color, #212121);
    cursor: default;
    text-align: left;
}

.sale-sections__arrow {
    display: none;
    float: right;
    margin-top: 0.8rem;
    transition: transform 0.2s ease;
}

.sale-sections__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sale-sections__item a {
    display: block;
    padding: 8px 2rem;
    color: var(--primary-color, #212121);
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1.4;
    border-left: 3px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.sale-sections__item a:hover {
    color: var(--secondary-color, #8E0000);
}

.sale-sections__item--active a,
.sale-sections__item--active a:hover {
    color: var(--secondary-color, #8E0000);
    font-weight: 600;
    border-left-color: var(--secondary-color, #8E0000);
}

.sale-sections__cnt {
    color: #999;
    font-size: 1.3rem;
}

.sale-sections__item--active .sale-sections__cnt {
    color: var(--secondary-color, #8E0000);
    opacity: 0.7;
}

/* Отступ между рядами карточек */
.sale-page [data-entity="items-row"] {
    margin-bottom: 30px;
}

/* Карточки одинаковой высоты в ряду */
.sale-page [data-entity="items-row"] > [class*="col"] {
    display: flex;
}

.sale-page .product-item-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sale-page .product-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.sale-page .product-item-button-container {
    margin-top: auto;
}

@media (max-width: 991px) {
    .sale-page [data-entity="items-row"] {
        margin-bottom: 0;
    }

    .sale-page [data-entity="items-row"] > [class*="col"] {
        margin-bottom: 20px;
    }

    .sale-page .page-title {
        padding: 0 15px;
    }

    .sale-layout {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .sale-sections {
        flex: none;
        width: 100%;
        padding-bottom: 1rem;
    }

    .sale-sections__toggle {
        cursor: pointer;
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .sale-sections--open .sale-sections__toggle {
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color, #e0e0e0);
        padding-bottom: 1rem;
    }

    .sale-sections__arrow {
        display: inline-block;
    }

    .sale-sections--open .sale-sections__arrow {
        transform: rotate(180deg);
    }

    .sale-sections__body {
        display: none;
    }

    .sale-sections--open .sale-sections__body {
        display: block;
    }

    .sale-content {
        width: 100%;
    }
}
