:root{
  --primary-color: var(--brand-color, #A50808);
  --primary-light: var(--brand-color-lighter, #A50808);
  --primary-dark: var(--brand-color-dark, #A50808);
  /* --primary-accent is defined in header.php inline styles */
  --secondary-color: #FAFBFC;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border-color: #E5E7EB;
  --border-light: #F3F4F6;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-2xl: 20px;
  --notice: #ffe377;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
  color: var(--text-primary);
  background: #f5f5f5;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1550px !important;
}

/* Header Styles */
.topbar { 
  background: var(--gray-50);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
  min-height: 44px;
}

.topbar a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
}

.topbar a:hover {
  color: var(--primary-color);
  background: var(--primary-accent);
}

.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1100;
}

.brand-mini {
  font-weight: 700; 
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}

.logo-square { 
  width: 48px; 
  height: 40px; 
  border-radius: var(--border-radius-lg); 
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative; 
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-square::before {
  content: "M"; 
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

.logo-placeholder {
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  color: var(--primary-color);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder:hover {
  transform: translateY(-1px);
  color: var(--primary-dark);
}

/* Search Bar - 동그란 버튼 디자인 */
.search-wrap {
  width: 100%;
  max-width: 540px;
  position: relative;
  margin: 0 auto;
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.search-wrap .form-control {
  border: 2px solid var(--border-color);
  padding: 16px 24px;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 32px !important;
  background: var(--gray-50);
  font-weight: 500;
  box-shadow: none;
  flex: 1;
}

.search-wrap .form-control::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-wrap button.btn,
.search-wrap .btn {
  border: none !important;
  background: var(--primary-color) !important;
  color: white !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50% !important;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  position: relative !important;
}

.search-wrap:hover .form-control {
  border: 2px solid var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.search-wrap:hover button.btn,
.search-wrap:hover .btn {
  background: var(--primary-dark) !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.search-wrap .form-control:focus {
  border: 2px solid var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05) !important;
  background: var(--white) !important;
  outline: none;
}

.search-wrap .form-control:focus ~ button.btn,
.search-wrap .form-control:focus ~ .btn {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.search-wrap button.btn:active,
.search-wrap .btn:active {
  transform: scale(0.95) !important;
}

/* Navigation */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.5rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--border-radius-md);
}

.mobile-menu-btn:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
}

.menu-all-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 16px 20px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--border-radius-lg);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.menu-all-btn:hover {
    color: var(--primary-color);
    background: var(--primary-accent);
    transform: translateY(-2px);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
    height: 14px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-all-btn:hover .hamburger-line {
    background-color: var(--primary-color);
}

.nav-main {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05rem;
  white-space: nowrap;
  text-decoration: none;
  display: block;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 0, 0, 0.03);
}

/* Navigation Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
  padding-left: 28px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* PC Mega Menu */
.pc-mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-mega-menu.show {
  display: block;
  opacity: 1;
}

.pc-menu-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.pc-mega-menu.show .pc-menu-content {
  transform: translateY(0);
}

.pc-menu-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

.pc-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--gray-100);
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 11;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-menu-close:hover {
  background: var(--gray-200);
  transform: scale(1.05);
}

.pc-menu-body {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Menu Hero Banner */
.menu-hero-banner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 50px 60px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(var(--brand-color-rgb), 0.3);
  position: relative;
  overflow: hidden;
}

.menu-hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-hero-badge i {
  font-size: 15px;
}

.menu-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.menu-hero-title .highlight {
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.menu-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.menu-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--primary-color);
}

.menu-hero-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.menu-hero-btn:hover i {
  transform: translateX(4px);
}

.menu-hero-illustration {
  position: relative;
  width: 100%;
  height: 280px;
}

.illustration-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  animation: float 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
  top: 20px;
  left: 30px;
  animation-delay: 0s;
}

.circle-2 {
  top: 90px;
  right: 40px;
  animation-delay: 0.5s;
}

