* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #FFF9F3;
  --ink: #9A6B7C;
  --ink-soft: #B48A9C;
  --ink-strong: #C97D9A;
  --pink: #E894B4;
  --pink-deep: #D17E9E;
  --pink-grad: linear-gradient(135deg, #FFB8D2, #FF9CC0);
  --card: #ffffff;
  --border: #FFEDF4;
  --shadow: 0 10px 26px rgba(226, 150, 180, .20);
  --shadow-sm: 0 5px 14px rgba(226, 150, 180, .22);
}
html { scroll-behavior: smooth; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  min-height: 100vh;
  background: var(--bg);
  background-image: radial-gradient(#FFE3EE 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; opacity: .45; filter: blur(2px); }
.b1 { width: 190px; height: 190px; background: #FFE9F2; top: -70px; right: -60px; }
.b2 { width: 150px; height: 150px; background: #FFF0D9; bottom: 40px; left: -60px; }
.b3 { width: 110px; height: 110px; background: #FFE0EC; top: 42%; left: -40px; }

.page {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 0 20px 118px;
}

/* ---------- 顶栏 ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6px 14px;
}
.topbar .left { display: flex; align-items: center; gap: 12px; }
.back-btn {
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; font-size: 17px; font-weight: 900;
  box-shadow: var(--shadow-sm); color: var(--ink-strong); flex: none;
  transition: transform .15s ease;
}
.back-btn:active { transform: scale(.92); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 16px; color: var(--ink-strong); letter-spacing: 1px; }
.bunny-logo {
  width: 40px; height: 40px; position: relative;
  background: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 17px;
  box-shadow: var(--shadow-sm);
}
.bunny-logo::before, .bunny-logo::after {
  content: ""; position: absolute; top: -13px;
  width: 12px; height: 22px; background: #fff; border-radius: 50% 50% 40% 40%;
  box-shadow: 0 3px 8px rgba(226, 150, 180, .2);
}
.bunny-logo::before { left: 6px; transform: rotate(-12deg); }
.bunny-logo::after { right: 6px; transform: rotate(12deg); }
.topbar .page-title { font-size: 17px; font-weight: 900; color: var(--ink-strong); }
.topbar .date {
  font-size: 12.5px; background: #fff; padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm); font-weight: 700; white-space: nowrap;
}

/* ---------- 首页 hero ---------- */
.hero { text-align: center; padding: 20px 8px 0; animation: fadeUp .6s ease both; }
.bunny { width: 170px; height: 160px; margin: 0 auto; position: relative; animation: bob 4s ease-in-out infinite; }
.bunny .ear {
  position: absolute; top: -6px; width: 44px; height: 86px; background: #fff;
  border-radius: 50% 50% 38% 38%; box-shadow: 0 8px 18px rgba(226, 150, 180, .25);
}
.bunny .ear.l { left: 28px; transform: rotate(-10deg); }
.bunny .ear.r { right: 28px; transform: rotate(10deg); }
.bunny .ear .inner { position: absolute; inset: 14px 9px 8px; background: #FFDCE9; border-radius: 50% 50% 40% 40%; }
.bunny .head {
  position: absolute; top: 48px; left: 50%; transform: translateX(-50%);
  width: 128px; height: 112px; background: #fff; border-radius: 48% 48% 44% 44%;
  box-shadow: 0 10px 24px rgba(226, 150, 180, .28);
}
.bunny .eye { position: absolute; top: 22px; width: 8px; height: 8px; background: #B07A8F; border-radius: 50%; }
.bunny .eye.l { left: 34px; } .bunny .eye.r { right: 34px; }
.bunny .eye::after {
  content: ""; position: absolute; width: 12px; height: 5px; left: -2px; top: -5px;
  border-bottom: 2.5px solid #B07A8F; border-radius: 50%;
}
.bunny .blush { position: absolute; top: 34px; width: 16px; height: 8px; background: #FFDCE9; border-radius: 50%; }
.bunny .blush.l { left: 20px; } .bunny .blush.r { right: 20px; }
.bunny .nose {
  position: absolute; top: 36px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 8px; background: #F7A8C2; border-radius: 50% 50% 60% 60%;
}
.bunny .mouth {
  position: absolute; top: 46px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 6px; border-bottom: 2.5px solid #B07A8F; border-radius: 50%;
}
.bunny .paw {
  position: absolute; top: 102px; width: 34px; height: 26px; background: #fff; border-radius: 50%;
  box-shadow: 0 5px 12px rgba(226, 150, 180, .22); display: grid; place-items: center; font-size: 13px;
}
.bunny .paw.l { left: 24px; transform: rotate(-14deg); }
.bunny .paw.r { right: 24px; transform: rotate(14deg); }
.bunny .carrot { position: absolute; right: -4px; bottom: 12px; font-size: 26px; transform: rotate(18deg); }
.bunny .heart { position: absolute; left: -10px; top: 10px; font-size: 20px; }

h1 {
  font-size: 33px; font-weight: 900; letter-spacing: 3px; color: var(--pink-deep);
  margin-top: 14px;
}
.sub { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.sub b { color: var(--pink); font-weight: 800; }

.pill-row { margin-top: 22px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 800; box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.pill:active { transform: scale(.95); }
.pill.main { background: var(--pink-grad); color: #fff; }
.pill.ghost { background: #fff; color: var(--pink-deep); border: 2px solid #FFE0EC; }

/* ---------- 通用区块 ---------- */
.section { margin-top: 30px; animation: fadeUp .6s ease both; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 0 4px; }
.section-head h3 { font-size: 17px; font-weight: 900; color: var(--ink-strong); }
.section-head h3 span { font-size: 12px; font-weight: 700; color: #D9A9BC; margin-left: 6px; }
.section-head .more { font-size: 12px; font-weight: 800; color: var(--pink); background: #FFF0F6; padding: 5px 12px; border-radius: 999px; }

/* ---------- 宠爱菜单 ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.menu-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border-radius: 24px; padding: 16px 18px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(226, 150, 180, .28); }
.menu-item .mi-ic {
  width: 52px; height: 52px; flex: none; border-radius: 18px;
  background: #FFF0F6; display: grid; place-items: center; font-size: 26px;
}
.menu-item .mi-txt { flex: 1; }
.menu-item .mi-txt b { display: block; font-size: 15px; color: #B97C96; }
.menu-item .mi-txt small { font-size: 12px; color: #CBA0B2; margin-top: 3px; display: block; }
.menu-item .mi-arrow { font-size: 20px; color: var(--pink); font-weight: 900; }

/* ---------- 首页下半部分 ---------- */
.home-cols { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.timeline {
  background: #fff; border-radius: 30px; padding: 22px 20px 12px;
  box-shadow: var(--shadow); border: 2px solid var(--border);
  animation: fadeUp .6s ease both;
}
.timeline h3 { font-size: 16px; font-weight: 900; color: var(--ink-strong); }
.timeline h3 span { font-size: 12px; font-weight: 700; color: #D9A9BC; margin-left: 6px; }
.day {
  display: flex; align-items: center; gap: 12px; padding: 13px 0;
  border-bottom: 1px dashed #FFE4EF;
}
.day:last-child { border-bottom: none; }
.day .dot {
  width: 42px; height: 42px; flex: none; border-radius: 16px;
  background: #FFF0F6; display: grid; place-items: center; font-size: 20px;
}
.day .info { flex: 1; }
.day .info b { display: block; font-size: 14px; color: #B97C96; }
.day .info small { font-size: 11.5px; color: #CBA0B2; }
.day .st {
  font-size: 11px; font-weight: 800; color: var(--pink);
  background: #FFF0F6; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}

.love-card {
  background: linear-gradient(120deg, #FFE9F2, #FFF3F9); border: 2px solid #FFD3E4;
  border-radius: 24px; padding: 20px 22px; text-align: center;
  font-size: 14px; line-height: 1.9; color: #A96E88;
  box-shadow: var(--shadow-sm); animation: fadeUp .6s ease both;
}
.love-card .q { font-weight: 900; color: var(--pink-deep); font-size: 15px; }

/* ---------- 底部导航 ---------- */
.navbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(226, 150, 180, .18);
  border-radius: 24px 24px 0 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.navbar-inner {
  max-width: 700px; margin: 0 auto;
  display: flex; justify-content: space-around;
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 800; color: #CBA0B2; padding: 4px 12px;
  border-radius: 14px; transition: color .15s ease;
}
.nav-item .ic { font-size: 21px; }
.nav-item.active { color: var(--pink); }
.nav-item.active .ic { transform: translateY(-2px); filter: drop-shadow(0 3px 4px rgba(232, 148, 180, .45)); }

/* ---------- 动画 ---------- */
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@keyframes floatUp {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-340px) scale(1.25); opacity: 0; }
}
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ---------- 奶茶铺 ---------- */
.shop { text-align: center; }
.shop .bunny { width: 150px; height: 150px; }
.shop h1 { margin-top: 6px; }
.shop .sub { margin-top: 8px; }
.options { margin-top: 22px; text-align: left; }
.opt-group { background: #fff; border-radius: 24px; padding: 16px 16px 8px; box-shadow: var(--shadow-sm); border: 2px solid var(--border); margin-bottom: 14px; }
.opt-group h4 { font-size: 14px; font-weight: 900; color: var(--ink-strong); margin-bottom: 10px; }
.opt-group h4 small { font-weight: 700; color: #D9A9BC; font-size: 11px; margin-left: 6px; }
.opt-list { display: flex; flex-wrap: wrap; gap: 8px; }
.flavor { position: relative; flex: 1 1 calc(50% - 8px); min-width: 120px; }
.flavor input { position: absolute; opacity: 0; pointer-events: none; }
.flavor .f-box {
  display: flex; align-items: center; gap: 9px;
  background: #FFF9FC; border: 2px solid #FFE4EF; border-radius: 16px;
  padding: 11px 12px; transition: all .15s ease;
}
.flavor .f-ic { font-size: 22px; }
.flavor .f-name { font-size: 13.5px; font-weight: 800; color: #B97C96; }
.flavor input:checked + .f-box {
  background: #FFF0F6; border-color: var(--pink);
  box-shadow: 0 4px 12px rgba(232, 148, 180, .28);
}
.flavor input:checked + .f-box .f-name { color: var(--pink-deep); }
.flavor input:checked + .f-box::after {
  content: "✓"; position: absolute; top: 6px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--pink-grad);
  color: #fff; font-size: 12px; font-weight: 900; display: grid; place-items: center;
}
.order-btn {
  width: 100%; border: none; border-radius: 22px; padding: 17px;
  background: var(--pink-grad); color: #fff; font-size: 16px; font-weight: 900;
  box-shadow: 0 8px 20px rgba(232, 148, 180, .4);
  transition: transform .15s ease;
}
.order-btn:active { transform: scale(.97); }
.note { margin-top: 14px; text-align: center; font-size: 12.5px; color: #C8A0B2; line-height: 1.7; }

.overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(255, 243, 248, .82);
  backdrop-filter: blur(6px); display: none; place-items: center; padding: 24px;
}
.overlay.show { display: grid; }
.order-card {
  background: #fff; border-radius: 30px; padding: 30px 26px; text-align: center;
  box-shadow: 0 20px 50px rgba(226, 150, 180, .35); border: 3px solid var(--border);
  max-width: 380px; width: 100%; animation: pop .4s ease both;
}
.order-card .big { font-size: 62px; }
.order-card h2 { font-size: 21px; color: var(--pink-deep); margin-top: 10px; font-weight: 900; }
.order-card p { margin-top: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
.order-card .tag {
  display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 900;
  background: #FFF0F6; color: var(--pink-deep); padding: 7px 16px; border-radius: 999px;
}
.order-card .again { margin-top: 20px; }
.order-card .again button {
  border: none; border-radius: 999px; padding: 12px 30px; font-size: 14px; font-weight: 900;
  background: var(--pink-grad); color: #fff; box-shadow: var(--shadow-sm);
}

/* ---------- 聊天 ---------- */
.chat-box {
  background: #fff; border-radius: 26px; border: 2px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  height: 62vh; min-height: 380px; animation: fadeUp .5s ease both;
}
.chat-head {
  display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  background: linear-gradient(120deg, #FFF0F6, #FFE9F2); border-bottom: 2px solid #FFE4EF;
}
.chat-head .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center;
  font-size: 20px; box-shadow: var(--shadow-sm); position: relative;
}
.chat-head .avatar::after {
  content: ""; position: absolute; width: 9px; height: 9px; background: #7ED38C;
  border: 2px solid #fff; border-radius: 50%; bottom: 0; right: 0;
}
.chat-head b { font-size: 14.5px; color: #B97C96; display: block; }
.chat-head small { font-size: 11px; color: #CBA0B2; }
.chat-head .status { margin-left: auto; font-size: 11.5px; font-weight: 800; color: var(--pink); background: #fff; padding: 6px 12px; border-radius: 999px; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; }
.msg { display: flex; gap: 8px; max-width: 82%; animation: fadeUp .3s ease both; }
.msg .m-av { width: 30px; height: 30px; flex: none; border-radius: 50%; background: #FFF0F6; display: grid; place-items: center; font-size: 15px; align-self: flex-end; }
.msg .bubble { padding: 10px 14px; border-radius: 18px; font-size: 13.5px; line-height: 1.65; word-break: break-word; }
.msg.bunny { align-self: flex-start; }
.msg.bunny .bubble { background: #FFF4F9; border: 1.5px solid #FFE4EF; color: #A96E88; border-bottom-left-radius: 6px; }
.msg.me { align-self: flex-end; flex-direction: row-reverse; }
.msg.me .m-av { background: var(--pink-grad); }
.msg.me .bubble { background: var(--pink-grad); color: #fff; border-bottom-right-radius: 6px; box-shadow: 0 5px 12px rgba(232, 148, 180, .35); }
.typing { display: flex; gap: 5px; align-items: center; padding: 12px 14px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #E8B4CC; animation: typingDot 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
.chips { display: flex; gap: 8px; padding: 10px 12px 0; flex-wrap: wrap; }
.chip {
  border: 1.5px solid #FFD3E4; background: #FFF9FC; color: #C07797;
  font-size: 12px; font-weight: 800; padding: 7px 13px; border-radius: 999px;
  transition: all .15s ease;
}
.chip:active { background: #FFF0F6; transform: scale(.96); }
.chat-input { display: flex; gap: 8px; padding: 11px 12px; border-top: 2px solid #FFE4EF; background: #fff; }
.chat-input input {
  flex: 1; border: 2px solid #FFE4EF; border-radius: 999px; padding: 11px 16px;
  font-size: 13.5px; font-family: inherit; outline: none; color: #A96E88; background: #FFF9FC;
}
.chat-input input:focus { border-color: var(--pink); }
.chat-input .send {
  border: none; width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--pink-grad); color: #fff; font-size: 18px;
  box-shadow: 0 5px 12px rgba(232, 148, 180, .4);
}

/* ---------- 视频 ---------- */
.call-area {
  background: linear-gradient(160deg, #FFE9F2, #FFD9E8);
  border-radius: 28px; border: 3px solid #fff; overflow: hidden;
  box-shadow: var(--shadow); position: relative;
  aspect-ratio: 4 / 4.6; display: grid; place-items: center;
  animation: fadeUp .5s ease both;
}
.call-area .big-bunny { font-size: 110px; filter: drop-shadow(0 12px 18px rgba(200, 110, 150, .35)); animation: bob 3.4s ease-in-out infinite; }
.call-area .call-tip {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(255, 255, 255, .9); color: var(--pink-deep); font-size: 12.5px; font-weight: 900;
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.call-area .timer {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(255, 255, 255, .9); color: #B97C96; font-size: 12px; font-weight: 800;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.heart-float {
  position: absolute; font-size: 22px; pointer-events: none;
  animation: floatUp 1.6s ease-out both; z-index: 3;
}
.call-controls {
  margin-top: 18px; display: flex; justify-content: center; gap: 16px;
  background: #fff; border-radius: 26px; padding: 16px; box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}
.ctrl {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; color: #C8A0B2;
}
.ctrl .c-btn {
  width: 54px; height: 54px; border-radius: 50%; border: none;
  background: #FFF0F6; font-size: 23px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .12s ease;
}
.ctrl .c-btn:active { transform: scale(.9); }
.ctrl.hangup .c-btn { background: linear-gradient(135deg, #FF8F9E, #FF6B81); color: #fff; }
.ctrl .c-btn.on { background: var(--pink-grad); color: #fff; }

/* ---------- 桌面适配 ---------- */
@media (min-width: 700px) {
  .page { padding-top: 10px; }
  .topbar { padding: 22px 8px 18px; }
  h1 { font-size: 42px; }
  .sub { font-size: 16px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-item { flex-direction: column; text-align: center; padding: 24px 18px; }
  .menu-item .mi-ic { width: 64px; height: 64px; font-size: 32px; border-radius: 22px; }
  .menu-item .mi-arrow { transform: rotate(90deg); }
  .home-cols { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .love-card { margin-top: 0; }
  .chat-box { height: 66vh; }
  .call-area { max-width: 480px; margin: 0 auto; }
  .flavor { flex: 1 1 calc(33.33% - 8px); }
}

/* ---------- 宠爱外卖 · 点餐页 ---------- */
.banner {
  background: linear-gradient(120deg, #FFE9F2, #FFD9E8);
  border-radius: 22px; padding: 16px 18px; display: flex; align-items: center; gap: 12px;
  border: 2px solid #FFD3E4; box-shadow: var(--shadow-sm); margin-bottom: 8px;
  animation: fadeUp .5s ease both;
}
.banner .b-ic { font-size: 36px; }
.banner b { color: var(--pink-deep); font-size: 15px; display: block; }
.banner small { color: #C0809B; font-size: 12px; line-height: 1.6; display: block; margin-top: 2px; }

/* 小心心余额条 */
.hearts-bar {
  margin: 12px 0 16px;
  background: linear-gradient(135deg, #FFE3EF, #FFF7EF);
  border: 2px solid #FFD3E4;
  border-radius: 18px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--pink-deep);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.hearts-bar b { font-size: 19px; color: #E75480; }
.hearts-bar span { font-size: 12px; color: #CBA0B2; }

/* 首页见面倒计时 */
.meet-days {
  font-size: 44px;
  font-weight: 900;
  color: #E75480;
  line-height: 1.15;
  margin-top: 8px;
}
.meet-days small { font-size: 16px; font-weight: 800; color: #C0809B; }
.meet-sub { margin-top: 8px; font-size: 12px; color: #CBA0B2; font-weight: 700; }

.cat-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 900; color: var(--ink-strong);
  margin: 20px 4px 10px;
}
.cat-title::after {
  content: ""; flex: 1; height: 2px;
  background: linear-gradient(90deg, #FFE4EF, transparent); border-radius: 2px;
}

.dish {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 20px; padding: 12px 14px; margin-bottom: 10px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border);
  animation: fadeUp .5s ease both;
}
.dish .d-ic {
  width: 50px; height: 50px; flex: none; border-radius: 16px;
  background: #FFF0F6; display: grid; place-items: center; font-size: 26px;
}
.dish .d-info { flex: 1; min-width: 0; }
.dish .d-info b { font-size: 14px; color: #B97C96; display: block; }
.dish .d-info small { font-size: 11px; color: #CBA0B2; display: block; margin-top: 3px; line-height: 1.4; }
.dish .d-price { font-weight: 900; color: var(--pink); font-size: 14px; margin-top: 6px; }
.dish .d-action { flex: none; }
.d-add {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--pink-grad); color: #fff; font-size: 20px; font-weight: 900;
  box-shadow: 0 4px 10px rgba(232, 148, 180, .4); display: grid; place-items: center;
}
.stepper { display: flex; align-items: center; gap: 8px; }
.stepper button {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: #FFF0F6; color: var(--pink); font-weight: 900; font-size: 16px;
  display: grid; place-items: center;
}
.stepper .qty { font-weight: 900; color: var(--ink-strong); min-width: 20px; text-align: center; font-size: 14px; }

/* ---------- 购物车 ---------- */
.cart-fab {
  position: fixed; bottom: 88px; right: 16px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%; border: none;
  background: var(--pink-grad); font-size: 25px; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(232, 148, 180, .5);
  transition: transform .15s ease;
}
.cart-fab:active { transform: scale(.92); }
.cart-fab .badge {
  position: absolute; top: -3px; right: -3px; min-width: 22px; height: 22px;
  border-radius: 999px; background: #FF6B81; color: #fff; font-size: 12px; font-weight: 900;
  display: none; place-items: center; padding: 0 5px; border: 2px solid #fff;
}
.cart-sheet {
  position: fixed; bottom: 84px; left: 12px; right: 12px; z-index: 60;
  background: #fff; border-radius: 24px; max-height: 62vh;
  box-shadow: 0 18px 44px rgba(200, 110, 150, .38); border: 2px solid var(--border);
  display: none; flex-direction: column; overflow: hidden;
  animation: fadeUp .25s ease both;
}
.cart-sheet.open { display: flex; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 2px solid #FFE4EF;
}
.cart-head b { color: var(--ink-strong); font-size: 15px; }
.cart-head .clear {
  font-size: 12px; color: var(--pink); font-weight: 800; border: none;
  background: #FFF0F6; padding: 6px 12px; border-radius: 999px;
}
.cart-list { overflow-y: auto; padding: 4px 14px; }
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; border-bottom: 1px dashed #FFE4EF;
}
.cart-item:last-child { border-bottom: none; }
.cart-item .ci-name { flex: 1; font-size: 13.5px; font-weight: 800; color: #B97C96; }
.cart-item .ci-price { font-size: 13px; color: var(--pink); font-weight: 900; margin-right: 6px; }
.cart-empty { text-align: center; padding: 30px 0 26px; color: #CBA0B2; font-size: 13px; line-height: 1.8; }
.cart-foot { padding: 12px 14px 14px; border-top: 2px solid #FFE4EF; background: #FFFDFB; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 900; color: #B97C96; margin-bottom: 10px;
}
.cart-total .num { color: var(--pink); font-size: 17px; }
.cart-total .free { font-size: 11px; color: #CBA0B2; font-weight: 700; }
.order-submit {
  width: 100%; border: none; border-radius: 18px; padding: 14px;
  background: var(--pink-grad); color: #fff; font-size: 15px; font-weight: 900;
  box-shadow: 0 6px 16px rgba(232, 148, 180, .4);
}
@media (min-width: 700px) {
  .cart-fab { right: 24px; }
  .cart-sheet { left: auto; right: 24px; width: 400px; }
}
