/* ===== Reset & Base ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Malgun Gothic", "Apple SD Gothic Neo",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB",
    Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.2px;
}
html[lang="zh-CN"] body { letter-spacing: 0; }
html[lang="ja"] body { letter-spacing: 0; }

/* ===== Language switch (dropdown) ===== */
.lang-switch {
  position: relative; display: inline-block; margin-right: 8px;
}
.lang-switch .lang-current {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: #f1f5f9; color: #475569;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all .15s;
}
.lang-switch .lang-current:hover { background: #e2e8f0; color: #0f172a; }
.lang-switch .lang-current::after {
  content: '▾'; font-size: 10px; opacity: 0.6; margin-left: 2px;
}
.lang-switch .lang-globe { font-size: 13px; }
.lang-switch .lang-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.12);
  min-width: 140px; z-index: 200;
  padding: 6px; overflow: hidden;
}
.lang-switch:hover .lang-menu, .lang-switch.open .lang-menu { display: block; }
.lang-switch .lang-menu button {
  display: block; width: 100%; text-align: left;
  padding: 9px 14px; font-size: 13px; color: #1a1a1a;
  background: none; border: none; cursor: pointer;
  font-weight: 500; border-radius: 6px;
}
.lang-switch .lang-menu button:hover { background: #f1f5f9; }
.lang-switch .lang-menu button.active {
  background: #eff6ff; color: #1E40AF; font-weight: 700;
}
.mobile-nav .lang-switch {
  margin: 12px 0 4px; align-self: flex-start;
}
.mobile-nav .lang-switch .lang-menu {
  position: static; box-shadow: none; border: 1px solid #e2e8f0;
  margin-top: 8px; display: none;
}
.mobile-nav .lang-switch.open .lang-menu { display: block; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

:root {
  --c-bg: #ffffff;
  --c-fg: #222;
  --c-muted: #6b7280;
  --c-line: #e5e7eb;
  --c-accent: #0a1f44;
  --c-accent-hover: #06173a;
  --c-point: #1e3a8a;
  --c-point-hover: #172e6e;
  --c-badge: #dc2626;
  --c-sale: #dc2626;
  --c-soft: #f6f7f9;
  --c-dark: #1a1a1a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 2px;
  --radius-lg: 4px;
  --max-width: 1280px;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header (Classic Korean GNB) ===== */
.header {
  position: relative; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 86px;
  position: relative;
}
.logo {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px; font-weight: 900; letter-spacing: 1px;
  color: var(--c-accent);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.logo span {
  font-family: "Noto Sans KR", Helvetica, Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 5px;
  color: var(--c-point);
}
@media (max-width: 480px) {
  .logo { font-size: 20px; letter-spacing: 0.5px; }
  .logo span { font-size: 11px; letter-spacing: 3px; }
  .header-inner { height: 64px; }
}

/* GNB (Classic Mega Menu) */
.nav {
  display: none; align-items: stretch; gap: 0;
  height: 100%;
  margin-left: auto; margin-right: 24px;
}
.nav > .nav-item {
  position: relative;
  display: flex; align-items: center;
  height: 100%;
}
.nav > .nav-item > a {
  display: flex; align-items: center;
  height: 100%; padding: 0 24px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--c-accent);
  text-transform: uppercase;
  position: relative;
  transition: color .15s;
}
.nav > .nav-item > a:hover,
.nav > .nav-item > a.active {
  color: var(--c-point);
}
.nav > .nav-item > a.active::after {
  content: "";
  position: absolute; left: 24px; right: 24px; bottom: -1px;
  height: 3px; background: var(--c-point);
}
.nav .submenu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-point);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  z-index: 200;
}
.nav .nav-item:hover .submenu { display: block; }
.nav .submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px; font-weight: 500;
  color: #444;
  white-space: nowrap;
  text-align: center;
  transition: all .15s;
}
.nav .submenu a:hover {
  background: var(--c-soft);
  color: var(--c-point);
  font-weight: 700;
}

.header-cta {
  display: none;
  padding: 10px 22px;
  background: var(--c-point); color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .15s;
  border-radius: var(--radius);
}
.header-cta:hover { background: var(--c-point-hover); }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--c-accent); border-radius: 0;
  transition: all .2s;
}
.mobile-nav {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 8px 20px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  padding: 14px 4px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-accent);
}
.mobile-nav .sub-link {
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: #555; border-bottom: 1px dashed #eee;
}
.mobile-nav > a:last-of-type { border-bottom: none; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; align-items: center; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ===== Main Visual Slider (Classic Corporate Hero) ===== */
.main-visual {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #0a1f44;
}
@media (max-width: 768px) {
  .main-visual { height: 380px; }
}
.mv-slides {
  position: absolute; inset: 0;
}
.mv-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex; align-items: center;
}
.mv-slide.active { opacity: 1; z-index: 2; }
.mv-slide.bg1 {
  background: linear-gradient(135deg, #0a1f44 0%, #1e3a8a 60%, #1e40af 100%);
}
.mv-slide.bg2 {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #334155 100%);
}
.mv-slide.bg3 {
  background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #0a1f44 100%);
}
.mv-slide::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.02) 30px 31px);
}
.mv-caption {
  position: relative; z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}
