/* --- Swiper Navigation & Pagination General Styles --- */
/* IMPORTANT: These rules MUST be loaded AFTER Swiper's default CSS in HTML */

/* Ensure pagination dots are correctly styled */
.swiper-pagination-bullet-active {
    background: #FF007A !important;
    /* Active dot color */
}

/* Force smaller pagination bullets */
.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
}

/* Custom Swiper Navigation Arrows for ALL Swiper instances */
.swiper-button-next,
.swiper-button-prev {
    background-color: transparent;
    width: 40px;
    height: 40px;

    border-radius: 50%;
    color: #FF007A !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    /* Added transform transition */
    box-shadow: none;
    animation: none;
    left: 0px !important;
    /* Position for the left arrow at the edge */
    right: auto !important;
    /* Ensure no right positioning interferes */
    top: 50% !important;
    transform: translateY(-50%);
    /* Removed !important */
    z-index: 10 !important;
}

.swiper-button-next {
    background-color: transparent;
    width: 40px;
    height: 40px;

    border-radius: 50%;
    color: #FF007A !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    /* Added transform transition */
    box-shadow: none;
    animation: none;
    right: 0px !important;
    /* Position for the right arrow at the edge */
    left: auto !important;
    /* Ensure no left positioning interferes */
    top: 50% !important;
    transform: translateY(-50%);
    /* Removed !important */
    z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: transparent !important;
    transform: translateY(-50%) scale(1.5) !important;
    box-shadow: none !important;
}

.swiper-button-next:active,
.swiper-button-prev:active,
.swiper-button-next:focus,
.swiper-button-prev:focus {
    transform: translateY(-50%) scale(1) !important;
}

/* Position pagination for the main property slider */
.property-main-slider .swiper-pagination {
    bottom: -2px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    color: #FF007A !important;
    font-weight: bold !important;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}