.store-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: sans-serif;
}

.store-item {
    width: 250px;
    text-align: center;
    color: black; /* Tüm yazıları beyaz yapar */
}

.store-item h3 {
    color: black; /* Ürün adı */
}

.store-price {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    color: black; /* Fiyat */
}

.store-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.store-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.4);
    color: black; /* Coming Soon */
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
}

.store-image-wrapper:hover img {
    transform: scale(1.1);
}

.store-image-wrapper:hover .store-overlay {
    opacity: 1;
}
