.store-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.store-icon {
    position: absolute;
    transform: translate(-50%, -50%);
}

.store-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background-color: white;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .store-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .store-icon img {
        width: 28px;
        height: 28px;
    }
}