.circle-3 {
  bottom: 30px;
  left: 60px;
  animation-delay: 1s;
}

.illustration-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.center-number {
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.center-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.pc-menu-main {
  display: flex;
  justify-content: center;
  align-items: start;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1400px;
  width: 100%;
}

.menu-section {
  min-height: 200px;
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-section:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.menu-section:hover::before {
  height: 100%;
}

.menu-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  letter-spacing: -0.02em;
}

.menu-title a {
  transition: color 0.2s ease;
}

.menu-title a:hover {
  color: var(--brand-color) !important;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 17px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-weight: 500;
  background: transparent;
}

.menu-item a i {
  font-size: 13px;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item a:hover {
  color: var(--primary-color);
  background: var(--primary-accent);
  padding-left: 12px;
}

.menu-item a:hover i {
  opacity: 1;
}

.menu-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 48px 32px;
  border-radius: var(--border-radius-2xl);
  text-align: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-xl);
}

.menu-banner h4 {
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.9;
  font-weight: 500;
}

.menu-banner h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.menu-banner .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.my-section {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
}

.my-section h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.02em;
}

.my-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.my-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.my-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu - Updated Style */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

.mobile-menu.show {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-topbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

.mobile-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-primary);
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.mobile-nav-btn:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
}

.mobile-topbar h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
}

/* Mobile Menu Banner */
.mobile-banner {
  margin: 12px 16px 10px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 16px 14px;
  box-shadow: var(--shadow-md);
}

.mobile-banner .title {
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.mobile-banner .megaphone {
  position: absolute;
  right: 8px;
  bottom: -6px;
  font-size: 92px;
  color: var(--white);
  opacity: 0.85;
  transform: rotate(-10deg);
}

/* Mobile Menu Notice */
.mobile-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--notice);
  margin: 0 16px 12px;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-notice:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mobile-notice .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffd94d;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.mobile-notice .msg {
  font-size: 13px;
  color: #222;
  font-weight: 600;
}

/* Mobile Menu Login Card */
.mobile-login-card {
  margin: 0 16px 12px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-login-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.mobile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-50);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 22px;
  border: 1px solid var(--border-color);
}

.mobile-login-card .title a {
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-login-card .title a:hover {
  color: var(--primary-color);
}

.mobile-login-card .desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
  font-weight: 500;
}