.mv-caption .eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px;
  color: #93c5fd;
  margin-bottom: 18px;
  text-transform: uppercase;
  border-left: 3px solid #93c5fd;
  padding-left: 12px;
}
.mv-caption h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  max-width: 760px;
}
.mv-caption h2 strong {
  display: block;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.2;
  margin-top: 6px;
  letter-spacing: -1px;
}
.mv-caption p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.7;
}
.mv-caption .mv-cta {
  margin-top: 32px;
  display: inline-flex; gap: 10px; flex-wrap: wrap;
}
.mv-caption .mv-cta .btn {
  border-radius: 0;
}
.mv-controls {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; align-items: center; gap: 12px;
}
.mv-dots { display: flex; gap: 8px; }
.mv-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0; cursor: pointer; padding: 0;
  transition: all .2s;
}
.mv-dot.active { background: #fff; width: 24px; border-radius: 6px; }
.mv-arrow {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  transition: all .15s;
}
.mv-arrow:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.mv-pager {
  position: absolute; right: 24px; bottom: 30px;
  z-index: 5; color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
}
.mv-pager .cur { font-size: 18px; font-weight: 900; }
@media (max-width: 768px) {
  .mv-pager { display: none; }
  .mv-controls { bottom: 20px; }
}

/* legacy .hero kept for fallback (other pages might still use) */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .highlight { color: var(--c-point); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--c-muted);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  transition: all .15s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--c-point); color: #fff; border-color: var(--c-point);
}
.btn-primary:hover { background: var(--c-point-hover); border-color: var(--c-point-hover); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: #fff; color: var(--c-accent); border-color: #fff; }
.btn-point {
  background: var(--c-point); color: #fff; border-color: var(--c-point);
}
.btn-point:hover { background: var(--c-point-hover); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 36px; font-size: 14px; }

/* ===== Section common ===== */
.section { padding: 80px 0; }
.section-header {
  text-align: center; margin-bottom: 50px;
  position: relative;
}
.section-header::before {
  content: ""; display: block;
  width: 30px; height: 3px;
  background: var(--c-point);
  margin: 0 auto 18px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800; letter-spacing: -0.8px;
  margin-bottom: 12px;
  color: var(--c-accent);
}
.section-header p { color: var(--c-muted); font-size: 15px; }

/* ===== Categories ===== */
.cat-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.cat-card {
  position: relative;
  display: block;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--c-soft);
  overflow: hidden;
  transition: all .2s;
  border: 1px solid var(--c-line);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}
.cat-card .ico { font-size: 36px; margin-bottom: 12px; }
.cat-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.cat-card p { color: var(--c-muted); font-size: 14px; margin-bottom: 16px; }
.cat-card .arrow { font-weight: 600; color: var(--c-point); }

@media (min-width: 768px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cat-card { padding: 50px 36px; }
}

/* ===== Product Grid ===== */
.filter-bar {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--c-line);
  font-size: 14px; font-weight: 600; color: var(--c-fg);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--c-accent); }
.filter-btn.active {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1000px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.product-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: all .2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: var(--c-soft);
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 4px;
  background: var(--c-badge); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}
.product-body {
  padding: 14px 14px 18px;
}
.product-cat {
  font-size: 11px; color: var(--c-muted);
  font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 6px; text-transform: uppercase;
}
.product-name {
  font-size: 14px; font-weight: 700;
  line-height: 1.3; margin-bottom: 4px;
  color: var(--c-fg);
}
.product-sub {
  font-size: 12px; color: var(--c-muted);
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 600px) {
  .product-body { padding: 18px 18px 22px; }
  .product-name { font-size: 16px; margin-bottom: 6px; }
  .product-sub { font-size: 13px; }
}
.product-price {
  display: flex; align-items: baseline; gap: 8px;
}
.product-price .now {
  font-size: 17px; font-weight: 800; color: var(--c-fg);
}
.product-price .before {
  font-size: 13px; color: var(--c-muted);
  text-decoration: line-through;
}
.product-price .save {
  font-size: 12px; font-weight: 700; color: var(--c-sale);
}

