:root {
  color: #151515;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  overflow: hidden;
  background: #d7e4f0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.phone-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone {
  width: 390px;
  height: 844px;
  max-height: calc(100vh - 48px);
  position: relative;
  background: #0b0d12;
  border-radius: 54px;
  padding: 12px;
  box-shadow:
    0 0 0 1px #1c2430,
    0 18px 50px #16324d40,
    0 40px 80px #10203333;
}

.island {
  position: absolute;
  z-index: 80;
  top: 22px;
  left: 50%;
  width: 118px;
  height: 34px;
  border-radius: 20px;
  background: #050505;
  transform: translateX(-50%);
}

.app {
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: #edf7ff;
}

.status-bar {
  position: absolute;
  z-index: 72;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  padding: 12px 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: #050505;
  pointer-events: none;
}

.status-time {
  font-size: 15px;
  font-weight: 600;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-icons svg {
  display: block;
  height: 12px;
  width: auto;
}

.lucky-ui-skin {
  --brand-blue: #1746d1;
  --brand-blue-dark: #1037ad;
  --brand-orange: #ff5b39;
  --ink: #14254a;
  --muted: #6d7f9c;
  color: var(--ink);
}

.top-region {
  position: absolute;
  z-index: 30;
  top: 54px;
  left: 0;
  right: 0;
  height: 58px;
  padding: 0 16px 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffffe0;
  border-bottom: 1px solid #cfe1f1c7;
  backdrop-filter: blur(18px);
}

.lucky-avatar,
.bubble-row.ai img {
  object-fit: cover;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px #225cad24;
}

.lucky-stage {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  overflow: visible;
  margin-bottom: 12px;
  padding: 4px 0 4px 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lucky-portrait {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  border: 0;
  background: transparent;
}

.lucky-copy {
  grid-column: 2;
  min-width: 0;
  padding: 2px 14px 8px 0;
}

.lucky-copy p {
  margin: 0 0 4px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.lucky-copy strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}

.lucky-chips {
  grid-column: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 36px 4px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-x;
}

.lucky-chips.is-dragging {
  cursor: grabbing;
}

.lucky-chips::-webkit-scrollbar {
  display: none;
}

.lucky-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 118px;
  height: 64px;
  padding: 10px 14px;
  border: 1px solid #e0e9f3;
  border-radius: 16px;
  background: #f4f8fd;
  color: #1c2d52;
  white-space: nowrap;
  user-select: none;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.lucky-chip strong {
  font-size: 14px;
  line-height: 1.2;
}

.lucky-chip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.lucky-chip:active {
  transform: scale(0.96);
}

.lucky-chip.is-active {
  background: #fff;
  box-shadow: 0 8px 18px #3560bb24;
}

.lucky-chip.is-active[data-scene="repeat"] {
  color: var(--brand-blue);
  border-color: #87a9f3;
}

.lucky-chip.is-active[data-scene="repeat"] small {
  color: #5b7cc7;
}

.lucky-chip.is-active[data-scene="recommend"] {
  color: #6d5ce7;
  border-color: #9b8afb;
}

.lucky-chip.is-active[data-scene="recommend"] small {
  color: #8b7cf6;
}

.lucky-chip.is-active[data-scene="claim"] {
  color: #e25a32;
  border-color: #ff9d7a;
}

.lucky-chip.is-active[data-scene="claim"] small {
  color: #f08a68;
}

.lucky-chip.is-active[data-scene="assistant"] {
  color: #1a9a94;
  border-color: #4ec8c0;
}

.lucky-chip.is-active[data-scene="assistant"] small {
  color: #4db8b1;
}

.header-title {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.header-title strong {
  font-size: 15px;
  line-height: 1.2;
}

.header-title span {
  color: var(--muted);
  font-size: 11px;
}

.header-icon,
.send-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #20283a;
  background: transparent;
}

.header-icon svg,
.composer-input svg {
  width: 18px;
  height: 18px;
}

.send-button svg {
  width: 24px;
  height: 24px;
}

.coupon-pill {
  border: 1px solid #ffd2c6;
  background: #fff4f0;
  color: var(--brand-orange);
  border-radius: 999px;
  height: 28px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
}

.coupon-pill.is-owned {
  border-color: #cfe0ff;
  background: #eef4ff;
  color: var(--brand-blue);
}

.content-scroll {
  position: absolute;
  inset: 112px 0 96px;
  overflow: auto;
  padding: 12px 14px 18px;
  background:
    radial-gradient(circle at 13% 17%, #ffffffeb 0 36px, #0000 37px),
    linear-gradient(#d9f1ff 0, #eaf7ff 180px, #f2f6fb 100%);
}

.scene-panel {
  margin-top: 8px;
}

.hero-card,
.miss-block {
  background: #ffffffeb;
  border: 1px solid #fffffff0;
  border-radius: 24px;
  box-shadow: 0 14px 34px #2f4d791c;
}

.scene-repeat .hero-card,
.repeat-panel {
  border-color: #87a9f3;
}

.scene-recommend .hero-card {
  border-color: #9b8afb;
}

.scene-claim .hero-card {
  border-color: #ff9d7a;
}

.scene-assistant .hero-card {
  border-color: #4ec8c0;
}

.hero-card {
  padding: 16px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.hero-kicker em {
  color: var(--brand-blue);
  font-style: normal;
  font-weight: 700;
}

.hero-greet {
  margin: 8px 0 4px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.hero-card h1 {
  margin: 6px 0 14px;
  font-size: 22px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.hero-product {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 92px;
}

.hero-product img,
.miss-card img {
  object-fit: cover;
  border-radius: 18px;
  background: #f4f8fd;
}

.hero-product img {
  width: 82px;
  height: 82px;
}

.hero-product h2 {
  margin: 0 0 4px;
  font-size: 15px;
}

.hero-product p,
.miss-card small,
.sheet-note,
.chat-card small,
.chat-card span {
  color: var(--muted);
}

.hero-product p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}

.price-row strong,
.confirm-total strong,
.chat-card b {
  color: var(--brand-orange);
  font-size: 20px;
}

.price-row del {
  color: #9aa8bb;
  font-size: 12px;
}

.price-row em,
.chat-card em {
  color: var(--brand-blue);
  background: #eaf2ff;
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.fulfillment {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 4px 12px 4px 4px;
  border: 1px solid #dbe9f5;
  border-radius: 999px;
  background: #f5fafff0;
}

.fulfillment-toggle {
  display: flex;
  flex: none;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: #e5edf8;
}

.fulfillment-toggle button,
.specs-group button {
  border: 0;
  background: transparent;
  color: #253353;
}

.fulfillment-toggle button {
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.fulfillment-toggle button.is-active {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 4px 10px #355d8214;
}

.fulfillment-copy {
  min-width: 0;
  flex: 1;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.hero-card .primary-action {
  margin-top: 14px;
}

.hero-card .offer-card,
.hero-card .coupon-ticket,
.hero-card .recommend-result {
  margin-top: 12px;
}

.hero-card .sheet-note {
  margin-top: 10px;
}

.assist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.assist-q {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #e0e9f3;
  border-radius: 14px;
  background: #f9fcfff5;
  font-size: 13px;
  font-weight: 600;
  color: #1c2d52;
}

.primary-action {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #2858e6, #123bc3);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 9px 20px #1843c73d;
}

.miss-block {
  margin-top: 12px;
  padding: 14px;
}

.miss-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.miss-title strong {
  font-size: 14px;
}

.miss-title span,
.composer-input input::placeholder {
  color: var(--muted);
  font-size: 11px;
}

.miss-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.miss-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 8px;
  text-align: left;
  border: 1px solid #e0e9f3;
  border-radius: 16px;
  background: #f9fcfff5;
}

.miss-card img {
  width: 44px;
  height: 44px;
}

.miss-card span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.miss-card b {
  font-size: 12px;
}

.miss-card small {
  font-size: 10px;
}

.miss-card em {
  color: var(--brand-orange);
  font-style: normal;
  font-weight: 700;
}

.composer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 88px;
  padding: 8px 12px 10px;
  display: grid;
  gap: 8px;
  align-items: center;
  background: linear-gradient(#f6faffe6, #fffffffa);
  border-top: 1px solid #d5e1eecc;
  backdrop-filter: blur(16px);
}

.composer-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.composer.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.composer-input {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 8px 0 12px;
  border: 1px solid #d3e0eff2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 16px #30517514;
}

.composer-input input {
  width: 100%;
  height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.send-button {
  color: #3a4a68;
  background: transparent;
  box-shadow: none;
}

.keyboard-button {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3a4a68;
  display: grid;
  place-items: center;
}

.keyboard-button svg {
  width: 22px;
  height: 22px;
}

.chat-scroll {
  padding-top: 8px;
}

.chat-time {
  text-align: center;
  color: var(--muted);
  margin: 6px 0 12px;
  font-size: 11px;
}

.bubble-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.bubble-row.user {
  justify-content: flex-end;
}

.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fffffff0;
  border: 1px solid #dee9f4eb;
}

.bubble-row.user .bubble {
  background: #1746d1;
  border-color: #1746d1;
  color: #fff;
}

.bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.chat-card {
  margin-top: 8px;
  padding: 10px;
  border-radius: 14px;
  background: #f7fbff;
}

.chat-card strong,
.chat-card small,
.chat-card span,
.chat-card div {
  display: block;
}

.chat-card strong {
  margin: 4px 0 2px;
  font-size: 14px;
}

.chat-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.chat-card button {
  border: 0;
  border-radius: 10px;
  background: #1746d1;
  color: #fff;
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
}

.sheet-layer {
  position: absolute;
  inset: 0;
  z-index: 40;
}

.sheet-mask {
  width: 100%;
  height: 100%;
  border: 0;
  background: #13244857;
}

.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 78%;
  overflow: auto;
  padding: 8px 16px 20px;
  border-radius: 24px 24px 0 0;
  background: #fff;
}

.sheet.sku-sheet {
  max-height: 86%;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sku-handle {
  width: 36px;
  height: 4px;
  margin: 8px auto 4px;
  border-radius: 99px;
  background: #d8dee8;
}

.sku-scroll {
  flex: 1;
  overflow: auto;
  padding: 4px 16px 12px;
}

.sku-store {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 12px;
}

.sku-store p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px;
}

.sku-store em {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: #2f6bff;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.sku-store b {
  font-size: 13px;
}

.sku-store span {
  color: var(--muted);
  font-size: 11px;
}

.sku-eta {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 6px 8px;
  border: 1px solid #e6edf6;
  border-radius: 8px;
  text-align: right;
}

.sku-eta small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.sku-eta strong {
  color: #2f6bff;
  font-size: 16px;
}

.sku-product {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0 14px;
}

.sku-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  background: #f4f8fd;
}

.sku-product b {
  display: block;
  font-size: 15px;
}

.sku-product p {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 0;
}

.sku-product p span {
  color: #e24b3a;
  font-size: 16px;
  font-weight: 700;
}

.sku-product del {
  color: #b7c0cc;
  font-size: 12px;
}

.sku-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sku-qty button {
  width: 22px;
  height: 22px;
  border: 1px solid #d7deea;
  border-radius: 50%;
  background: #fff;
  color: #6b7789;
  font-size: 16px;
  line-height: 1;
}

.sku-qty button:disabled {
  opacity: 0.35;
}

.sku-qty em {
  min-width: 12px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}

.sku-taste-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sku-taste-head strong {
  font-size: 15px;
}

.sku-taste-head span {
  color: #8a94a6;
  font-size: 12px;
}

.sku-group {
  margin-bottom: 12px;
}

.sku-group label {
  display: block;
  margin-bottom: 8px;
  color: #5b6573;
  font-size: 13px;
}

.sku-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sku-chip {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #eceff4;
  border-radius: 8px;
  background: #f5f6f8;
  color: #222;
  font-size: 13px;
}

.sku-chip.is-selected {
  border-color: #8eb6ff;
  background: #e9f1ff;
  color: #1c4fd8;
  font-weight: 700;
}

.sku-chip small {
  margin-left: 4px;
  font-size: 11px;
}

.sku-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a94a6;
  font-size: 12px;
}

.sku-more i {
  font-style: normal;
  color: #5b8def;
}

.sku-tip {
  margin: 4px 0 0;
  color: #c47a32;
  font-size: 11px;
}

.sku-bar {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
  padding: 10px 16px 16px;
  background: #fff;
}

.sku-cart,
.sku-submit {
  min-height: 48px;
  border: 0;
  border-radius: 24px;
  font-weight: 700;
}

.sku-cart {
  background: #f3e6c8;
  color: #6a4a1a;
  font-size: 14px;
}

.sku-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: #ff7a1a;
  color: #fff;
}

.sku-submit strong {
  font-size: 15px;
}

.sku-submit small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.92;
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.sheet-note {
  margin: 0 0 12px;
  font-size: 12px;
}

.confirm-row,
.confirm-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.confirm-row.is-action {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: transparent;
  text-align: left;
}

.confirm-row span,
.confirm-total span {
  color: var(--muted);
  font-size: 13px;
}

.confirm-row strong {
  max-width: 70%;
  text-align: right;
  font-size: 13px;
}

.confirm-total {
  border-bottom: 0;
  margin-bottom: 8px;
}

.coupon-ticket {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 88px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #f0d4bd;
  border-radius: 16px;
  background: #fff8f1;
}

.coupon-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--brand-orange);
}

.coupon-value strong {
  font-size: 27px;
  line-height: 1;
}

.coupon-value span {
  margin-top: 4px;
  font-size: 10px;
}

.coupon-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.coupon-copy b {
  font-size: 13px;
}

.coupon-copy span {
  color: #8b6e5c;
  margin-top: 5px;
  font-size: 10px;
}

.coupon-ticket > button {
  color: #fff;
  background: var(--brand-orange);
  border: 0;
  border-radius: 16px;
  min-height: 32px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.coupon-ticket em {
  justify-self: center;
  color: var(--brand-orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.coupon-ticket em.is-using {
  color: var(--brand-blue);
  background: #eef4ff;
  border-radius: 12px;
  padding: 6px 8px;
  white-space: nowrap;
}

.coupon-ticket + .coupon-ticket {
  margin-top: 10px;
}

.coupon-state-note {
  display: flex;
  flex-direction: column;
  margin-top: 13px;
  padding: 14px;
  border: 1px solid #e1e9f3;
  border-radius: 16px;
  background: #fafbfc;
}

.coupon-state-note strong {
  font-size: 13px;
}

.coupon-state-note span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
}

.owned-coupon-summary {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #f0d4bd;
  border-radius: 16px;
  background: #fff8f1;
}

.owned-coupon-summary > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  padding: 10px 13px;
  border-bottom: 1px dashed #efd4bf;
}

.owned-coupon-summary > div:last-child {
  border-bottom: 0;
}

.owned-coupon-summary strong {
  font-size: 12px;
}

.owned-coupon-summary span {
  color: #8b6e5c;
  margin-top: 4px;
  font-size: 10px;
}

.coupon-link,
.all-questions {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 8px 0 4px auto;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 700;
}

.coupon-link svg,
.all-questions svg,
.recommend-options svg,
.faq-list svg {
  width: 14px;
  height: 14px;
}

.deal-product {
  display: grid;
  grid-template-columns: 74px 1fr 60px;
  align-items: center;
  gap: 9px;
  min-height: 94px;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid #e1e9f3;
  border-radius: 16px;
}

.deal-product img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}

.deal-product strong {
  font-size: 12px;
}

.deal-product span {
  color: var(--muted);
  font-size: 11px;
}

.deal-product > button {
  color: #fff;
  background: var(--brand-blue);
  border: 0;
  border-radius: 17px;
  min-height: 34px;
  font-size: 11px;
  font-weight: 700;
}

.benefit-note {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.faq-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 11px;
  text-align: left;
  border: 1px solid #e1e9f3;
  border-radius: 14px;
  background: #fafbfc;
  color: var(--ink);
}

.faq-list strong {
  flex: 1;
  font-size: 12px;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  color: var(--brand-blue);
  background: #eaf2ff;
  font-size: 14px;
  font-weight: 800;
}

.recommend-selection-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 11px;
  background: #f2f4f8;
  color: #4f5b73;
  font-size: 12px;
}

.recommend-selection-summary button {
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.recommend-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #e0e9f3;
  border-radius: 16px;
  background: #f9fcfff5;
}

.recommend-result img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
}

