.recent-catalog {
    position: relative;
    padding: 56px 0 64px;
    background-color: #eef1f3;
    background-image:
        repeating-linear-gradient(45deg, rgba(47, 147, 198, 0.05) 0, rgba(47, 147, 198, 0.05) 1px, transparent 1px, transparent 26px),
        repeating-linear-gradient(-45deg, rgba(47, 147, 198, 0.05) 0, rgba(47, 147, 198, 0.05) 1px, transparent 1px, transparent 26px);
}

.recent-catalog .container {
    position: relative;
}

.recent-catalog__swiper {
    width: 100%;
    padding: 4px 2px;
}

.recent-catalog .bytovka-card {
    height: 100%;
}

.recent-catalog__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease;
}
.recent-catalog__arrow:hover {
    background: var(--color-accent-dark);
}
.recent-catalog__arrow svg {
    width: 20px;
    height: 20px;
}
.recent-catalog__arrow--prev {
    left: 6px;
}
.recent-catalog__arrow--next {
    right: 6px;
}
.recent-catalog__arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

@media (max-width: 767px) {
    .recent-catalog__arrow {
        width: 36px;
        height: 36px;
    }
    .recent-catalog__arrow--prev {
        left: 4px;
    }
    .recent-catalog__arrow--next {
        right: 4px;
    }
}
