.shopinfo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
}

.shopinfo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.shopinfo-filters button {
    padding: 5px 15px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

.shopinfo-filters button.active {
    background: #000;
    color: #fff;
}

.shopinfo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 60px;
}

.shopinfo-item {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.shopinfo-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.shopinfo-subtitle {
    font-family: "Newsreader", sans-serif;
    font-weight: 500;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.shopinfo-address {
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 15px;
    font-size: 14px;
}

.shopinfo-contact {
    font-family: "Newsreader", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
}

.shopinfo-links {

    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 0px;
}

.shopinfo-links a {
    text-decoration: none;
        color: #000;
        font-weight: 300;
}

.shopinfo-links span {
    text-decoration: none;
    color: #000;
}


@media (max-width: 1024px) {
    .shopinfo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shopinfo-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 769px) {
    .shopinfo-filters {
    flex-wrap: nowrap;
    gap:10px;
}

.shopinfo-filters button {
    padding: 5px 10px;
    font-size: 13px;
}
}