.zx7m-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.m4q8-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.w2n5-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    /* height: 400px; */
}

.r7t1-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 2px;
}

/* Mobile: 2 slides visible */
@media (max-width: 699px) {
    .r7t1-slide {
        width: 50%;
    }
}

.v3l9-content {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    aspect-ratio: 1;
    /* height: 100%; */
    /* object-fit: cover; */
    display: block;
}

.x9m1-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 10;
}

.n6z3-dot {
    width: 10px;
    height: 12px;
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.n6z3-dot.t8r5-active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.n6z3-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

/* Hide arrows and dots if only one slide */
.single-slide .nav-arrow,
.single-slide .x9m1-dots {
    display: none;
}

/* Responsive styles */
@media (max-width: 699px) {
    .r7t1-slide {
        width: 50%;
    }

    .w2n5-track {
        /* height: 300px; */
    }

    .x9m1-dots {
        bottom: 20px;
    }

    .n6z3-dot {
        width: 9px;
        height: 9px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .nav-arrow.prev {
        left: 10px;
    }

    .nav-arrow.next {
        right: 10px;
    }
}

/* Loading state */
.slide-loading {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.slide-loading::after {
    content: "Loading...";
}

/* Hide carousel until initialized */
.m4q8-container:not(.initialized) .nav-arrow,
.m4q8-container:not(.initialized) .x9m1-dots {
    display: none;
}