/* ===== Product Detail ===== */
.detail-wrap {
  display: grid; grid-template-columns: 1fr; gap: 30px;
}
@media (min-width: 900px) {
  .detail-wrap { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.detail-img {
  aspect-ratio: 1 / 1;
  background: var(--c-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-cat {
  display: inline-block;
  font-size: 12px; color: var(--c-muted);
  font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 12px; text-transform: uppercase;
}
.detail-name {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 8px; line-height: 1.25;
}
.detail-sub { color: var(--c-muted); margin-bottom: 24px; }
.detail-price-box {
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.detail-price-box .now {
  font-size: 30px; font-weight: 800;
}
.detail-price-box .before {
  display: block; font-size: 14px; color: var(--c-muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.detail-desc {
  font-size: 15px; color: #374151; line-height: 1.7;
  margin-bottom: 28px;
}
.spec-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  margin-bottom: 28px;
}
.spec-table tr { border-bottom: 1px solid var(--c-line); }
.spec-table th {
  text-align: left; padding: 12px 0;
  font-weight: 600; color: var(--c-muted);
  width: 35%;
}
.spec-table td { padding: 12px 0; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-actions .btn { flex: 1 1 140px; }

/* ===== Forms ===== */
.form-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 600px) {
  .form-card { padding: 40px; }
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--c-fg); margin-bottom: 8px;
}
.form-row label .req { color: var(--c-point); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--c-line); border-radius: 8px;
  background: #fff; transition: border-color .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--c-accent);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row .help {
  display: block; font-size: 12px; color: var(--c-muted); margin-top: 6px;
}
.form-msg {
  padding: 14px; border-radius: 8px;
  margin-bottom: 18px; font-size: 14px;
  display: none;
}
.form-msg.ok { display: block; background: #dcfce7; color: #166534; }
.form-msg.err { display: block; background: #fee2e2; color: #991b1b; }

/* ===== About / Info Boxes ===== */
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 600px) {
  .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.feature {
  text-align: center; padding: 30px 20px;
}
.feature .ico {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--c-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--c-muted); font-size: 14px; }

.info-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 30px;
}
@media (min-width: 600px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
.info-box {
  padding: 24px; background: var(--c-soft); border-radius: var(--radius);
}
.info-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--c-accent); }
.info-box p { font-size: 14px; color: #374151; }
.info-box a { color: var(--c-point); font-weight: 600; }

/* ===== Footer (Classic Korean Corporate) ===== */
.footer {
  background: #1a1a1a; color: #999;
  font-size: 13px;
  margin-top: 0;
}
.foot-links {
  background: #2c2c2c;
  padding: 14px 0;
  border-bottom: 1px solid #333;
}
.foot-links ul {
  display: flex; gap: 24px;
  list-style: none;
}
.foot-links a {
  font-size: 13px; color: #ddd; font-weight: 500;
  position: relative;
}
.foot-links a:hover { color: #fff; }
.foot-links li:not(:last-child)::after {
  content: ""; display: inline-block;
  width: 1px; height: 11px; background: #555;
  margin-left: 24px;
  vertical-align: middle;
}

.foot-info {
  padding: 36px 0 30px;
  display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 768px) {
  .foot-info { flex-direction: row; align-items: flex-start; gap: 50px; }
}
.foot-logo {
  flex-shrink: 0;
}
.foot-logo img {
  height: 50px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.foot-info address {
  font-style: normal;
  color: #999; line-height: 1.95;
  font-size: 13px;
  flex: 1;
}
.foot-info address > span {
  display: inline-block;
  margin-right: 6px;
}
.foot-info address .bar {
  display: inline-block;
  width: 1px; height: 11px;
  background: #444;
  margin: 0 8px 0 2px;
  vertical-align: middle;
}
.foot-info address strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-right: 16px;
  letter-spacing: -0.3px;
}
.copyright {
  margin-top: 16px;
  color: #666;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* legacy footer-grid kept for backward compat */
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 30px;
  margin-bottom: 30px;
}
.footer h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; }
.footer-grid p, .footer-grid a { color: #999; line-height: 1.85; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.business-info {
  padding: 20px 0 0;
  border-top: 1px solid #333;
  font-size: 12px; color: #888; line-height: 1.85;
}
.business-info dt {
  display: inline-block; min-width: 110px;
  color: #aaa; font-weight: 600;
}
.business-info dd { display: inline; margin-right: 16px; }
.business-info .row { margin-bottom: 4px; }
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid #333;
  text-align: center; color: #777; font-size: 12px;
}

/* ===== Page Header ===== */
.page-header {
  padding: 70px 0 60px;
  background:
    linear-gradient(rgba(10,31,68,0.85), rgba(10,31,68,0.95)),
    repeating-linear-gradient(45deg, #1e3a8a 0 30px, #0a1f44 30px 31px);
  color: #fff;
  border-bottom: 0;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900; letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #fff;
}
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

/* ===== Loading / Empty ===== */
.loading, .empty {
  text-align: center; padding: 60px 20px;
  color: var(--c-muted); font-size: 15px;
}

/* Floating contact button (mobile) */
.fab {
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-point); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform .15s;
}
.fab:hover { transform: scale(1.06); }
@media (min-width: 768px) { .fab { display: none; } }

/* ===== Notices ===== */
.notice-list { display: flex; flex-direction: column; gap: 12px; }
.notice-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--radius);
  transition: all .15s;
}
.notice-item:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.notice-pin {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-point); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.notice-item:not(.pinned) .notice-pin { display: none; }
.notice-body { flex: 1; min-width: 0; }
.notice-title {
  font-size: 16px; font-weight: 700; color: var(--c-fg);
  margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.notice-meta { font-size: 12px; color: var(--c-muted); }
.notice-arrow { color: var(--c-muted); font-size: 18px; flex-shrink: 0; }

.notice-detail h1 {
  font-size: clamp(22px, 4vw, 30px); font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.3;
  margin-bottom: 10px;
}
.notice-detail .meta {
  font-size: 13px; color: var(--c-muted);
  padding-bottom: 18px; border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.notice-detail .meta .pin-tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--c-point); color: #fff;
  font-size: 11px; font-weight: 700; margin-right: 8px;
}
.notice-detail .content {
  font-size: 15px; color: #374151; line-height: 1.85;
  white-space: pre-wrap; word-break: break-word;
  margin-bottom: 32px;
}
.notice-detail .content a {
  color: var(--c-point); text-decoration: underline;
}
.notice-detail .back {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--c-line);
  color: var(--c-fg); font-weight: 600; font-size: 14px;
  transition: all .15s;
}
.notice-detail .back:hover { border-color: var(--c-accent); }

