/* C 端小程序 · 暖色品牌主题（参考「大于众学育心版」视觉重做）
   仅被 prototype/miniprogram/*.html 引用；覆盖 proto.css 中的 .mp-* 基础样式 */

:root {
  --mp-brand: #f04438;
  --mp-brand-deep: #d92d20;
  --mp-brand-soft: #fff1ee;
  --mp-orange: #ff7a45;
  --mp-gold: #ffb020;
  --mp-bg: #f6f7f9;
  --mp-card: #ffffff;
  --mp-ink: #1d2129;
  --mp-sub: #86909c;
  --mp-line: #f0f1f3;
  --mp-green: #00b42a;
  --mp-radius: 14px;
  --mp-shadow: 0 4px 14px rgba(29, 33, 41, .06);
  --mp-font: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
}

/* ===== 手机壳 ===== */
.mp-page {
  min-height: 100vh;
  background: #eceff3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px 32px;
  font-family: var(--mp-font);
  color: var(--mp-ink);
  -webkit-font-smoothing: antialiased;
}
.mp-frame {
  width: 375px;
  max-width: 100%;
  height: 760px;
  background: var(--mp-bg);
  border-radius: 32px;
  border: 8px solid #12161d;
  box-shadow: 0 22px 50px rgba(16, 20, 28, .28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.mp-status {
  height: 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mp-ink);
  position: relative;
  z-index: 3;
}
.mp-nav {
  height: 44px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 3;
}
.mp-nav .back { position: absolute; left: 14px; color: var(--mp-ink); font-size: 15px; }
.mp-body {
  flex: 1;
  overflow-y: auto;
  background: var(--mp-bg);
  position: relative;
  z-index: 1;
}

/* 顶部渐变底（首页/测评页用） */
.mp-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(180deg, #ffe3dc 0%, #fff6f3 55%, rgba(246, 247, 249, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
.mp-body::-webkit-scrollbar { width: 0; }

/* ===== 底部 4 Tab ===== */
.mp-tabbar {
  height: 58px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--mp-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 2px;
}
.mp-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #9aa1ad;
  gap: 3px;
}
.mp-tabbar a:hover { text-decoration: none; }
.mp-tabbar a { transition: color .18s ease; }
.mp-tabbar a.active { color: var(--mp-brand); font-weight: 700; }
.mp-tabbar a.active .ico { transform: translateY(-1px) scale(1.04); }
.mp-tabbar .ico { transition: transform .18s ease; }
.mp-tabbar .ico { width: 22px; height: 22px; display: block; }
.mp-tabbar .ico svg { width: 100%; height: 100%; display: block; }

/* ===== 欢迎卡（替代原 banner） ===== */
.mp-hero {
  margin: 6px 14px 0;
  position: relative;
  z-index: 2;
  color: var(--mp-ink);
}
.mp-hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.mp-hero-title { font-size: 19px; font-weight: 800; letter-spacing: .2px; line-height: 1.35; }
.mp-hero-title em { font-style: normal; color: var(--mp-brand); }
.mp-hero-sub { font-size: 11.5px; color: var(--mp-sub); margin-top: 6px; }
.mp-hero-login {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff6a45, #f04438);
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(240, 68, 56, .28);
}
.mp-hero-login:hover { text-decoration: none; }

/* ===== 细长条栏目（定制化测评计划入口） ===== */
.mp-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 14px 0;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff3e4 0%, #fff8f0 62%, #fffdfa 100%);
  border: 1px solid #ffe2c2;
  box-shadow: 0 4px 12px rgba(255, 145, 45, .10);
  position: relative;
  z-index: 2;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.mp-strip:hover { transform: translateY(-1px); box-shadow: 0 7px 16px rgba(255, 145, 45, .16); }
.mp-strip:hover { text-decoration: none; }
.mp-strip-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-orange));
  color: #fff; font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mp-strip-txt {
  flex: 1; min-width: 0;
  font-size: 12.5px;
  color: #8a5100;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-strip-txt b { color: #ad4e00; font-weight: 700; }
