:root {
  --ink: #141414;
  --muted: #969696;
  --line: #e7e7e7;
  --brand: #e5262c;
  --green: #23a455;
  --hero-bg: #c2c2ce;
  --container: 1070px;
  --header-total: 104px;
  --product-radius: 14px;
  --product-border: #cfcfcf;
}

/* =================================
   기본 설정
================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-total);
}

body {
  margin: 0;

  color: var(--ink);
  background: #fff;

  font-family:
    Pretendard,
    "Noto Sans KR",
    "Malgun Gothic",
    Arial,
    sans-serif;

  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;

  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;

  padding: 10px 14px;

  color: #fff;
  background: #111;

  border-radius: 4px;

  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

/* =================================
   헤더
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;

  background: #fff;

  box-shadow:
    0 3px 16px rgba(0, 0, 0, 0.06);
}

.utility-bar {
  height: 32px;

  color: #5d5d5d;
  background: #efefef;

  font-size: 10px;
}

.utility-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.utility-badge {
  height: 20px;

  display: inline-flex;
  align-items: center;

  padding: 0 13px;

  color: #fff;
  background: #45c879;

  border-radius: 999px;

  font-weight: 700;
  white-space: nowrap;
}

.utility-links {
  display: flex;
  align-items: center;

  gap: 10px;
}

.social {
  width: 19px;
  height: 19px;

  display: inline-grid;
  place-items: center;

  overflow: hidden;

  border-radius: 5px;
}

.social img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.nav-bar {
  height: 72px;

  background:
    rgba(255, 255, 255, 0.98);

  border-bottom:
    1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;

  flex: 0 0 auto;
}

.brand-logo {
  width: 128px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;

  gap: clamp(34px, 5vw, 76px);

  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.primary-nav a {
  position: relative;

  padding: 25px 0;
}

.primary-nav a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 13px;

  width: 0;
  height: 2px;

  background: var(--brand);

  transform: translateX(-50%);

  transition:
    width 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-current::after {
  width: 100%;
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 24px;

  transition:
    transform 0.25s ease;
}

.menu-word {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* =================================
   제품소개 상단 배너
================================= */

.product-hero {
  position: relative;

  min-height: 286px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--hero-bg);
}

.product-hero-visual {
  position: absolute;
  inset: 0;

  background-image:
    url("../assets/images/design/product-hero-food.jpg");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;

  pointer-events: none;
}

.product-hero-copy {
  position: relative;
  z-index: 2;
}

.product-hero-copy h1 {
  margin: 0 0 10px;

  font-size:
    clamp(34px, 4vw, 47px);

  line-height: 1;
  letter-spacing: -0.07em;
}

.product-hero-copy p {
  margin: 0;

  color: #777682;

  font-size: 15px;
  font-weight: 500;
}

/* =================================
   카테고리 메뉴
================================= */

.category-nav {
  position: relative;
  z-index: 10;

  background: #fff;

  border-bottom:
    1px solid #f0f0f0;
}

.category-scroll {
  min-height: 72px;

  display: flex;
  align-items: center;

  gap: clamp(34px, 5vw, 78px);

  overflow-x: auto;

  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-button {
  position: relative;

  flex: 0 0 auto;

  padding: 25px 0 22px;

  color: #757575;
  background: transparent;

  border: 0;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
}

.category-button::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;

  height: 3px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform 0.2s ease;
}

.category-button:hover,
.category-button:focus-visible,
.category-button.is-active {
  color: #111;
}

.category-button.is-active::after {
  transform: scaleX(1);
}

/* =================================
   제품 영역
================================= */

.products-section {
  padding: 78px 0 110px;
}

.products-heading {
  margin-bottom: 42px;
}

.products-heading h2 {
  margin: 0 0 13px;

  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.07em;
}

.products-heading p {
  margin: 0;

  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.65;
}

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  column-gap: 18px;
  row-gap: 34px;
}

.product-card {
  min-width: 0;

  text-align: center;
}

/*
  라운드 박스 영역

  실제 제품 이미지와 별도로 분리된 요소입니다.
*/
.product-image-frame {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;

  overflow: hidden;

  background: #fff;

  border-radius:
    var(--product-radius);

  isolation: isolate;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/*
  제품 이미지 위에 표시되는 별도 테두리

  실제 이미지에는 테두리가 적용되지 않고
  가상요소가 라운드 테두리를 그립니다.
*/
.product-image-frame::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  border:
    1px solid
    var(--product-border);

  border-radius: inherit;

  pointer-events: none;
}

/*
  실제 제품 이미지

  라운드와 테두리를 적용하지 않습니다.
*/
.product-image-frame img {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  object-fit: contain;
  object-position: center;

  transition:
    transform 0.35s ease;
}

