/* Swiper Bundle CSS - Local Version */

.swiper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.swiper-pagination.swiper-pagination-bullets {
    bottom: 10px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    padding: 0;
}

.swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0.8);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 22px;
    font-weight: bold;
    visibility: visible !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.9);
}

.swiper-button-prev {
    right: auto;
    left: 10px;
}

.swiper-button-next {
    left: auto;
    right: 10px;
}

.swiper-button-prev::before,
.swiper-button-next::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.swiper-button-prev::before {
    transform: rotate(-135deg);
}

.swiper-button-next::before {
    transform: rotate(45deg);
}