.mobile-logout-btn {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-logout-btn:hover {
  background: var(--brand-color);
  color: #fff;
}

.mobile-logout-btn i {
  font-size: 16px;
}

/* Mobile Quick Menu */
.mobile-quick {
  margin: 8px 16px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mobile-quick .q {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xs);
}

.mobile-quick .q:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mobile-quick .q i {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

.mobile-quick .q span {
  font-size: 12px;
  font-weight: 600;
}

/* Mobile Menu - Updated with Connected Design */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F3F5;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

.mobile-menu.show {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-topbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border-bottom: 1px solid #E6E8EC;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

.mobile-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #E6E8EC;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #333;
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.mobile-nav-btn:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
}

.mobile-topbar h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
}

/* Mobile Menu Banner */
.mobile-banner {
  margin: 12px 16px 10px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(90deg, #3772ff, #9e6bff);
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 16px 14px;
  box-shadow: var(--shadow-md);
}

.mobile-banner .title {
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.mobile-banner .megaphone {
  position: absolute;
  right: 8px;
  bottom: -6px;
  font-size: 92px;
  color: var(--white);
  opacity: 0.85;
  transform: rotate(-10deg);
}

/* Mobile Menu Notice */
.mobile-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFE377;
  margin: 0 16px 12px;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.mobile-notice .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffd94d;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.mobile-notice .msg {
  font-size: 13px;
  color: #222;
  font-weight: 600;
}

/* Mobile Menu Login Card */
.mobile-login-card {
  margin: 0 16px 12px;
  background: var(--white);
  border: 1px solid #E6E8EC;
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-login-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.mobile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F6F7F9;
  display: grid;
  place-items: center;
  color: #9AA0A6;
  font-size: 22px;
  border: 1px solid #E6E8EC;
}

.mobile-login-card .title a {
  font-weight: 800;
  color: #1e1e1e;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-login-card .title a:hover {
  color: var(--primary-color);
}

.mobile-login-card .desc {
  font-size: 12px;
  color: #6B7280;
  margin-top: 2px;
  font-weight: 500;
}

/* Mobile Quick Menu */
.mobile-quick {
  margin: 8px 16px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mobile-quick .q {
  background: var(--white);
  border: 1px solid #E6E8EC;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-quick .q:hover {
  background: var(--primary-accent);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.mobile-quick .q i {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

.mobile-quick .q span {
  font-size: 12px;
  font-weight: 600;
}

/* Mobile Menu Main Content - Connected Design */
.mobile-main {
  margin: 0 16px;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 0;
  padding-bottom: 28px;
}

/* Left Sidebar - Connected to Content */
.mobile-sidenav {
  background: #F2F3F5;
  border: 1px solid #E6E8EC;
  border-right: none;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  position: sticky;
  top: 8px;
  height: max-content;
}

.mobile-sidenav .item {
  display: block;
  padding: 11px 12px;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  background: transparent;
  border-bottom: 1px solid #E6E8EC;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  text-align: center;
}

.mobile-sidenav .item:last-child {
  border-bottom: none;
}

.mobile-sidenav .item.active {
  background: var(--white);
  font-weight: 800;
  color: var(--text-primary);
}

.mobile-sidenav .item.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 12px;
  height: 100%;
  background: var(--white);
  border-right: 1px solid #E6E8EC;
}

.mobile-sidenav .item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-color);
}

/* Right Content - Connected to Sidebar */
.mobile-content {
  background: var(--white);
  border: 1px solid #E6E8EC;
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 10px;
  min-height: 400px;
}

.mobile-content .section {
  margin-bottom: 20px;
  padding-bottom: 12px;
  scroll-margin-top: 50px;
}

.mobile-content .section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.mobile-content .section-title {
  font-size: 12px;
  font-weight: 700;
  color: #8E8E8E;
  margin: 6px 4px 8px;
  letter-spacing: -0.01em;
}

.mobile-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
}

.mobile-link-list li {
  border-top: 1px solid #E6E8EC;
}

.mobile-link-list li:first-child {
  border-top: none;
}

.mobile-link-list a {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #222;
  font-weight: 800;
  background: var(--white);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}

.mobile-link-list a:hover {
  color: var(--primary-color);
  background: var(--primary-accent);
  padding-left: 12px;
}
  
  /* Footer */
  .footer { 
    background: var(--gray-50); 
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
  }
  
  .footer .fw-bold {
    color: var(--text-primary);
    font-weight: 700;
  }
  
  .footer .text-danger {
    color: var(--primary-color) !important;
    font-weight: 700;
  }
  
  .footer .btn-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
  }
  
  .footer-nav-links {
    margin-bottom: 1rem;
  }
  
  .footer-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    position: relative;
  }
  
  .footer-nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .footer-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .footer-nav-link:hover::after {
    width: 100%;
  }
  
  /* Mobile Bottom Navigation */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0 8px;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6b7280;
    padding: 4px 0;
    width: 20%;
    text-align: center;
  }

  .mobile-nav-item.active {
    color: var(--primary-color);
  }

  .mobile-nav-item:active {
    transform: scale(0.95);
  }

  .mobile-nav-icon {
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
  }

  .mobile-nav-item.active .mobile-nav-icon {
    font-weight: bold;
  }

  .mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
  }

  .mobile-nav-item.active .mobile-nav-label {
    font-weight: 700;
  }

  .mobile-nav-badge {
    position: absolute;
    top: 0;
    right: calc(50% - 16px);
    background: #ef4444;
    color: white;
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Common UI Elements */
  .divider { 
    height: 1px;
    background: var(--border-color); 
    margin: 24px 0;
  }
  
  .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .glass-effect {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  button:focus-visible,
  a:focus-visible,
  .form-control:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  .loading {
    opacity: 0.6;
    pointer-events: none;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--gray-100);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1199.98px) {
    .menu-categories {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .menu-hero-banner {
      grid-template-columns: 1fr 320px;
      gap: 40px;
      padding: 40px 50px;
    }

    .menu-hero-title {
      font-size: 28px;
    }

    .menu-hero-illustration {
      height: 240px;
    }

    .illustration-center {
      width: 110px;
      height: 110px;
    }

    .center-number {
      font-size: 38px;
    }
  }

  @media (max-width: 991.98px) {
    .nav-main {
      display: none;
    }

    .menu-all-btn {
      display: none;
    }

    .mobile-menu-btn {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pc-menu-main {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .menu-categories {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .menu-hero-banner {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 40px;
      text-align: center;
    }

    .menu-hero-illustration {
      height: 200px;
      margin: 0 auto;
    }

    .menu-hero-btn {
      display: inline-flex;
    }
  }
  
  @media (max-width: 768px) {
    .header-main {
      padding: 0.75rem 0;
      margin-bottom: 0;
    }

    /* 헤더와 히어로 섹션 사이 여백 제거 */
    .header-main + .hero-section,
    nav + .hero-section,
    .hero-section:first-of-type {
      margin-top: 0 !important;
    }

    /* 모바일 헤더 레이아웃 조정 */
    .header-main .row {
      flex-wrap: nowrap !important;
      align-items: center !important;
    }

    /* 로고 영역 - 왼쪽 배치 */
    .header-main .col-6:first-child,
    .header-main .col-lg-3:first-child {
      flex: 0 0 auto !important;
      width: auto !important;
      max-width: none !important;
      padding-right: 0 !important;
    }

    /* 로고 크기 조정 */
    .header-main .logo-placeholder img {
      width: 140px !important;
      height: auto;
    }

    /* 검색창 표시 및 스타일 - 오른쪽 배치 */
    .search-wrap {
      display: flex !important;
      flex: 1 1 auto !important;
      width: auto !important;
      margin: 0 0 0 30px !important;
      margin-right: 12px !important;
      order: 2 !important;
      position: relative !important;
      align-items: center !important;
      gap: 0 !important;
    }

    .search-wrap .form-control {
      font-size: 13px !important;
      padding: 10px 46px 10px 14px !important;
      border-radius: 22px !important;
      background: #f5f5f5 !important;
      border: none !important;
      width: 100% !important;
      height: 44px !important;
      box-sizing: border-box !important;
      flex: 1 !important;
    }

    .search-wrap .form-control::placeholder {
      color: transparent !important;
      font-size: 0 !important;
    }

    .header-main .search-wrap .btn,
    .header-main .search-wrap button.btn {
      position: absolute !important;
      right: 6px !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      padding: 0 !important;
      background: var(--brand-color) !important;
      border-radius: 50% !important;
      width: 32px !important;
      height: 32px !important;
      min-width: 32px !important;
      max-width: 32px !important;
      min-height: 32px !important;
      max-height: 32px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 0 !important;
      border: none !important;
      box-shadow: none !important;
      flex-shrink: 0 !important;
    }

    .header-main .search-wrap .btn i,
    .header-main .search-wrap button.btn i {
      font-size: 14px !important;
      color: #fff !important;
      line-height: 1 !important;
    }

    /* 검색창 컬럼 조정 */
    .header-main .col-lg-6 {
      flex: 1 !important;
      max-width: none !important;
      order: 2 !important;
      padding: 0 !important;
    }

    /* 로그인/회원가입 버튼 숨김 */
    .header-main .col-lg-3:last-child,
    .header-main .col-6:last-child {
      display: none !important;
    }

    /* 모바일에서 메뉴 토글 버튼이 있는 네비게이션 바 전체 숨김 */
    .main-nav {
      display: none !important;
    }

    .mobile-bottom-nav {
        display: block;
      }

      body {
        padding-bottom: 48px;
        overflow-x: hidden;
      }

      /* 모바일에서 가로 스크롤 방지 */
      .container,
      .container-fluid {
        overflow-x: hidden;
        max-width: 100%;
      }

      .row {
        margin-left: 0;
        margin-right: 0;
      }

      .row > * {
        padding-left: 8px;
        padding-right: 8px;
      }

      .footer-nav-links {
       gap: 1.5rem !important;
       justify-content: center !important;
     }

     .footer-nav-link {
       font-size: 0.85rem;
    }

    }
    
    @media (max-width: 576px) {
      .topbar {
        padding: 0.75rem 0;
      }
      
      .brand-mini {
        font-size: 1.25rem;
      }
      
      .logo-square {
        width: 40px;
        height: 36px;
      }
      
      .mobile-menu-header {
        padding: 20px;
      }
      
      .footer .d-flex.flex-wrap {
       justify-content: center !important;
       gap: 1rem !important;
     }
     
     .footer .d-flex.flex-wrap a {
       font-size: 0.8rem !important;
     }
     
     .footer .d-flex.flex-wrap span {
       display: none;
     }
    
     .footer-nav-links {
     gap: 1rem !important;
    }
    
    .footer-nav-link {
     font-size: 0.8rem;
    }

    }

/* ========================================
   Mobile Search Modal
   ======================================== */
.mobile-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 10000;
  display: none;
  flex-direction: column;
}

.mobile-search-modal.active {
  display: flex;
}

.mobile-search-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.mobile-search-back {
  background: none;
  border: none;
  padding: 8px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  padding: 8px 32px 8px 0;
  outline: none;
  color: #333;
}

.mobile-search-input::placeholder {
  color: #999;
}

.mobile-search-clear {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  padding: 8px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-icon {
  background: none;
  border: none;
  padding: 8px;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
}

/* 최근 검색어 섹션 */
.recent-search-section {
  margin-bottom: 24px;
}

.recent-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.recent-search-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.recent-search-clear-all {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0;
}

.recent-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recent-search-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.recent-search-tag:hover {
  background: #eee;
}

.recent-search-tag .remove-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
}

.recent-search-tag .remove-tag:hover {
  color: #666;
}

.no-recent-search {
  text-align: center;
  padding: 40px 0;
  color: #999;
  font-size: 14px;
}

/* PC에서는 모바일 검색 모달 숨김 */
@media (min-width: 992px) {
  .mobile-search-modal {
    display: none !important;
  }
}

/* ========================================
   PC Search Dropdown
   ======================================== */
.pc-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.pc-search-dropdown.active {
  display: block;
}

.pc-search-section {
  padding: 20px;
}

.pc-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pc-search-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.pc-search-clear-all {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0;
}

.pc-search-clear-all:hover {
  text-decoration: underline;
}

.pc-search-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pc-search-item:last-child {
  border-bottom: none;
}

.pc-search-item:hover {
  background: #f9f9f9;
  margin: 0 -20px;
  padding: 12px 20px;
}

.pc-search-item .keyword {
  font-size: 14px;
  color: #333;
}

.pc-search-item .remove-btn {
  background: none;
  border: none;
  padding: 4px;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-search-item .remove-btn:hover {
  color: #666;
}

.pc-no-recent {
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
}

/* 모바일에서는 PC 검색 드롭다운 숨김 */
@media (max-width: 991px) {
  .pc-search-dropdown {
    display: none !important;
  }
}

/* 헤더 로그인/회원가입 링크 스타일 (PC 전용) */
@media (min-width: 769px) {
  .header-main .text-end {
    margin-right: 70px;
    gap: 1.5rem !important;
  }

  .header-main .text-end a {
    color: var(--brand-color) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease;
  }

  .header-main .text-end a:hover {
    color: var(--brand-color-dark) !important;
    transform: translateY(-1px);
  }
}