.store-page {
    justify-content: center;
    padding: 20px 10vw;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.store-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
    align-items: stretch;
}

.store-item {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.store-title {
    font-size: 2em;
}

.separator {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 800px;
    font-weight: 500;
    padding-top: 50px;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #000;
}

.separator-text {
    margin: 0 10px;
    white-space: nowrap;
    font-size: 2em;
    color: #333;
}

@media screen and (max-width: 768px) {
    .store-page {
        padding: 10px 5px;
    }

    .store-container {
        grid-template-columns: 1fr;
    }

    .store-title {
        font-size: 1em;
    }
}