.category-bottom-content.is-collapsible {
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease;
}

.category-bottom-content.is-collapsible:not(.is-collapsed) {
    padding-bottom: 4rem;
}

.category-bottom-content.is-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: linear-gradient(to bottom, transparent 32%, #fbf7f6);
    pointer-events: none;
}

.category-bottom-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -25%);
    width: 42px;
    aspect-ratio: 1 / 1;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    margin: 0;
}

.category-bottom-toggle:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.category-bottom-toggle svg {
    display: block;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.category-bottom-content:not(.is-collapsed) .category-bottom-toggle svg {
    transform: rotate(180deg);
}