.mp-strip-go { font-size: 12px; color: #e8590c; font-weight: 700; flex-shrink: 0; }

/* ===== 区块标题 ===== */
.mp-section { padding: 0 14px 14px; }
.mp-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0 10px;
}
.mp-section-title { font-size: 16.5px; font-weight: 800; letter-spacing: .2px; }
.mp-section-more { font-size: 12px; color: var(--mp-sub); }
.mp-section-more:hover { text-decoration: none; }

/* 渐变标题条（参考图「基础认知」） */
.mp-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff0c9 0%, #fff8e6 55%, #fffdf6 100%);
  margin-bottom: 10px;
}
.mp-bar-l { display: flex; align-items: baseline; gap: 8px; }
.mp-bar-l b { font-size: 14.5px; color: #7a4a00; font-weight: 800; }
.mp-bar-l span { font-size: 11px; color: #b07a2a; }
.mp-bar-more { font-size: 12px; color: #b07a2a; font-weight: 600; }
.mp-bar-more:hover { text-decoration: none; }

/* ===== 横向卡片（大家都在学） ===== */
.mp-hscroll {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding: 0 14px 4px;
  margin: 0 -14px;
  scrollbar-width: none;
}
.mp-hscroll::-webkit-scrollbar { height: 0; }
.mp-poster {
  width: 96px; flex-shrink: 0; color: inherit;
}
.mp-poster:hover { text-decoration: none; }
.mp-poster-img {
  width: 96px; height: 126px; border-radius: 10px;
  display: grid; place-items: center; text-align: center;
  color: #fff; font-size: 12px; font-weight: 700; line-height: 1.35;
  padding: 8px;
  box-shadow: var(--mp-shadow);
  position: relative;
  overflow: hidden;
}
.mp-poster-img span.tag {
  position: absolute; left: 6px; bottom: 6px;
  background: rgba(0, 0, 0, .45); color: #fff;
  font-size: 9.5px; font-weight: 500;
  padding: 1px 5px; border-radius: 4px;
}
.mp-poster-name {
  font-size: 12px; color: var(--mp-ink); margin-top: 6px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.p1 { background: linear-gradient(160deg, #ffd3c9, #f7786a); }
.p2 { background: linear-gradient(160deg, #ff8a7a, #d92d20); }
.p3 { background: linear-gradient(160deg, #ffc46b, #f97316); }
.p4 { background: linear-gradient(160deg, #9ad6ff, #2f80ed); }

/* ===== 分类 chips ===== */
.mp-chips {
  display: flex; gap: 22px; align-items: center;
  padding: 4px 14px 0;
  position: relative;
}
.mp-chip {
  font-size: 15px; color: #6b7280; font-weight: 600;
  padding-bottom: 6px; position: relative;
}
.mp-chip:hover { text-decoration: none; }
.mp-chip.active { color: var(--mp-ink); font-size: 17px; font-weight: 800; }
.mp-chip.active::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 18px; height: 3px; border-radius: 3px;
  background: var(--mp-brand);
  transform: translateX(-50%);
}

/* ===== 内容列表项（左图右文） ===== */
.mp-item {
  display: flex; gap: 10px;
  background: #fff; border-radius: var(--mp-radius);
  padding: 10px; margin-bottom: 10px;
  color: inherit;
  box-shadow: var(--mp-shadow);
}
.mp-item:hover { text-decoration: none; }
.mp-item-img {
  width: 118px; height: 78px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; text-align: center;
  font-size: 11px; font-weight: 700; color: #fff; padding: 6px;
}
.mp-item-bd { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mp-item-title {
  font-size: 13.5px; font-weight: 700; line-height: 1.45; color: var(--mp-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mp-item-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 10.5px; color: #86909c;
  background: #f4f5f7; border-radius: 4px;
  padding: 2px 6px;
}

/* ===== 兼容旧结构（course-card / mp-banner） ===== */
.mp-banner {
  position: relative;
  overflow: hidden;
  margin: 12px 14px 0;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff7a45, #f04438 62%, #d92d20);
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 22px rgba(240, 68, 56, .22);
}
.mp-banner::after {
  content: "";
  position: absolute;
  right: -34px; top: -40px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.mp-banner h3 { font-size: 19px; font-weight: 800; letter-spacing: .3px; position: relative; z-index: 1; }
.mp-banner p { font-size: 12px; opacity: .95; margin-top: 6px; position: relative; z-index: 1; }
.mp-banner-pill {
  position: relative; z-index: 1;
  align-self: flex-start;
  font-size: 10.5px; font-weight: 600;
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: auto;
}

.course-card {
  display: flex; gap: 11px;
  background: #fff; border-radius: var(--mp-radius);
  padding: 10px; margin-bottom: 11px;
  color: inherit; box-shadow: var(--mp-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.course-card:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29, 33, 41, .10); }
.course-card:hover { text-decoration: none; }
.course-cover {
  width: 106px; height: 78px; border-radius: 12px;
  background: linear-gradient(160deg, #ffe0d8, #ffc0b0);
  flex-shrink: 0;
  display: grid; place-items: center;
  color: #b02a1a; font-size: 11px; font-weight: 700;
  text-align: center; padding: 4px;
}
.course-cover.live { background: linear-gradient(160deg, #ffd0c9, #ff8b7a); color: #fff; }
.course-info { flex: 1; min-width: 0; }
.course-info h4 { font-size: 14px; color: var(--mp-ink); font-weight: 700; }
.course-info p { font-size: 11px; color: var(--mp-sub); margin-top: 4px; }
.course-info .price { color: var(--mp-brand); font-weight: 800; margin-top: 6px; font-size: 14px; }
.course-info .price s { color: #c0c4cc; font-weight: 400; font-size: 11px; margin-left: 4px; }

/* ===== 按钮 ===== */
.mp-btn {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, #ff6a45, #f04438);
  color: #fff !important;
  border: none; border-radius: 999px;
  padding: 12px; font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 18px rgba(240, 68, 56, .24);
}
.mp-btn:hover { text-decoration: none; filter: brightness(1.03); }
.mp-btn-outline {
  background: #fff; color: var(--mp-brand) !important;
  border: 1px solid #ffd2c9; box-shadow: none;
}
.mp-bottom-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #fff; border-top: 1px solid var(--mp-line);
  padding: 10px 14px; display: flex; gap: 8px; align-items: center;
}

/* ===== 直播间 ===== */
.live-player {
  height: 200px;
  background: linear-gradient(160deg, #1b2432, #0d1117);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.live-player .live-tag {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, #ff6a45, #f04438);
  font-size: 11px; padding: 2px 8px; border-radius: 999px;
}
.live-chat { flex: 1; padding: 10px 14px; overflow-y: auto; font-size: 12px; }
.live-chat .msg { margin-bottom: 6px; }
.live-chat .msg b { color: var(--mp-brand); }
.goods-sheet {
  background: #fff; border-radius: 16px 16px 0 0;
  padding: 12px 14px; border-top: 1px solid var(--mp-line);
}
.goods-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--mp-line);
}

/* ===== 测评页（定制化计划） ===== */
.mp-plan {
  background: #fff; border-radius: var(--mp-radius);
  padding: 14px; margin-bottom: 12px;
  box-shadow: var(--mp-shadow);
}
.mp-plan-hd { display: flex; align-items: center; gap: 10px; }
.mp-plan-badge {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #ffb020, #ff7a45);
  color: #fff; font-size: 17px; display: grid; place-items: center;
}
.mp-plan-name { font-size: 15px; font-weight: 800; }
.mp-plan-desc { font-size: 11.5px; color: var(--mp-sub); margin-top: 3px; }
.mp-plan-progress { margin-top: 12px; }
.mp-plan-progress-top {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--mp-sub); margin-bottom: 6px;
}
.mp-plan-progress-top b { color: var(--mp-brand); font-weight: 700; }
.mp-bar-track { height: 6px; border-radius: 6px; background: #f2f3f5; overflow: hidden; }
.mp-bar-track i {
  display: block; height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, #ff9f43, #f04438);
}
.mp-steps { margin-top: 12px; }
.mp-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px dashed var(--mp-line);
}
.mp-step:last-child { border-bottom: 0; }
.mp-step-no {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  background: #f2f3f5; color: #86909c;
}
.mp-step.done .mp-step-no { background: #e8ffea; color: var(--mp-green); }
.mp-step.cur .mp-step-no { background: linear-gradient(135deg, #ff6a45, #f04438); color: #fff; }
.mp-step-bd { flex: 1; min-width: 0; }
.mp-step-name { font-size: 13px; font-weight: 600; }
.mp-step-meta { font-size: 10.5px; color: var(--mp-sub); margin-top: 2px; }
.mp-step-state { font-size: 11px; color: var(--mp-sub); }
.mp-step.cur .mp-step-state { color: var(--mp-brand); font-weight: 600; }
.mp-step.done .mp-step-state { color: var(--mp-green); }

/* ===== 提示条 ===== */
.mp-hint {
  font-size: 11px;
  color: #9aa1ad;
  text-align: center;
  margin: 10px 0 0;
  max-width: 375px;
}
.mp-hint a { color: var(--mp-brand); }

/* ===== 直播列表 ===== */
.mp-live-card {
  display: block;
  background: #fff; border-radius: var(--mp-radius);
  overflow: hidden;
  margin-bottom: 12px;
  color: inherit;
  box-shadow: var(--mp-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mp-live-card:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(29, 33, 41, .12); }
.mp-live-cover {
  position: relative;
  height: 138px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(140deg, #ff8a7a, #f04438 65%, #c81e14);
}
.mp-live-cover.soon { background: linear-gradient(140deg, #ffc46b, #ff8a45); }
.mp-live-cover.replay { background: linear-gradient(140deg, #7d8ea8, #4b5c75); }
.mp-live-cover::after {
  content: "";
  position: absolute; right: -30px; top: -36px;
  width: 118px; height: 118px; border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}
.mp-live-cover h3 { font-size: 16.5px; font-weight: 800; position: relative; z-index: 1; }
.mp-live-cover p { font-size: 11.5px; opacity: .92; margin-top: 4px; position: relative; z-index: 1; }
.mp-live-badge {
  position: absolute; top: 10px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .4px;
  background: rgba(0, 0, 0, .32);
  border-radius: 999px; padding: 3px 9px;
  display: inline-flex; align-items: center; gap: 4px;
}
.mp-live-badge i {
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
  display: inline-block;
  animation: mpPulse 1.4s infinite ease-in-out;
}
@keyframes mpPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
.mp-live-ft {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 13px;
}
.mp-live-ft-l { font-size: 11.5px; color: var(--mp-sub); }
.mp-live-ft-l b { color: var(--mp-brand); font-weight: 700; }
.mp-live-ft-btn {
  font-size: 12px; font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #ff6a45, #f04438);
  border-radius: 999px;
  padding: 6px 15px;
  box-shadow: 0 6px 14px rgba(240, 68, 56, .22);
}
.mp-live-ft-btn.ghost {
  color: var(--mp-brand) !important;
  background: #fff; border: 1px solid #ffd2c9; box-shadow: none;
}

/* ===== 我的：用户卡 ===== */
.mp-user {
  margin: 6px 14px 0;
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: linear-gradient(140deg, #ff8a7a 0%, #f04438 62%, #d92d20 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(240, 68, 56, .22);
}
.mp-user::after {
  content: "";
  position: absolute; right: -38px; top: -46px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.mp-user-row { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.mp-user-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, .26);
  border: 2px solid rgba(255, 255, 255, .55);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.mp-user-name { font-size: 17.5px; font-weight: 800; letter-spacing: .2px; }
.mp-user-phone { font-size: 12px; opacity: .9; margin-top: 4px; }
.mp-user-vip {
  margin-left: auto; align-self: flex-start;
  font-size: 10.5px; font-weight: 700;
  background: rgba(255, 255, 255, .24);
  border-radius: 999px; padding: 4px 10px;
  white-space: nowrap;
}
.mp-user-greet { position: relative; z-index: 1; font-size: 11.5px; opacity: .92; margin-top: 14px; }

/* 功能单元格 */
.mp-cells {
  background: #fff; border-radius: var(--mp-radius);
  overflow: hidden; box-shadow: var(--mp-shadow);
}
.mp-cell {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px;
  font-size: 13.5px; color: var(--mp-ink);
  border-bottom: 1px solid var(--mp-line);
}
.mp-cell:last-child { border-bottom: 0; }
.mp-cell:hover { text-decoration: none; background: #fafbfc; }
.mp-cell-ico {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px; color: #fff; font-weight: 700;
}
.mp-cell-arrow { margin-left: auto; color: #c9cdd4; font-size: 14px; }

/* ===== 我的订单 ===== */
.mp-tabs {
  display: flex; gap: 20px; align-items: center;
  padding: 2px 2px 0;
  position: relative;
  border-bottom: 1px solid var(--mp-line);
  margin-bottom: 12px;
}
.mp-tab {
  font-size: 13.5px; color: #6b7280; font-weight: 600;
  padding: 6px 0 9px; position: relative;
}
.mp-tab:hover { text-decoration: none; }
.mp-tab.active { color: var(--mp-ink); font-weight: 800; }
.mp-tab.active::after {
  content: ""; position: absolute; left: 50%; bottom: -1px;
  width: 20px; height: 3px; border-radius: 3px;
  background: var(--mp-brand); transform: translateX(-50%);
}
.mp-order {
  background: #fff; border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
  margin-bottom: 12px;
  overflow: hidden;
}
.mp-order-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 13px; border-bottom: 1px solid var(--mp-line);
  font-size: 11.5px; color: var(--mp-sub);
}
.mp-order-state { font-size: 12px; font-weight: 700; }
.mp-order-state.wait { color: #f59e0b; }
.mp-order-state.done { color: var(--mp-green); }
.mp-order-state.refund { color: #86909c; }
.mp-order-bd { display: flex; gap: 11px; padding: 12px 13px; }
.mp-order-img {
  width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; text-align: center;
  font-size: 11px; font-weight: 700; color: #fff; padding: 4px;
}
.mp-order-info { flex: 1; min-width: 0; }
.mp-order-title { font-size: 13.5px; font-weight: 700; line-height: 1.45; }
.mp-order-spec { font-size: 11px; color: var(--mp-sub); margin-top: 4px; }
.mp-order-price { font-size: 15px; font-weight: 800; color: var(--mp-brand); margin-top: 6px; }
.mp-order-price span { font-size: 11px; color: var(--mp-sub); font-weight: 400; margin-left: 6px; }
.mp-order-ft {
  display: flex; align-items: center; gap: 8px; justify-content: flex-end;
  padding: 10px 13px; border-top: 1px solid var(--mp-line);
  background: #fcfcfd;
}
.mp-order-time { margin-right: auto; font-size: 11px; color: var(--mp-sub); }
.mp-btn-sm {
  font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 6px 14px;
  background: #fff; color: var(--mp-ink) !important;
  border: 1px solid #e5e6eb;
}
.mp-btn-sm:hover { text-decoration: none; border-color: #d0d3d9; }
.mp-btn-sm.primary {
  color: #fff !important; border: none;
  background: linear-gradient(135deg, #ff6a45, #f04438);
  box-shadow: 0 6px 14px rgba(240, 68, 56, .22);
}
.mp-empty {
  text-align: center; padding: 46px 16px; color: var(--mp-sub); font-size: 12.5px;
}
.mp-empty-ico { font-size: 30px; margin-bottom: 8px; }
