/*!
 * Swiper Minimal CSS - Only Essential Styles
 * Extracted from Swiper v11.0.0 for Premium Estate Plugin
 * Only includes: Navigation arrows, Pagination, Core layout
 */

/* Core Swiper Container */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

/* Wrapper */
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: initial;
    box-sizing: content-box;
}

/* Slides */
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 44px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1;
}

/* Arrow Icons - Unicode Fallback */
.swiper-button-prev:after {
    content: '\2039'; /* ‹ LEFT ANGLE QUOTATION */
}

.swiper-button-next:after {
    content: '\203A'; /* › RIGHT ANGLE QUOTATION */
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-next {
    right: 10px;
    left: auto;
}

/* Disabled state */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination-bullets {
    width: 100%;
    /* NOTE: bottom & left are controlled by dynamic CSS (Gutenberg) */
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.2;
    margin: 0 4px;
    cursor: pointer;
    /* NOTE: background color is controlled by dynamic CSS (Gutenberg) */
}

.swiper-pagination-bullet-active {
    opacity: 1;
    /* NOTE: background color is controlled by dynamic CSS (Gutenberg) */
}

/* Horizontal layout */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 100%;
    /* NOTE: bottom & left are controlled by dynamic CSS (Gutenberg) */
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

/* Autoheight */
.swiper-slide {
    min-height: 1px;
}

/* Lock classes */
.swiper-wrapper-lock {
    display: block !important;
}

.swiper-slide-lock {
    width: auto !important;
}
