/* KDR 인터랙션 — 모바일 전체 메뉴 토글 + GNB 활성 표시 (원본: sample/assets/js/main.js) */
(function () {
	"use strict";

	document.querySelectorAll("[data-menu-toggle]").forEach(function (btn) {
		btn.addEventListener("click", function () {
			var menu = document.querySelector(".kdr-header__menu-wrap");
			if (!menu) return;
			var open = menu.classList.toggle("is-open");
			btn.setAttribute("aria-expanded", open ? "true" : "false");
		});
	});

	// 현재 페이지에 해당하는 GNB 메뉴에 is-active 부여 (원본 헤더 동작)
	var path = window.location.pathname;
	document.querySelectorAll(".kdr-header__menu-link").forEach(function (a) {
		var href = a.getAttribute("href");
		if (href && href !== "#" && href !== "/" && path.indexOf(href.replace(/\/$/, "")) === 0) {
			a.classList.add("is-active");
		}
	});
})();<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://newneek-bricks.seos.kr/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://newneek-bricks.seos.kr/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
