/* =============================================================
 * Hero slider (front page)
 * ============================================================= */

.hero-slider {
    width: 100%;
    margin: 0 0 40px;
    position: relative;
}

.hero-slider__swiper {
    position: relative;
    overflow: hidden;
}

.hero-slider__slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.hero-slider__top {
    background: #fff;
    padding: 40px 0 60px;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.hero-slider__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 340px;
}

.hero-slider__content {
    flex: 1 1 50%;
    max-width: 560px;
}

.hero-slider__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2b5f;
    text-transform: uppercase;
    margin: 0 0 28px;
    letter-spacing: 0.5px;
}

.hero-slider__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-slider__bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2b5f;
}

.hero-slider__bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #c6f24e;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-slider__bullet-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.hero-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e53e3e;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hero-slider__btn:hover {
    background: #c53030;
    color: #fff;
}

.hero-slider__image {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-slider__image img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

/* Delivery strip (part of each slide) */
.hero-slider__delivery {
    background: #1a2b5f;
    color: #fff;
    padding: 18px 0;
}

.hero-slider__delivery .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.hero-slider__delivery-icon {
    display: inline-flex;
    align-items: center;
}

.hero-slider__delivery-text {
    font-size: 18px;
    font-weight: 600;
}

/* Pagination + nav arrows */
.hero-slider__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    text-align: center;
    z-index: 5;
}

.hero-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1a2b5f;
    opacity: 0.3;
    margin: 0 5px;
    transition: opacity 0.2s, transform 0.2s;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.hero-slider__nav {
    position: absolute;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e4e4e4;
    color: #1a2b5f;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.hero-slider__nav:hover {
    background: #1a2b5f;
    color: #fff;
}

.hero-slider__nav--prev {
    left: 16px;
}

.hero-slider__nav--next {
    right: 16px;
}

.hero-slider__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-slider__title {
        font-size: 26px;
    }
    .hero-slider__image img {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-slider__top {
        padding: 30px 0 40px;
        min-height: 0;
    }
    .hero-slider__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .hero-slider__content {
        max-width: 100%;
    }
    .hero-slider__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .hero-slider__bullets {
        align-items: flex-start;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-slider__delivery-text {
        font-size: 15px;
    }
    .hero-slider__nav {
        width: 36px;
        height: 36px;
    }
    .hero-slider__nav--prev { left: 8px; }
    .hero-slider__nav--next { right: 8px; }
    .hero-slider__pagination {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero-slider__title {
        font-size: 19px;
    }
    .hero-slider__btn {
        font-size: 14px;
        padding: 12px 22px;
    }
}
