/* ═══════════════════════════════════════════
   Shared Header / Nav CSS — ทุกหน้าใช้ร่วมกัน
   Miss & Mister Oriental International 2026
═══════════════════════════════════════════ */

/* ─── Variables (fallback ถ้าหน้าไม่ได้ define) ─── */
:root {
  --copper:        #B87333;
  --copper-light:  #D4944A;
  --copper-border: rgba(184,115,51,0.35);
  --dark-bg:       #2A0005;
}

/* ════════════════════════════
   HEADER SHELL
════════════════════════════ */
.header {
  position: sticky; top: 0; left: 0; right: 0;
  width: 100%; z-index: 200;
  background: #FFFFFF;
  border-bottom: 1.5px solid var(--copper-border);
  box-shadow: 0 2px 20px rgba(184,115,51,.10);
}

.header-inner {
  width: 100%;
  padding: 0 40px;
  height: 72px;
  display: grid;
  /* 3 คอลัมน์: logo | nav | right — ซ้าย-ขวา auto ขยาย/หด เท่ากัน */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.header-inner > .header-right,
.header-inner > .header-right-zone {
  grid-column: 3;
  justify-self: end;
  min-width: 0;
}

/* ════════════════════════════
   LOGO — zone ซ้าย
════════════════════════════ */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  justify-content: flex-start;      /* zone ซ้าย — ชิดซ้าย */
  transition: opacity .2s;
}
.logo:hover { opacity: .88; }

/* Badge */
.logo-badge {
  flex-shrink: 0; width: 52px; height: 52px;
  border-radius: 50%; padding: 2.5px;
  background: conic-gradient(
    from 135deg,
    #F0D080 0deg, #C8892E 60deg, #E8B86D 120deg,
    #A0661C 180deg, #E8B86D 240deg, #C8892E 300deg, #F0D080 360deg
  );
  box-shadow: 0 2px 12px rgba(184,115,51,.22), 0 0 0 1px rgba(255,220,130,.15);
  box-sizing: border-box;
  transition: box-shadow .25s;
}
.logo:hover .logo-badge {
  box-shadow: 0 4px 18px rgba(184,115,51,.38), 0 0 0 1px rgba(255,220,130,.28);
}
.logo-badge-inner {
  display: block; width: 47px; height: 47px;
  border-radius: 50%; background: #1C0004; overflow: hidden;
}
.logo-img {
  display: block; width: 47px; height: 47px;
  object-fit: cover; object-position: center;
  border-radius: 50%; transition: transform .25s;
}
.logo:hover .logo-img { transform: scale(1.06); }

/* Text */
.logo-text {
  display: flex; flex-direction: column; gap: 2px;
}
.logo-text-main {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; color: var(--dark-bg); line-height: 1.2;
  white-space: nowrap;
}
.logo-text-sub {
  font-family: 'Cinzel', serif;
  font-size: 8.5px; font-weight: 400;
  letter-spacing: 3px; color: var(--copper); line-height: 1.2;
  white-space: nowrap;
}

/* ════════════════════════════
   NAV LINKS — zone กลาง (column 2, auto width)
════════════════════════════ */
.nav {
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  /* nav กว้างเท่าเนื้อหาจริง — grid จัดกึ่งกลางให้เอง */
}

.nav-link {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  font-size: 13px; font-weight: 300;
  color: #6A4020; text-decoration: none;
  letter-spacing: 0.4px; white-space: nowrap;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link i { font-size: 11px; opacity: .75; }

/* Underline indicator */
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1.5px; border-radius: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform .22s ease;
}
.nav-link:hover { color: var(--copper); background: rgba(184,115,51,.06); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--dark-bg); font-weight: 500;
  background: rgba(184,115,51,.06);
}
.nav-link.active::after { transform: scaleX(1); }

