.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff !important;
    text-shadow: 0 0 10px #8a2be2;
}

.swiper-button-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(138, 43, 226, 0.6);
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #8a2be2;
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.6);
    /* Morumsu renk */
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.swiper-pagination-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #8a2be2;
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.9);
    transform: scale(1.3);
}

.swiper-pagination-bullet-active::after {
    width: 10px;
    height: 10px;
}


.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    pointer-events: none;
    background-image: var(--thumb-url);
}


.swiper-pagination-bullet:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.shatter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    overflow: hidden;
}

.shatter-piece {
    position: absolute;
    background-repeat: no-repeat;
}