/* 카드 마우스 오버 */
.product-card:hover .product-image-frame {
  transform: translateY(-4px);

  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.09);
}

/* 이미지 자체만 확대 */
.product-card:hover .product-image-frame img {
  transform: scale(1.04);
}

.product-card h3 {
  margin: 12px 0 3px;

  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.product-card p {
  margin: 0;

  color: #a2a2a2;

  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.empty-state {
  padding: 70px 24px;

  color: #888;

  border:
    1px dashed #cfcfcf;

  border-radius: 16px;

  text-align: center;
}

.empty-state strong {
  display: block;

  margin-bottom: 6px;

  color: #222;

  font-size: 20px;
}

.empty-state p {
  margin: 0;
}

/* =================================
   푸터
================================= */

.site-footer {
  color: #6d6d6d;
  background: #fff;

  border-top:
    1px solid var(--line);

  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  border-bottom:
    1px solid var(--line);
}

.footer-links .container {
  min-height: 40px;

  display: flex;
  align-items: center;
}

.footer-links a {
  padding: 0 18px;

  border-right:
    1px solid #ddd;

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-links a:first-child {
  padding-left: 0;
}

.footer-main {
  display: grid;

  grid-template-columns:
    145px 1.2fr 1fr auto;

  gap: 22px;

  align-items: center;

  padding-top: 20px;
  padding-bottom: 18px;
}

.footer-brand img {
  width: 120px;
}

.company-info {
  font-size: 13px;
}

.company-info p {
  display: flex;

  gap: 10px;

  margin: 0 0 4px;
}

.company-info p:last-child {
  margin-bottom: 0;
}

.company-info strong {
  flex: 0 0 82px;

  color: #333;

  font-weight: 700;
}

.footer-social {
  display: flex;

  gap: 8px;
}

.footer-social a {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border:
    1px solid #d3d3d3;

  border-radius: 50%;
}

.footer-social img {
  width: 17px;
  height: 17px;

  object-fit: contain;

  border-radius: 4px;
}

.copyright {
  margin: 0;

  padding: 7px 20px;

  color: #a3a3a3;

  border-top:
    1px solid #f0f0f0;

  text-align: center;

  font-size: 11px;
}

/* =================================
   태블릿
================================= */

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

  .footer-main {
    grid-template-columns:
      130px 1fr 1fr;
  }

  .footer-social {
    grid-column: 3;

    justify-self: end;
  }
}

/* =================================
   모바일
================================= */

@media (max-width: 760px) {
  :root {
    --header-total: 98px;
    --product-radius: 12px;
  }

  .container {
    width: min(
      calc(100% - 32px),
      var(--container)
    );
  }

  /* 모바일 상단 유틸리티 */
  .utility-bar {
    height: 32px;
  }

  .utility-inner {
    gap: 8px;
  }

  .utility-badge {
    min-width: 0;
    height: 22px;

    padding: 0 9px;

    flex: 0 1 auto;

    overflow: hidden;

    font-size: 9px;

    text-overflow: ellipsis;
  }

  .utility-home,
  .utility-divider {
    display: none;
  }

  .utility-links {
    flex: 0 0 auto;

    gap: 7px;
  }

  .social {
    width: 21px;
    height: 21px;

    flex: 0 0 21px;
  }

  /* 모바일 메뉴 */
  .nav-bar {
    height: 66px;
  }

  .brand-logo {
    width: 116px;
  }

  .menu-toggle {
    position: relative;
    z-index: 30;

    min-width: 91px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 12px;

    background: #fff;

    border:
      1px solid #ddd;

    border-radius: 999px;

    box-shadow:
      0 5px 16px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle.is-open {
    color: #fff;
    background: #222;
    border-color: #222;
  }

  .menu-toggle.is-open .menu-icon {
    filter:
      brightness(0)
      invert(1);

    transform: rotate(90deg);
  }

  .primary-nav {
    position: absolute;

    top: 66px;
    left: -16px;
    right: -16px;
    z-index: 20;

    display: grid;

    gap: 0;

    padding: 8px 18px 18px;

    background:
      rgba(255, 255, 255, 0.99);

    border-top:
      1px solid #eee;

    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
      translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;
  }

  .primary-nav a {
    padding: 14px 8px;

    border-bottom:
      1px solid #f0f0f0;
  }

  .primary-nav a::after {
    display: none;
  }

  /* 모바일 상단 배너 */
  .product-hero {
    min-height: 245px;
  }

  .product-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        90deg,
        rgba(194, 194, 206, 0.96) 0%,
        rgba(194, 194, 206, 0.68) 53%,
        rgba(194, 194, 206, 0.05) 100%
      );

    pointer-events: none;
  }

  .product-hero-visual {
    background-position:
      61% center;

    background-size:
      auto 100%;
  }

  .product-hero-copy {
    z-index: 3;
  }

  .product-hero-copy h1 {
    font-size: 38px;
  }

  .product-hero-copy p {
    font-size: 13px;
  }

  /* 모바일 카테고리 */
  .category-scroll {
    min-height: 62px;

    gap: 34px;

    padding-right: 20px;
  }

  .category-button {
    padding: 20px 0 18px;

    font-size: 14px;
  }

  .category-button::after {
    bottom: 9px;
  }

  /* 모바일 제품 */
  .products-section {
    padding: 58px 0 80px;
  }

  .products-heading {
    margin-bottom: 32px;
  }

  .products-heading h2 {
    font-size: 31px;
  }

  .products-heading p br {
    display: none;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 30px 14px;
  }

  .product-image-frame {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  /* 모바일 푸터 */
  .footer-main {
    grid-template-columns:
      1fr 1fr;

    gap: 13px 20px;

    padding-top: 17px;
    padding-bottom: 15px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .company-info {
    font-size: 12px;
  }

  .company-info strong {
    flex-basis: 76px;
  }

  .branch-info {
    grid-column: 2;
  }

  .footer-social {
    grid-column: 1 / -1;

    justify-self: start;
  }
}

/* =================================
   작은 모바일
================================= */

@media (max-width: 500px) {
  :root {
    --product-radius: 14px;
  }

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .product-hero {
    min-height: 210px;
  }

  .product-hero-visual {
    background-position:
      60% center;
  }

  .product-hero-copy h1 {
    font-size: 32px;
  }

  .category-scroll {
    gap: 27px;
  }

  .products-section {
    padding-top: 48px;
  }

  .product-grid {
    grid-template-columns: 1fr;

    row-gap: 36px;
  }

  .product-card {
    width: min(100%, 360px);

    margin-inline: auto;
  }

  .product-image-frame {
    padding: 18px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .footer-links .container {
    flex-wrap: wrap;

    padding: 6px 0;
  }

  .footer-links a {
    padding: 4px 8px;

    border-right: 0;

    font-size: 11px;
  }

  .footer-links a:first-child {
    padding-left: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 10px;

    padding-top: 14px;
    padding-bottom: 12px;
  }

  .branch-info,
  .footer-social {
    grid-column: 1;
  }

  .company-info p {
    display: grid;

    grid-template-columns:
      78px 1fr;

    gap: 4px;
  }
}

/* =================================
   움직임 최소화 설정
================================= */

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   라운드 박스 크기를 실제 이미지 크기에 맞춤
========================================================= */

.product-image-frame {
  position: relative;

  display: block;

  width: 100%;
  height: auto;

  /* 기존 정사각형 고정 제거 */
  aspect-ratio: auto !important;

  /* 이미지와 박스 사이의 여백 제거 */
  padding: 0 !important;

  overflow: hidden;

  background: transparent;

  border-radius: var(--product-radius);

  isolation: isolate;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* 실제 이미지 크기가 박스 높이를 결정하도록 설정 */
.product-image-frame img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: auto !important;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  object-fit: contain;

  transition:
    transform 0.35s ease;
}

/* 이미지 크기에 맞춰 별도의 라운드 테두리 표시 */
.product-image-frame::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  border: 1px solid var(--product-border);
  border-radius: inherit;

  pointer-events: none;
}

/* 마우스를 올렸을 때 */
.product-card:hover .product-image-frame {
  transform: translateY(-4px);

  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.09);
}

.product-card:hover .product-image-frame img {
  transform: scale(1.04);
}

/* 모바일에서도 불필요한 안쪽 여백 제거 */
@media (max-width: 760px) {
  .product-image-frame {
    padding: 0 !important;
  }
}

@media (max-width: 500px) {
  .product-image-frame {
    padding: 0 !important;
  }
}

/* =========================================================
   헤더 드롭다운 메뉴
========================================================= */

.primary-nav {
  overflow: visible;
}

.primary-nav .nav-item {
  position: relative;
  flex: 0 0 auto;
}

.primary-nav .nav-title {
  position: relative;

  display: flex;
  align-items: center;
}

.primary-nav .nav-link {
  position: relative;

  display: block;

  padding: 25px 0;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

/* 상위 메뉴 빨간 밑줄 */
.primary-nav .nav-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 13px;

  width: 0;
  height: 2px;

  background: var(--brand);

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.primary-nav .nav-item:hover > .nav-title .nav-link::after,
.primary-nav .nav-item:focus-within > .nav-title .nav-link::after {
  width: 100%;
}

/* PC에서는 화살표 버튼 숨김 */
.submenu-toggle {
  display: none;
}

/* 세부 메뉴 박스 */
.primary-nav .submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 100;

  width: 180px;

  margin: 0;
  padding: 12px 0;

  list-style: none;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-top: 2px solid var(--brand);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 10px);

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.primary-nav .submenu-products {
  width: 190px;
}

/* PC 마우스 호버 */
.primary-nav .nav-item:hover > .submenu,
.primary-nav .nav-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translate(-50%, 0);
}

.primary-nav .submenu li {
  width: 100%;

  margin: 0;
  padding: 0;
}

.primary-nav .submenu a {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 42px;

  padding: 0 31px;

  color: #555;

  border: 0;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* 세부 메뉴에는 빨간 밑줄 제거 */
.primary-nav .submenu a::after {
  display: none !important;
}

.primary-nav .submenu-label {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  gap: 0;

  white-space: nowrap;
}

.primary-nav .submenu-letter {
  display: block;

  flex: 0 0 auto;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.primary-nav .submenu a:hover,
.primary-nav .submenu a:focus-visible {
  color: var(--brand);
  background: #f7f7f7;
}

/* =========================================================
   모바일 드롭다운
========================================================= */

@media (max-width: 760px) {
  .primary-nav {
    overflow-y: auto;

    max-height:
      calc(100vh - var(--header-total));
  }

  .primary-nav .nav-item {
    width: 100%;
  }

  .primary-nav .nav-title {
    width: 100%;

    border-bottom:
      1px solid #f0f0f0;
  }

  .primary-nav .nav-link {
    flex: 1 1 auto;

    padding: 14px 8px;

    font-size: 15px;
  }

  .primary-nav .nav-link::after {
    display: none;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex: 0 0 48px;

    padding: 0;

    background: transparent;
    border: 0;

    cursor: pointer;
  }

  .submenu-toggle > span {
    width: 8px;
    height: 8px;

    display: block;

    border-right: 2px solid #777;
    border-bottom: 2px solid #777;

    transform:
      rotate(45deg)
      translate(-2px, -2px);

    transition: transform 0.22s ease;
  }

  .nav-item.is-submenu-open
  .submenu-toggle > span {
    transform:
      rotate(225deg)
      translate(-2px, -2px);
  }

  .primary-nav .submenu,
  .primary-nav .submenu-products {
    position: static;

    width: 100%;

    display: none;

    margin: 0;
    padding: 6px 0;

    background: #f8f8f8;

    border: 0;
    border-bottom:
      1px solid #eaeaea;

    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;
  }

  .primary-nav
  .nav-item.is-submenu-open
  > .submenu {
    display: block;
  }

  .primary-nav .submenu a {
    min-height: 39px;

    padding: 0 28px;

    font-size: 13px;
  }

  .primary-nav .submenu-label {
    display: block;

    width: auto;
  }

  .primary-nav .submenu-letter {
    display: inline;

    font-size: 13px;
  }
}

/* =========================================================
   모바일 세부 메뉴 최종 수정
========================================================= */

@media (max-width: 760px) {
  /* 모바일 전체 메뉴가 열린 상태 */
  .primary-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* 기본 세부 메뉴는 닫힘 */
  .primary-nav .submenu,
  .primary-nav .submenu-products {
    position: static !important;

    display: none !important;

    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 6px 0 !important;

    overflow: visible !important;

    background: #f7f7f7 !important;

    border: 0 !important;
    border-bottom: 1px solid #e8e8e8 !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: none !important;
  }

  /* 클릭한 세부 메뉴만 표시 */
  .primary-nav
  .nav-item.is-submenu-open
  > .submenu {
    display: block !important;
  }

  /* 세부 메뉴 목록 */
  .primary-nav .submenu li {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  /* 세부 메뉴 글자 */
  .primary-nav .submenu a {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;
    min-height: 42px !important;

    margin: 0 !important;
    padding: 11px 28px !important;

    color: #333 !important;
    background: transparent !important;

    opacity: 1 !important;
    visibility: visible !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;

    text-align: left !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
  }

  /* 이전 JavaScript의 span이 남아 있어도 글자 표시 */
  .primary-nav .submenu-label,
  .primary-nav .submenu-letter {
    display: inline !important;

    width: auto !important;

    color: inherit !important;

    opacity: 1 !important;
    visibility: visible !important;

    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
  }

  /* 불필요한 가상요소 제거 */
  .primary-nav .submenu a::before,
  .primary-nav .submenu a::after {
    display: none !important;
    content: none !important;
  }

  .primary-nav .submenu a:hover,
  .primary-nav .submenu a:focus-visible,
  .primary-nav .submenu a:active {
    color: var(--brand) !important;
    background: #eeeeee !important;
  }
}

/* PC 세부메뉴 텍스트 가운데 정렬 */
@media (min-width: 761px) {
  .primary-nav .submenu a {
    justify-content: center;
    text-align: center;
  }

  .primary-nav .submenu-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .primary-nav .submenu-letter {
    display: inline-block;
  }
}