#pc-fullmenu {
  --fm-container-max: 1200px;

  /* 베이스 */
  --fm-overlay: rgba(17, 24, 39, 0.36);
  --fm-surface: var(--surface-white);
  --fm-border: var(--divider-gray-regular);
  --fm-shadow: 0 24px 72px rgba(17, 24, 39, 0.24);

  /* 타이틀 */
  --fm-title: var(--text-basic);
  --fm-desc: var(--text-sub);

  /* “칩” 탭(섹션 내부 라벨) */
  --fm-chip-bg: var(--primary-5);
  --fm-chip-bg-hover: var(--secondary-50);
  --fm-chip-text: var(--text-basic);
  --fm-chip-text-hover: var(--gray-0);
  --fm-chip-height: var(--size-height-7);
  --fm-chip-radius: var(--radius-medium);

  /* 목록 */
  --fm-menu-text: var(--text-basic);
  --fm-menu-bullet: var(--text-sub);
  --fm-menu-hover-bg: rgba(37, 110, 244, 0.08);
  --fm-menu-hover-text: var(--text-primary);

  /* 레이아웃 간격 */
  --fm-pad-x: var(--gap-10);
  --fm-pad-y: var(--gap-9);
  --fm-gap-section: var(--gap-8);
  --fm-gap-panels: var(--gap-10);
  --fm-gap-list: var(--gap-2);
}

#pc-fullmenu.pc-fullmenu {
  position: fixed;
  inset: 0;
  background: var(--fm-overlay);
  display: none;
  z-index: 1200;
}
#pc-fullmenu.is-open {
  display: block;
}

#pc-fullmenu .fullmenu-container {
  position: absolute;
  inset: 48px max(24px, calc((100vw - var(--fm-container-max)) / 2)) 48px;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--fm-surface);
  border-radius: var(--radius-large);
  box-shadow: var(--fm-shadow);
}

#pc-fullmenu .fullmenu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-6);
  padding: var(--gap-9) var(--gap-10) var(--gap-6);
  border-bottom: var(--width-variable-regular) solid var(--fm-border);
}
#pc-fullmenu .fullmenu-title {
  font-size: var(--pc-fs-heading-xlarge);
  font-weight: var(--typo-weight-bold);
  color: var(--fm-title);
}
#pc-fullmenu .fullmenu-desc {
  margin-top: var(--gap-2);
  color: var(--fm-desc);
  font-size: var(--pc-fs-body-medium);
}
#pc-fullmenu .btn-close {
  width: var(--size-height-6);
  height: var(--size-height-6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-medium);
}
#pc-fullmenu .btn-close:hover {
  background: var(--action-secondary-hover);
}

#pc-fullmenu .fullmenu-body {
  overflow: auto;
}
#pc-fullmenu .fullmenu-content {
  padding: var(--gap-6) var(--gap-10);
  display: flex;
  flex-direction: column;
  gap: var(--fm-gap-section);
  max-width: var(--fm-container-max);
  margin: 0 auto;
}

#pc-fullmenu .menu-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-4);
  padding-bottom: var(--gap-6);
  border-bottom: var(--width-variable-regular) solid var(--fm-border);
}
#pc-fullmenu .menu-section:last-child {
  border-bottom: 0;
}
#pc-fullmenu .section-title {
  font-size: var(--pc-fs-heading-large);
  font-weight: var(--typo-weight-bold);
  position: relative;
  padding-left: 12px;
}
#pc-fullmenu .section-title .required {
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--action-primary-active);
  border-radius: 7px;
}

#pc-fullmenu .depth3-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fm-gap-panels);
}
#pc-fullmenu .depth3-panel {
  flex: 1 1 28%;
  min-width: 260px;
}

#pc-fullmenu .depth3-panel .title-panel {
  width: 100%;
  box-sizing: border-box;
  min-height: var(--fm-chip-height);
  padding: 0 var(--padding-7);
  margin-bottom: var(--gap-5);
  background: var(--fm-chip-bg);
  color: var(--fm-chip-text);
  border-radius: var(--fm-chip-radius);
  font-size: var(--pc-fs-body-large);
  font-weight: var(--typo-weight-bold);
  line-height: var(--fm-chip-height);
  text-align: center;
  box-shadow: 0 3px 8px rgba(56, 65, 86, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
#pc-fullmenu .depth3-panel .title-panel:hover,
#pc-fullmenu .depth3-panel .title-panel:focus {
  color: var(--fm-chip-text-hover);
  background: var(--fm-chip-bg-hover);
  box-shadow: 0 4px 10px rgba(56, 65, 86, 0.25);
}

/* 목록 */
#pc-fullmenu .depth3-panel ul {
  padding-left: var(--gap-4);
}
#pc-fullmenu .depth3-panel li {
  margin-bottom: var(--fm-gap-list);
}

#pc-fullmenu .depth3-panel a {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2);
  font-size: var(--pc-fs-heading-xsmall);
  color: var(--fm-menu-text);
  border-radius: var(--radius-medium);
  padding: 4px 6px;
  font-weight: var(--typo-weight-semibold);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
#pc-fullmenu .depth3-panel a::before {
  content: "";
  color: var(--fm-menu-bullet);
  background-color: var(--secondary-70);
  border-radius: var(--fm-chip-radius);
  width: 4px;
  height: 4px;
  left: 0;
  top: 6px;
}

/* Hover/Focus 상태를 또렷하게 */
#pc-fullmenu .depth3-panel a:hover {
  color: var(--fm-menu-hover-text);
}

@media (max-width: 1380px) {
  #pc-fullmenu.pc-fullmenu {
    display: none !important;
  }
}
