.hero-banner { width: 100%; overflow: hidden; }

.hero-swiper { width: 100%; }

.hero-slide-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* высота баннера по брейкпоинтам — как у тебя заведено для карточек (650/750) */
.hero-slide-img { height: 500px; }

@media (max-width: 1440px) {
    .hero-slide-img { height: 420px; }
}

@media (max-width: 1024px) {
    .hero-slide-img { height: 350px; }
}

@media (max-width: 768px) {
    .hero-slide-img { height: 280px; }
}

@media (max-width: 480px) {
    .hero-slide-img { height: 220px; }
}

.hero-slide-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    z-index: 5;
}

.hero-banner .swiper-slide { position: relative; }

@media (max-width: 768px) {
    .hero-slide-btn { bottom: 20px; left: 20px; padding: 8px 18px; font-size: 14px; }
}

/* Стрелки */
.hero-arrow-prev,
.hero-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hero-arrow-prev:hover,
.hero-arrow-next:hover {
    background: #ff7a00; /* оранжевый при наведении, подставь свой оттенок */
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Стрелки через CSS-псевдоэлементы (не нужны картинки) */
.hero-arrow-prev::after,
.hero-arrow-next::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

.hero-arrow-prev::after { transform: rotate(-135deg); margin-left: 4px; }
.hero-arrow-next::after { transform: rotate(45deg); margin-right: 4px; }

.hero-arrow-prev:hover::after,
.hero-arrow-next:hover::after {
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-arrow-prev, .hero-arrow-next { width: 36px; height: 36px; }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
}

/* Пагинация (кружки) */
.hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    margin: 0;
    transition: background 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ff7a00; /* активный кружок — оранжевый */
}