/* ── Nav dropdown (POP / AE) — editorial, ชิดแบรนด์ header ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  margin: 0;
  transition: color 0.2s;
}
.nav-dropdown-toggle .nav-dropdown-caret {
  font-size: 8px;
  margin-left: 5px;
  opacity: 0.55;
  transition: transform 0.25s ease;
}
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--copper) !important;
}
.nav-dropdown.open .nav-dropdown-toggle .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-toggle .nav-dropdown-caret {
  transform: rotate(180deg);
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  border-radius: 0;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-dropdown.active .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(6px);
  padding: 10px 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s;
  z-index: 220;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-panel {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: min(440px, 92vw);
  padding: 0;
  background: var(--nav-drop-bg, rgba(22, 2, 6, 0.96));
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid var(--nav-drop-border, rgba(184, 115, 51, 0.28));
  border-top: 2px solid var(--nav-drop-accent, rgba(200, 137, 46, 0.7));
  border-radius: 0;
  box-shadow: var(--nav-drop-shadow, 0 14px 36px rgba(0, 0, 0, 0.38));
}

.nav-dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 46px;
  padding: 12px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease;
}
.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid var(--nav-drop-divider, rgba(184, 115, 51, 0.2));
}
.nav-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--copper);
  transition: width 0.18s ease;
}
.nav-dropdown-item:hover {
  background: var(--nav-drop-hover, rgba(255, 255, 255, 0.05));
}
.nav-dropdown-item.active {
  background: var(--nav-drop-active, rgba(184, 115, 51, 0.14));
}
.nav-dropdown-item.active::before {
  width: 2px;
}
.nav-dropdown-item-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1.4;
  pointer-events: none;
}
.nav-dropdown-item-label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--nav-drop-label, rgba(255, 240, 210, 0.92));
  flex-shrink: 0;
  transition: color 0.18s ease;
}
.nav-dropdown-item-sep {
  font-size: 14px;
  line-height: 1;
  color: var(--nav-drop-sep, rgba(200, 137, 46, 0.45));
  flex-shrink: 0;
  user-select: none;
}
.nav-dropdown-item-sub {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--nav-drop-sub, rgba(255, 240, 210, 0.5));
  letter-spacing: 0.15px;
  transition: color 0.18s ease;
}
.nav-dropdown-item:hover .nav-dropdown-item-label,
.nav-dropdown-item.active .nav-dropdown-item-label {
  color: var(--nav-drop-label-hover, #ffe8a8);
}
.nav-dropdown-item:hover .nav-dropdown-item-sub,
.nav-dropdown-item.active .nav-dropdown-item-sub {
  color: var(--nav-drop-sub-hover, rgba(255, 240, 210, 0.72));
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-menu {
    transition: none;
  }
}

/* CTA — สมัครเข้าประกวด */
.nav-cta {
  margin-left: 6px;
  padding: 9px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #3D0000 !important;
  background: linear-gradient(135deg, #C8892E, #F0D080);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(200,137,46,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-cta::after { display: none; }
.nav-cta i { opacity: 1; color: #3D0000; }
.nav-cta:hover {
  color: #3D0000 !important;
  background: linear-gradient(135deg, #D4944A, #FFE4A0);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,137,46,.38);
}
.nav-cta.active {
  color: #FFF8E0 !important;
  background: linear-gradient(135deg, #A0661C, #C8892E);
  box-shadow: 0 2px 14px rgba(160,102,28,.45);
}
.nav-cta.active i { color: #FFF8E0; }

/* เข้าสู่ระบบ — inline โปร่ง ชิดปุ่มสมัคร */
a.ah-login-btn.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px !important;
  margin-left: 0 !important;
  font-family: 'Prompt', sans-serif;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #6A4020 !important;
  background: transparent !important;
  border: none;
  border-radius: 8px;
  box-shadow: none !important;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
a.ah-login-btn.nav-link i {
  font-size: 11px;
  opacity: .75;
}
a.ah-login-btn.nav-link:hover {
  color: var(--copper) !important;
  background: rgba(184, 115, 51, .06) !important;
  transform: none;
  box-shadow: none !important;
}
a.ah-login-btn.nav-link:hover::after {
  transform: scaleX(1);
}

/* ════════════════════════════
   HEADER RIGHT — zone ขวา (column 3)
════════════════════════════ */
.header-right {
  display: flex; align-items: center;
  gap: 10px;
  justify-content: flex-end;        /* zone ขวา — ชิดขวา */
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-cta-group .nav-cta,
.header-cta-group .ah-login-btn {
  margin-left: 0 !important;
}

/* Coin pill */
.coin-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(184,115,51,.08);
  border: 1px solid var(--copper-border);
  border-radius: 24px;
  padding: 5px 12px 5px 5px;
  transition: background .2s;
  flex-shrink: 0;
}
a.coin-pill {
  text-decoration: none;
  color: inherit;
}
a.coin-pill:hover { background: rgba(184,115,51,.14); }
.coin-pill:hover { background: rgba(184,115,51,.14); }
.coin-dot {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(212,160,64,.45));
}
.coin-num {
  font-weight: 500; color: var(--copper);
  font-size: 13px; letter-spacing: .3px;
}
.coin-plus {
  width: 20px; height: 20px;
  background: var(--copper); color: #FFFFFF;
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
  margin-left: 2px;
  text-decoration: none;
}
a.coin-plus { color: #FFFFFF; }
.coin-plus:hover { background: var(--copper-light); transform: scale(1.12); }

/* Icon buttons */
.hdr-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(184,115,51,.2);
  color: #6A4020;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 15px;
}
.hdr-btn:hover {
  background: rgba(184,115,51,.1);
  color: var(--copper);
  border-color: var(--copper);
}

/* ☰ และแถบมือถือ — แสดงเฉพาะ ≤640px */
.hamburger { display: none !important; }
.ah-header-mob-only { display: none !important; }
@media (min-width: 641px) {
  .ah-header-desk-only { display: flex !important; }
}

/* ════════════════════════════
   MOBILE BOTTOM NAV
════════════════════════════ */
.mob-nav {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--copper-border);
  box-shadow: 0 -4px 20px rgba(184,115,51,.1);
  padding: 8px max(12px, env(safe-area-inset-left))
           calc(8px + env(safe-area-inset-bottom))
           max(12px, env(safe-area-inset-right));
}
.mob-nav-items {
  display: flex; align-items: flex-end; justify-content: space-around;
}
.mob-nav-a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: #8A5A2A;
  font-size: 10px; padding: 4px 10px;
  transition: color .2s;
}
.mob-nav-a i { font-size: 19px; }
.mob-nav-a.active { color: var(--copper); }
.mob-coin-center {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin-top: -24px;
}
a.mob-coin-center,
.mob-coin-center--link {
  text-decoration: none; color: inherit;
}
.mob-coin-btn {
  width: 64px; height: 64px; border: none; background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .2s;
}
.mob-coin-btn:hover { transform: scale(1.08); }
.mob-coin-btn-img {
  width: 60px; height: 60px; object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212,160,64,.55));
}
.mob-coin-label { font-size: 10px; color: var(--copper); font-weight: 400; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

/* Tablet: 641–960 */
/* Tablet: 641–960 — แน่นขึ้นเมื่อ login แล้ว */
@media (max-width: 1280px) and (min-width: 641px) {
  .header-inner:has(.ah-has-user) {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 20px;
  }
  .header-inner:has(.ah-has-user) .nav-link {
    padding: 7px 8px;
    font-size: 12px;
  }
  .header-inner:has(.ah-has-user) .nav-link::after {
    left: 8px;
    right: 8px;
  }
  .header-inner:has(.ah-has-user) .logo-text-main {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .header-inner:has(.ah-has-user) .logo-text-sub {
    font-size: 7.5px;
    letter-spacing: 2px;
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .header-inner { padding: 0 24px; }
  .nav-link { padding: 7px 10px; font-size: 12px; }
  .nav-cta {
    padding: 7px 12px !important;
    font-size: 11px !important;
    margin-left: 4px;
  }
  a.ah-login-btn.nav-link {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }
  .logo-text-main { font-size: 12px; letter-spacing: 1.5px; }
  .header-right { gap: 8px; }
}

/* Mobile: ≤640 */
@media (max-width: 640px) {
  .nav { display: none; }
  .ah-header-desk-only { display: none !important; }
  .ah-header-mob-only { display: block !important; }
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    display: flex;                  /* mobile กลับเป็น flex — nav ซ่อนอยู่ */
    justify-content: space-between;
    height: 60px;
    padding: 0 16px;
  }

  .logo {
    gap: 10px;
    margin-right: 0;
  }
  .logo-text-main { font-size: 11px; letter-spacing: 1px; }
  .logo-text-sub  { font-size: 7.5px; letter-spacing: 2px; }
  .logo-badge       { width: 44px; height: 44px; padding: 2px; }
  .logo-badge-inner { width: 40px; height: 40px; }
  .logo-img         { width: 40px; height: 40px; }

  .header-right { margin-left: 0; gap: 6px; }
  .hdr-btn { width: 36px; height: 36px; font-size: 14px; }

  .mob-nav { display: block; }
}

/* ════════════════════════════
   MOBILE DRAWER (hamburger)
════════════════════════════ */
.mmo-drawer {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.32s;
}
.mmo-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.mmo-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 3, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mmo-drawer.is-open .mmo-drawer-backdrop {
  opacity: 1;
}
.mmo-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FFFBF5 0%, #FFF5E8 100%);
  border-left: 1px solid var(--copper-border);
  box-shadow: -8px 0 40px rgba(61, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mmo-drawer.is-open .mmo-drawer-panel {
  transform: translateX(0);
}
.mmo-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
  flex-shrink: 0;
}
.mmo-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mmo-drawer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 137, 46, 0.45);
  flex-shrink: 0;
}
.mmo-drawer-title {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-bg);
  line-height: 1.2;
}
.mmo-drawer-sub {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.mmo-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #6A4020;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.mmo-drawer-close:hover {
  background: rgba(184, 115, 51, 0.12);
  color: var(--copper);
}
.mmo-drawer-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mmo-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5A3818;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mmo-drawer-link i {
  width: 22px;
  text-align: center;
  font-size: 16px;
  color: var(--copper);
  opacity: 0.9;
}
.mmo-drawer-link:hover,
.mmo-drawer-link.active {
  background: rgba(184, 115, 51, 0.1);
  color: var(--dark-bg);
}
.mmo-drawer-link.active {
  font-weight: 600;
}
.mmo-drawer-link.active i {
  color: var(--copper-light);
}
.mmo-drawer-cta {
  margin-top: 8px;
  font-weight: 600 !important;
  color: #3D0000 !important;
  background: linear-gradient(135deg, #C8892E, #F0D080) !important;
  box-shadow: 0 2px 14px rgba(200, 137, 46, 0.3);
}
.mmo-drawer-cta i {
  color: #3D0000 !important;
  opacity: 1;
}
.mmo-drawer-cta:hover {
  background: linear-gradient(135deg, #D4944A, #FFE4A0) !important;
}
.mmo-drawer-cta.active {
  background: linear-gradient(135deg, #A0661C, #C8892E) !important;
  color: #FFF8E0 !important;
}
.mmo-drawer-cta.active i {
  color: #FFF8E0 !important;
}
.mmo-drawer-footer .mmo-drawer-login {
  margin-top: 0;
  border-top: none;
  border-radius: 12px;
  padding-top: 14px;
}

/* Drawer — กลุ่มพันธมิตร POP / AE */
.mmo-drawer-group {
  margin: 4px 0 8px;
  border-radius: 12px;
  background: rgba(184, 115, 51, 0.06);
  border: 1px solid rgba(184, 115, 51, 0.18);
  overflow: hidden;
}
.mmo-drawer-group.active {
  border-color: rgba(184, 115, 51, 0.35);
  background: rgba(184, 115, 51, 0.1);
}
.mmo-drawer-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 8px;
  font-family: 'Prompt', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--copper);
  text-transform: uppercase;
}
.mmo-drawer-group-head i {
  width: 22px;
  text-align: center;
  font-size: 14px;
}
.mmo-drawer-subnav {
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px;
  gap: 2px;
}
.mmo-drawer-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #5a3818;
  transition: background 0.15s;
}
.mmo-drawer-sublink i {
  width: 22px;
  text-align: center;
  font-size: 15px;
  color: var(--copper);
}
.mmo-drawer-sublink-line {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.4;
  min-width: 0;
}
.mmo-drawer-sublink-dot {
  color: rgba(184, 115, 51, 0.35);
  font-size: 14px;
  line-height: 1;
}
.mmo-drawer-sublink strong {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark-bg);
}
.mmo-drawer-sublink small {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #8a5a2a;
}
.mmo-drawer-sublink:hover,
.mmo-drawer-sublink.active {
  background: rgba(184, 115, 51, 0.12);
  color: var(--dark-bg);
}
.mmo-drawer-sublink.active strong {
  color: var(--copper);
}
