/* Motchill VIP UI — header, account, profile menu only */

.mtc-vip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-hot-rgb), 0.42);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-hot-rgb), 0.34) 0%,
    var(--detail-surface) 48%,
    rgba(var(--accent-hot-rgb), 0.18) 100%
  );
  color: #fff4e3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(var(--accent-hot-rgb), 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mtc-vip-btn__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--detail-accent);
}

.mtc-vip-btn__label {
  line-height: 1;
}

.mtc-vip-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-hot-rgb), 0.58);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(var(--accent-hot-rgb), 0.18);
}

.mtc-vip-btn:active,
.mtc-vip-btn.is-active {
  transform: translateY(0);
  border-color: var(--detail-accent);
  box-shadow: 0 0 0 1px rgba(var(--accent-hot-rgb), 0.28), 0 4px 14px rgba(var(--accent-hot-rgb), 0.14);
}

.mtc-vip-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-hot-rgb), 0.38);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-hot-rgb), 0.2) 0%,
    rgba(var(--accent-hot-rgb), 0.08) 100%
  );
  color: var(--detail-accent);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 1px 6px rgba(var(--accent-hot-rgb), 0.1);
}

.mtc-vip-tag__icon {
  color: var(--detail-accent);
}

.mtc-vip-btn--menu {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 0 12px;
  letter-spacing: 0.03em;
}

.mtc-header-account__dropdown .mtc-vip-btn--menu:hover {
  background: linear-gradient(
    135deg,
    rgba(var(--accent-hot-rgb), 0.4) 0%,
    var(--detail-surface) 48%,
    rgba(var(--accent-hot-rgb), 0.22) 100%
  );
  color: #fff;
}

.mtc-header-account__vip {
  padding: 2px 2px 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.motchill-header-modern #box-user-menu.mtc-header-actions > .mtc-vip-btn,
.motchill-header-modern #box-user-menu.mtc-header-actions > .mtc-header-vip {
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  margin: 0;
}

.motchill-member-vip-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(var(--accent-hot-rgb), 0.28);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-hot-rgb), 0.14) 0%,
    var(--detail-surface) 58%,
    var(--detail-surface-2) 100%
  );
  box-shadow: 0 8px 24px rgba(var(--accent-hot-rgb), 0.08);
  box-sizing: border-box;
}

.motchill-member-vip-banner__content {
  min-width: 0;
  flex: 1;
}

.motchill-member-vip-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-hot-rgb), 0.32);
  background: rgba(var(--accent-hot-rgb), 0.1);
  color: var(--detail-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motchill-member-vip-banner__title {
  display: block;
  margin-bottom: 6px;
  color: #fff4e3;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.motchill-member-vip-banner__desc {
  margin: 0;
  max-width: 640px;
  color: var(--detail-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.motchill-member-vip-banner__cta {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
}

.motchill-mobile-user-menu__vip {
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.motchill-mobile-user-menu__vip .mtc-vip-btn {
  width: 100%;
  min-height: 40px;
}

@media (max-width: 991px) {
  .mtc-header-actions .mtc-vip-btn__label {
    display: none;
  }

  .mtc-header-actions .mtc-vip-btn {
    width: 36px;
    min-width: 36px;
    padding: 0;
  }

  .motchill-member-vip-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 20px;
  }

  .motchill-member-vip-banner__cta {
    width: 100%;
    justify-content: center;
  }
}