/* ===== 공지 팝업 (클래식 스타일) ===== */
.notice-popup {
  position: fixed; z-index: 1000;
  top: 80px; left: 40px;
  width: 360px;
  background: #fff;
  border: 1px solid #1a1a1a;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .12);
  font-family: inherit;
}
.notice-popup[hidden] { display: none !important; }
.notice-popup-backdrop { display: none; }
.notice-popup-window {
  display: flex; flex-direction: column;
}
.notice-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: #1e3a8a;
  color: #fff;
  border-bottom: 1px solid #1a1a1a;
}
.notice-popup-tag {
  font-size: 13px; font-weight: 700; letter-spacing: .2px;
}
.notice-popup-x {
  width: 22px; height: 22px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1); color: #fff;
  border-radius: 0; cursor: pointer;
  font-size: 16px; line-height: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.notice-popup-x:hover { background: rgba(255,255,255,.25); }
.notice-popup-body {
  padding: 16px 16px 12px;
  overflow-y: auto;
  flex: 1;
  background: #fff;
}
.notice-popup-title {
  font-size: 15px; font-weight: 700;
  color: #1a1a1a; margin: 0 0 6px;
  line-height: 1.45;
  border-bottom: 1px dashed #d4d4d4;
  padding-bottom: 8px;
}
.notice-popup-meta {
  font-size: 11px; color: #888;
  margin-bottom: 10px;
}
.notice-popup-content {
  font-size: 13px; color: #333;
  line-height: 1.65;
  white-space: pre-wrap; word-break: break-word;
  max-height: 240px; overflow-y: auto;
}
.notice-popup-content a {
  color: #1e3a8a; text-decoration: underline;
}
.notice-popup-footer {
  padding: 8px 12px;
  border-top: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: space-between;
  background: #2c2c2c;
  color: #e5e5e5;
}
.notice-popup-hide {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #e5e5e5;
  cursor: pointer; user-select: none;
}
.notice-popup-hide input {
  width: 13px; height: 13px; cursor: pointer; margin: 0;
  accent-color: #1e3a8a;
}
.notice-popup-actions {
  display: inline-flex; align-items: center; gap: 0;
}
.notice-popup-more {
  display: none;
}
.notice-popup-close {
  border: 0; background: transparent; color: #e5e5e5;
  padding: 4px 8px; border-radius: 0;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: inherit;
}
.notice-popup-close:hover { color: #fff; text-decoration: underline; }
@media (max-width: 480px) {
  .notice-popup {
    top: 70px; left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 360px;
  }
}
