/* .store-searchbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.store-searchbar input {
    width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.store-searchbar input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 169, 223, 0.2);
}

.store-searchbar button {
    padding: 10px 20px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}


.store-searchbar button:hover,
.store-searchbar button:focus {
    background: var(--color-secondary);
} */

.search-sub-text {
    display: block;
    font-size: 2vw;
    text-align: center;
}

.search-sub-text span {
    color: var(--color-primary);
    ;
}

.store-result-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
    margin-top: 60px;
}

.store-result-table thead {
    background: #f9f9f9;
    border-bottom: 2px solid #ddd;
    height: 80px;
}

.store-result-table th,
.store-result-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.store-result-table a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.store-result-table a:hover {
    text-decoration: underline;
}

.store-result-table .service-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.store-result-table .icon-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    align-items: center;
    background: #f1f1f1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.store-result-table .icon-wrap span {
    font-size: 12px;
}


@media screen and (max-width:1024px) {
    .search-sub-text {
        font-size: 3vw;
    }

    .store-result-table .service-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    
    .store-result-table .icon-wrap span {
        font-size: 10px;
    }
}

@media screen and (max-width:480px) {
    .search-sub-text {
        font-size: 4vw;
    }

    .store-result-table {
        font-size: 12px;
    }

    .store-result-table thead {
        height: 60px;
    }

    .store-result-table th, .store-result-table td{
        padding: 5px;
    }


    .store-result-table .icon-wrap {
        font-size: 12px;
        width: 25px;
        height: 25px;
    }

    .store-result-table .icon-wrap span {
        display: none;
    }

}




.store-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

.store-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.store-info-table th,
.store-info-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.store-info-table th {
    width: 120px;
    background-color: #f9f9f9;
    color: var(--color-primary);
    font-weight: bold;
}

.store-map-placeholder {
    height: 400px;
    background: #eee;
    border: 1px dashed #bbb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    margin: 40px 0;
    font-size: 16px;
}

.store-back-btn {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.store-back-btn .btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}

@media screen and (max-width:480px) {
    .store-map-placeholder {
        margin: 0 auto;
    }

    .store-info-table {
        margin-bottom: 20px;
    }

    .store-searchbar input {
        width: 80%;
    }

    .store-searchbar button {
        width: 20%;
    }
}