.recommend-result span,
.recommend-result em {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.recommend-result em {
  margin-top: 4px;
  color: var(--brand-blue);
  font-weight: 700;
}

.recommend-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recommend-options > button {
  display: grid;
  grid-template-columns: 72px 1fr 18px;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 12px 14px;
  text-align: left;
  border: 1px solid #e1e9f3;
  border-radius: 16px;
  background: #fafbfc;
  color: var(--ink);
}

.recommend-options > button.is-selected,
.recommend-options > button:active {
  border-color: #9b8afb;
  background: #f4f1ff;
}

.recommend-options strong {
  font-size: 15px;
}

.recommend-options span {
  color: var(--muted);
  font-size: 11px;
}

.recommend-helper {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.dual-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  margin-top: 12px;
}

.dual-actions .primary-action {
  margin-top: 0;
}

.secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #dce1ee;
  border-radius: 14px;
  background: #fff;
  color: #566077;
  font-size: 14px;
  font-weight: 700;
}

.relax-conditions {
  width: 100%;
  min-height: 34px;
  margin-top: 5px;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 700;
}

.specs-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.specs-group span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.specs-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specs-group button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #e0e9f3;
  border-radius: 12px;
  background: #f9fcfff5;
  font-size: 12px;
}

.specs-group button.is-selected {
  border-color: #87a9f3;
  background: #eef4ff;
  color: var(--brand-blue);
  font-weight: 700;
}

.specs-group small {
  margin-left: 4px;
  color: var(--brand-orange);
}

@media (max-width: 430px) {
  .phone-stage {
    padding: 0;
  }

  .phone {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .island {
    display: none;
  }

  .app {
    border-radius: 0;
  }
}
