.store-grid {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 2;
    overflow: hidden;
    border-radius:8px;
}

@media (max-width: 768px) {
    .store-grid {
        aspect-ratio: 4 / 3;
    }
}

.store-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.2s ease-in-out;
}

.store-image.active {
    opacity: 1;
    z-index: 1;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease;
    object-position: center center; /* ZENTRIERUNG */
}

.store-image.active img {
    transform: scale(1.08);
}

/* Optional: Dots */
.store-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.store-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.store-dots span.active {
    background: rgba(255,255,255,0.9);
}