.gwangju_content .tab_menu ul li.depth1 .depth2_box {
    z-index: 2;
}

.store-wrap {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 15px 40px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    min-height: 520px;
}

.store-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.store-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.store-categories-float {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 30;
    display: flex;
    justify-content: center;
    margin: 8px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: none;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.store-categories-float.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.store-categories-float .store-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    width:100%;
}

.store-categories-float .store-categories::-webkit-scrollbar {
    display: none;
}

.store-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border: none !important;
    border-radius: 5px !important;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: var(--txt-black-color);
    cursor: pointer;
    white-space: nowrap;
}

.store-toolbar .store-category {
    border: 1px solid var(--btn-bg-light-gray) !important;
    background: var(--btn-bg-light-gray);
}

.store-category.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color) !important;
}

.store-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--input-border-color);
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff;
}

.store-search input {
    border: none;
    outline: none;
    font-size: 14px;
    min-width: 240px;
}

.store-search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    cursor: pointer;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f8b62d' d='M18.3 5.71 12 12l6.3 6.29-1.41 1.42L10.59 13.4 4.3 19.71 2.89 18.3 9.18 12 2.89 5.71 4.3 4.29l6.29 6.3 6.29-6.3z'/></svg>") no-repeat center;
    background-size: 16px 16px;
}

.store-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #111827;
}

.store-search svg {
    width: 18px;
    height: 18px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.store-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.store-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
}

.store-home-link {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.store-home-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.store-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.store-card-info {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 14px;
    border-radius: 12px;
}

.store-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.store-meta {
    font-size: 13px;
    color: #111827;
    line-height: 1.5;
}

.store-meta a {
    color: #2563eb;
    font-weight: 700;
}

.store-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.store-page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

.store-page-btn.active {
    background: #fff;
    color: var(--main-color);
    border-color: #d1d5db;
    font-weight: 700;
}

#storeSentinel {
    height: 1px;
}
#storeLoading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.6);
}

.none-exist {
    text-align: center;
    padding: 89px 0;
}

@media (max-width: 1024px) {
    .store-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .store-wrap {
        padding: 12px 15px 30px;
    }

    .store-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .store-categories {
        gap: 6px;
    }

    .store-category {
        flex: 1 1 calc(25% - 6px);
        justify-content: center;
        text-align: center;
        padding: 6px 12px;
        font-size: 11px;
    }

    .store-search {
        width: 100%;
    }

    .store-search input {
        min-width: 0;
        width: 100%;
        font-size: 13px;
    }

    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .store-content {
        min-height: 420px;
    }

    .store-card img {
        aspect-ratio: 1 / 1;
    }

    .store-card-info {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
    }

    .store-title {
        font-size: 14px;
    }

    .store-meta {
        font-size: 12px;
    }

    .store-pagination {
        display: none;
    }

    #storeLoading {
        position: static;
        inset: auto;
        background: transparent;
        padding: 16px 0 8px;
    }

    .mo-detail {
        z-index: 10;
    }
}

@media (min-width: 768px) {
    .store-categories-float {
        display: none;
    }
}
