/* Max & Val Dolls Mini App — Stage 2, scoped standalone mobile UI */
:root {
    --mv-bg: #fbf7ff;
    --mv-bg-2: #fff8fc;
    --mv-ink: #241d35;
    --mv-ink-soft: #756b8c;
    --mv-ink-faint: #9b92ad;
    --mv-card: rgba(255, 255, 255, 0.93);
    --mv-card-solid: #fff;
    --mv-line: rgba(160, 120, 255, 0.12);
    --mv-line-strong: rgba(123, 79, 232, 0.22);
    --mv-purple: #7b4fe8;
    --mv-purple-2: #a35cf2;
    --mv-pink: #ea4fa2;
    --mv-pink-2: #ff9dc7;
    --mv-blue: #5b8def;
    --mv-green: #20b26b;
    --mv-peach: #e89a24;
    --mv-red: #e64f7a;
    --mv-soft: #f2ebff;
    --mv-soft-pink: #fff0f7;
    --mv-shadow-sm: 0 10px 24px rgba(92, 63, 140, 0.09);
    --mv-shadow: 0 18px 40px rgba(92, 63, 140, 0.12);
    --mv-radius-sm: 16px;
    --mv-radius: 24px;
    --mv-radius-lg: 30px;
    --mv-nav-h: 84px;
    --mv-sat: env(safe-area-inset-top, 0px);
    --mv-sab: env(safe-area-inset-bottom, 0px);
    --mv-space-1: 4px;
    --mv-space-2: 8px;
    --mv-space-3: 12px;
    --mv-space-4: 16px;
    --mv-space-5: 20px;
    --mv-ease: cubic-bezier(.22, 1, .36, 1);
    --mv-ease-pop: cubic-bezier(.2, 1.5, .3, 1);
    --mv-dur-fast: .16s;
    --mv-dur: .28s;
    --mv-z-base: 1;
    --mv-z-sticky: 20;
    --mv-z-nav: 30;
    --mv-z-sheet: 70;
    --mv-z-toast: 90;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body.mv-mini {
    color: var(--mv-ink);
    background:
        radial-gradient(circle at 10% 5%, rgba(255, 189, 224, 0.58), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(162, 126, 255, 0.42), transparent 26%),
        linear-gradient(180deg, #fffaff 0%, var(--mv-bg) 42%, #f1eaff 100%);
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.mv-phone {
    position: relative;
    width: min(100%, 460px);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 241, 255, 0.94)),
        radial-gradient(circle at 24% 12%, rgba(233, 119, 195, 0.24), transparent 32%),
        radial-gradient(circle at 88% 32%, rgba(126, 86, 232, 0.18), transparent 28%);
}
@media (min-width: 520px) {
    body.mv-mini { padding: 24px 0; }
    .mv-phone {
        min-height: min(900px, calc(100vh - 48px));
        border: 1px solid rgba(255,255,255,.72);
        border-radius: 38px;
        box-shadow: var(--mv-shadow);
        overflow: hidden;
    }
}

.mv-orbit {
    position: fixed;
    z-index: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: rgba(126, 86, 232, 0.42);
    background: rgba(255,255,255,.46);
    border: 1px solid rgba(255,255,255,.64);
    filter: drop-shadow(0 10px 16px rgba(126,86,232,.12));
    pointer-events: none;
    animation: mv-float 5.8s ease-in-out infinite;
}
.mv-orbit--one { top: 88px; left: max(12px, calc(50% - 250px)); }
.mv-orbit--two { top: 290px; right: max(18px, calc(50% - 245px)); animation-delay: -1.6s; }
.mv-orbit--three { bottom: 118px; left: max(24px, calc(50% - 230px)); animation-delay: -3s; }
@keyframes mv-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(7deg); } }

.mv-state {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 28px;
    text-align: center;
}
.mv-state h1 { margin: 0; font-size: 1.35rem; line-height: 1.08; }
.mv-state p { margin: 0; max-width: 320px; color: var(--mv-ink-soft); line-height: 1.45; }
.mv-state small { color: var(--mv-ink-faint); font-weight: 900; }
/* Boot screen: main block vertically centred, secure line pinned to the bottom */
.mv-state--loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 100dvh;
}
.mv-boot-main {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.mv-state--loading .mv-secure-line { margin-top: auto; }
.mv-state__icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #ffe9f4);
    color: var(--mv-red);
    font-weight: 900;
    font-size: 2rem;
    box-shadow: var(--mv-shadow-sm);
}
.mv-progress-num {
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;        /* цифры не «прыгают» по ширине */
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--mv-purple);
}
.mv-progress {
    width: min(100%, 300px);
    padding: 10px 9px;          /* воздух для свечения индикатора */
}
.mv-progress__track {
    position: relative;
    height: 12px;
    border-radius: 999px;
    /* незаполненная часть: чуть темнее, тот же стиль, лёгкая внутренняя глубина */
    background: rgba(126, 86, 232, .12);
    box-shadow: inset 0 1px 2px rgba(126, 86, 232, .14);
}
.mv-progress__fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0;
    border-radius: 999px;
    /* стекло: верхний блик поверх фирменного градиента */
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 52%),
        linear-gradient(90deg, var(--mv-purple), var(--mv-pink));
    box-shadow: 0 1px 3px rgba(126, 86, 232, .28);
    /* плавность даёт JS-ramp (ease), короткий transition лишь сглаживает шаги
       и держит число синхронно с полосой */
    transition: width .2s cubic-bezier(.4, 0, .2, 1);
}
/* светящийся индикатор на конце заполнения */
.mv-progress__head {
    position: absolute;
    top: 50%; right: 0;
    width: 15px; height: 15px;
    transform: translate(50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #fff, var(--mv-pink) 56%, var(--mv-purple));
    box-shadow: 0 1px 4px rgba(126, 86, 232, .45);
    z-index: 2;
}
/* мягкое свечение, чуть выходит за круг, очень медленная пульсация — «живой» */
.mv-progress__head::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(126, 86, 232, .36), rgba(245, 138, 196, .14) 56%, transparent 74%);
    z-index: -1;
    animation: mv-head-pulse 3.4s ease-in-out infinite;
}
@keyframes mv-head-pulse {
    0%, 100% { transform: scale(.82); opacity: .55; }
    50%      { transform: scale(1.12); opacity: .85; }
}
/* микрочастицы — едва заметные точки, появляются у индикатора и быстро гаснут */
.mv-spark {
    position: absolute;
    top: 50%; left: 50%;
    width: 4px; height: 4px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    background: var(--mv-pink);
    opacity: 0;
    pointer-events: none;
}
.mv-spark--1 { animation: mv-spark-1 1.7s ease-out infinite; }
.mv-spark--2 { animation: mv-spark-2 2.2s ease-out infinite .6s; }
.mv-spark--3 { animation: mv-spark-3 2.0s ease-out infinite 1.1s; }
@keyframes mv-spark-1 {
    0%   { transform: translate(0, 0) scale(.5); opacity: 0; }
    18%  { opacity: .7; }
    100% { transform: translate(14px, -10px) scale(.2); opacity: 0; }
}
@keyframes mv-spark-2 {
    0%   { transform: translate(0, 0) scale(.5); opacity: 0; }
    18%  { opacity: .55; }
    100% { transform: translate(16px, 9px) scale(.2); opacity: 0; }
}
@keyframes mv-spark-3 {
    0%   { transform: translate(0, 0) scale(.5); opacity: 0; }
    18%  { opacity: .5; }
    100% { transform: translate(12px, 2px) scale(.2); opacity: 0; }
}
.mv-secure-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 320px;
    line-height: 1.35;
}
.mv-secure-line::before { content: "✓"; color: var(--mv-green); }
.mv-skeleton-stack { width: min(100%, 320px); display: grid; gap: 10px; margin-top: 8px; }
.mv-skeleton-stack i {
    height: 54px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255,255,255,.52), rgba(255,255,255,.95), rgba(255,255,255,.52));
    background-size: 220% 100%;
    animation: mv-shimmer 1.15s ease-in-out infinite;
}
@keyframes mv-shimmer { to { background-position: -220% 0; } }

@media (prefers-reduced-motion: reduce) {
    .mv-orbit,
    .mv-progress__head::before,
    .mv-spark,
    .mv-skeleton-stack i { animation: none; }
    .mv-progress__fill { transition: width .2s linear; }
}

.mv-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--mv-sat);
}
.mv-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(255,255,255,.7);
    backdrop-filter: blur(18px);
}
.mv-brand {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--mv-ink);
    cursor: pointer;
}
.mv-brand__mark {
    width: 38px;
    height: 30px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 6px 10px rgba(216, 79, 191, .28));
}
.mv-brand__mark svg { width: 38px; height: 30px; display: block; }
.mv-brand__text { display: flex; flex-direction: column; line-height: 1.02; text-align: left; }
.mv-brand strong { font-size: 1.04rem; font-weight: 900; letter-spacing: -.01em; }
.mv-brand em {
    font-style: normal;
    font-weight: 900;
    font-size: .96rem;
    background: linear-gradient(100deg, var(--mv-pink), var(--mv-purple-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--mv-pink);
}
.mv-icon-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--mv-purple);
    font-weight: 900;
    font-size: 1.3rem;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 8px 18px rgba(126, 86, 232, .14);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.mv-icon-btn--support { font-size: 1.16rem; }
.mv-icon-btn--nav { font-size: 1.42rem; }

.mv-preview-note {
    margin: 10px 16px 0;
    padding: 10px 12px;
    border: 1px solid rgba(126, 86, 232, 0.18);
    border-radius: 18px;
    background: rgba(255,255,255,.76);
    box-shadow: var(--mv-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mv-preview-note strong { color: var(--mv-purple); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.mv-preview-note span { color: var(--mv-ink-soft); font-size: .82rem; line-height: 1.35; }

.mv-main {
    padding: 14px 16px calc(var(--mv-nav-h) + 22px + var(--mv-sab));
}
.mv-screen { display: none; flex-direction: column; gap: 14px; }
.mv-screen.is-active { display: flex; }
/* Живой интерфейс: карточки активного экрана «оживают» по очереди (stagger) */
.mv-screen.is-active > * { animation: mv-rise-in .44s cubic-bezier(.22, .9, .25, 1) both; }
.mv-screen.is-active > *:nth-child(1) { animation-delay: .02s; }
.mv-screen.is-active > *:nth-child(2) { animation-delay: .07s; }
.mv-screen.is-active > *:nth-child(3) { animation-delay: .12s; }
.mv-screen.is-active > *:nth-child(4) { animation-delay: .17s; }
.mv-screen.is-active > *:nth-child(5) { animation-delay: .21s; }
.mv-screen.is-active > *:nth-child(6) { animation-delay: .25s; }
.mv-screen.is-active > *:nth-child(n+7) { animation-delay: .29s; }
@keyframes mv-rise-in { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Тактильный отклик на нажатие — интерфейс ощущается «живым» */
.mv-row-link, .mv-btn, .mv-icon-btn, .mv-link-btn, .mv-back-btn,
.mv-filter-row button, .mv-bottom-nav button, .mv-mini-stat[data-action] {
    transition: transform .15s cubic-bezier(.2, .9, .25, 1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.mv-row-link:active, .mv-btn:not(.mv-btn--disabled):active, .mv-icon-btn:active,
.mv-link-btn:active, .mv-back-btn:active, .mv-filter-row button:active,
.mv-bottom-nav button:active, .mv-mini-stat[data-action]:active {
    transform: scale(.955);
}
.is-tap {
    animation: mv-tap-pop .34s cubic-bezier(.2, 1.45, .3, 1);
}
@keyframes mv-tap-pop {
    0% { transform: scale(1); }
    42% { transform: scale(.95); }
    100% { transform: scale(1); }
}
.mv-burst {
    position: absolute;
    z-index: 80;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: mv-burst-fly .72s cubic-bezier(.18, .96, .28, 1) forwards;
    filter: drop-shadow(0 6px 10px rgba(126, 86, 232, .18));
    font-style: normal;
    font-size: .92rem;
}
.mv-burst--1 { animation-delay: .03s; }
.mv-burst--2 { animation-delay: .06s; }
.mv-burst--3 { animation-delay: .09s; }
.mv-burst--4 { animation-delay: .12s; }
@keyframes mv-burst-fly {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(.6) rotate(0); }
    18% { opacity: 1; }
    100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.18) rotate(18deg); }
}
.mv-screen-head, .mv-sub-head { display: flex; flex-direction: column; gap: 5px; }
.mv-screen-head h1, .mv-sub-head h1 { margin: 0; font-size: 1.58rem; line-height: 1.02; letter-spacing: 0; }
.mv-screen-head p, .mv-lead { margin: 0; color: var(--mv-ink-soft); line-height: 1.45; font-size: .93rem; }
.mv-sub-head { gap: 8px; }
.mv-back-btn {
    align-self: flex-start;
    border: 0;
    background: rgba(255,255,255,.76);
    color: var(--mv-purple);
    font-weight: 900;
    border-radius: 999px;
    padding: 8px 12px;
}

.mv-hero-card, .mv-card, .mv-profile-card, .mv-row-link, .mv-order-card, .mv-lottery-card, .mv-notice-card {
    border: 1px solid var(--mv-line);
    background: var(--mv-card);
    box-shadow: var(--mv-shadow-sm);
    backdrop-filter: blur(14px);
}
.mv-hero-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 26px;
}
.mv-hero-card::after {
    content: "✦";
    position: absolute;
    right: 18px;
    bottom: 12px;
    color: rgba(233,119,195,.28);
    font-size: 2rem;
}
.mv-hero-card__avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--mv-purple), var(--mv-pink)) center/cover no-repeat;
    box-shadow: 0 12px 24px rgba(126,86,232,.23);
}
.mv-hero-card__avatar--lg { width: 86px; height: 86px; margin: 0 auto; border-radius: 30px; }
.mv-hero-card__text { min-width: 0; }
.mv-hero-card h1 { margin: 7px 0 3px; font-size: 1.32rem; line-height: 1.08; }
.mv-hero-card p { margin: 0; color: var(--mv-ink-soft); line-height: 1.36; font-size: .9rem; }

.mv-chip, .mv-eyebrow, .mv-soon-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    font-weight: 900;
}
.mv-chip {
    gap: 5px;
    padding: 5px 10px;
    background: #fff;
    color: var(--mv-purple);
    border: 1px solid var(--mv-line);
    font-size: .72rem;
}
.mv-chip--connected::before { content: "✦"; color: var(--mv-pink); }
.mv-eyebrow {
    color: var(--mv-purple);
    font-size: .73rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.mv-soon-badge {
    padding: 4px 9px;
    background: linear-gradient(135deg, #fff, var(--mv-soft-pink));
    color: var(--mv-pink);
    border: 1px solid rgba(233,119,195,.22);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mv-quick-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mv-mini-stat {
    min-height: 104px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--mv-line);
    background: rgba(255,255,255,.78);
    box-shadow: var(--mv-shadow-sm);
    font: inherit;
    color: inherit;
    text-align: center;
}
.mv-mini-stat[data-action] { cursor: pointer; width: 100%; position: relative; }
.mv-mini-stat[data-action]::after {
    content: "›";
    position: absolute;
    top: 10px; right: 12px;
    color: var(--mv-ink-faint);
    font-weight: 900;
    opacity: .5;
}
.mv-mini-stat span { display: block; font-size: 1.35rem; margin-bottom: 7px; }
.mv-mini-stat strong { display: block; font-size: 1.42rem; line-height: 1; }
.mv-mini-stat small { display: block; margin-top: 4px; color: var(--mv-ink-soft); font-weight: 800; font-size: .78rem; }

.mv-card {
    position: relative;
    padding: 16px;
    border-radius: var(--mv-radius);
}
.mv-card--soft { background: linear-gradient(160deg, rgba(255,255,255,.88), rgba(250,243,255,.82)); }
.mv-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.mv-card__head h2, .mv-card h2 { margin: 4px 0 0; font-size: 1.06rem; line-height: 1.14; }
.mv-card p { margin: 7px 0 0; color: var(--mv-ink-soft); line-height: 1.42; font-size: .91rem; }
.mv-link-btn {
    border: 0;
    background: #fff;
    color: var(--mv-purple);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: .8rem;
    font-weight: 900;
}
.mv-card--support { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.mv-card--support-page { grid-template-columns: 1fr; }
.mv-support-list { display: grid; gap: 12px; margin-top: 12px; }
.mv-support-contact { animation: mvCardIn .42s ease both; }

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    padding: 13px 18px;
    text-decoration: none;
    font-weight: 900;
    font-size: .92rem;
    letter-spacing: -.01em;
}
.mv-btn .mv-svg { width: 19px; height: 19px; }
.mv-btn--wide { width: 100%; min-height: 54px; border-radius: 18px; font-size: .98rem; }
.mv-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #7b4fe8 0%, #a44ff0 42%, #d84fbf 100%);
    box-shadow: 0 14px 26px rgba(150, 79, 216, .32), inset 0 1px 0 rgba(255,255,255,.28);
}
.mv-btn--soft {
    color: var(--mv-purple);
    background: #fff;
    border: 1.5px solid rgba(123, 79, 232, .2);
    box-shadow: 0 6px 14px rgba(126, 86, 232, .08);
}
.mv-btn--success {
    color: #116845;
    background: #e8f8f0;
    border: 1px solid rgba(70, 174, 121, .24);
}
.mv-btn--disabled {
    color: var(--mv-ink-faint);
    background: #eee9f7;
    box-shadow: none;
    cursor: not-allowed;
}
.mv-btn--ghost {
    color: var(--mv-ink-soft);
    background: transparent;
    border: 1px solid var(--mv-line);
    box-shadow: none;
    min-height: 42px;
}
.mv-state__icon--soft {
    color: var(--mv-purple);
    background: linear-gradient(135deg, #fff, #f1ebff);
}

.mv-empty-card, .mv-api-error, .mv-skeleton-card {
    text-align: center;
    padding: 24px 18px;
    border-radius: 26px;
    border: 1px dashed var(--mv-line-strong);
    background: rgba(255,255,255,.68);
}
.mv-empty-card__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--mv-soft), var(--mv-soft-pink));
    font-size: 1.65rem;
}
.mv-empty-card h2, .mv-api-error h2 { margin: 0; font-size: 1.08rem; }
.mv-empty-card p, .mv-api-error p { margin: 7px 0 14px; color: var(--mv-ink-soft); line-height: 1.42; }
.mv-api-error { border-style: solid; border-color: rgba(219,91,112,.22); }
.mv-api-error .mv-empty-card__icon { color: var(--mv-red); }

.mv-order-card, .mv-lottery-card, .mv-notice-card {
    padding: 15px;
    border-radius: 24px;
    display: grid;
    gap: 12px;
}
.mv-order-card__top, .mv-lottery-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.mv-order-title, .mv-lottery-title { font-weight: 900; font-size: 1rem; line-height: 1.18; }
.mv-order-meta, .mv-lottery-meta { color: var(--mv-ink-soft); font-size: .82rem; margin-top: 3px; }
.mv-status {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    background: var(--mv-soft);
    color: var(--mv-purple);
}
.mv-status--paid, .mv-status--success { background: #e9f8f0; color: var(--mv-green); }
.mv-status--reserved { background: var(--mv-soft); color: var(--mv-purple); }
.mv-status--warning { background: #fff1dc; color: var(--mv-peach); }
.mv-status--cancelled { background: #f4edf2; color: var(--mv-ink-soft); }
.mv-timeline {
    display: flex;
    gap: 0;
    position: relative;
    padding: 6px 2px 2px;
}
.mv-timeline--flow {
    --mv-steps: 6;
    padding: 8px 2px 2px;
}
.mv-timeline span {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--mv-ink-faint);
    font-weight: 800;
    font-size: .64rem;
    line-height: 1.1;
    text-align: center;
}
.mv-timeline--flow span { font-size: .62rem; }
/* соединитель к следующему шагу: залит, если ЭТОТ шаг пройден (is-done) */
.mv-timeline span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: calc(50% + 15px);
    right: calc(-50% + 15px);
    height: 3px;
    border-radius: 9px;
    background: #e7ddfa;
    z-index: -1;
}
.mv-timeline--flow span:not(:last-child)::after { top: 13px; left: calc(50% + 14px); right: calc(-50% + 14px); }
.mv-timeline span.is-done:not(:last-child)::after {
    background: linear-gradient(90deg, var(--mv-purple), var(--mv-purple-2));
}
.mv-timeline i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e7ddfa;
    color: var(--mv-ink-faint);
    font-style: normal;
    font-weight: 900;
    font-size: .74rem;
}
.mv-timeline--flow i { width: 26px; height: 26px; font-size: .7rem; }
.mv-timeline i .mv-svg { width: 15px; height: 15px; stroke-width: 2.6; }
.mv-timeline span.is-done i, .mv-timeline span.is-current i {
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    border-color: transparent;
    color: #fff;
}
.mv-timeline span.is-done { color: var(--mv-ink-soft); }
.mv-timeline span.is-current { color: var(--mv-purple); font-weight: 900; }
.mv-timeline span.is-current i { box-shadow: 0 0 0 5px rgba(233, 119, 195, .18); }
.mv-action-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mv-action-row .mv-btn { min-height: 40px; padding: 9px 12px; font-size: .83rem; }

.mv-position-strip {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.mv-position-strip::-webkit-scrollbar { display: none; }
.mv-position-pill {
    flex: 0 0 auto;
    display: grid;
    gap: 1px;
    min-width: 96px;
    padding: 8px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.76);
    border: 1px solid var(--mv-line);
}
.mv-position-pill strong { color: var(--mv-purple); font-size: .86rem; }
.mv-position-pill small { color: var(--mv-ink-soft); font-size: .7rem; font-weight: 900; }
.mv-position-pill.is-paid { background: #e9f8f0; border-color: rgba(56,170,114,.18); }
.mv-position-pill.is-paid strong { color: var(--mv-green); }
.mv-position-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}
.mv-position-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--mv-line);
}
.mv-position-row > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--mv-soft);
    color: var(--mv-purple);
    font-size: .78rem;
    font-weight: 1000;
}
.mv-position-row strong { display: block; font-size: .82rem; line-height: 1.18; }
.mv-position-row small { display: block; margin-top: 2px; color: var(--mv-ink-faint); font-size: .68rem; font-weight: 900; }
.mv-position-row em { color: var(--mv-ink-soft); font-size: .76rem; font-style: normal; font-weight: 1000; white-space: nowrap; }
.mv-position-row .mv-status { padding: 4px 7px; font-size: .68rem; }

.mv-flow-note {
    padding: 11px 12px;
    border-radius: 18px;
    border: 1px solid rgba(126,86,232,.14);
    background: linear-gradient(160deg, rgba(255,255,255,.78), rgba(246,238,255,.78));
}
.mv-flow-note p {
    margin: 4px 0 0;
    color: var(--mv-ink-soft);
    font-size: .82rem;
    line-height: 1.35;
}
.mv-review-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border-radius: 22px;
    border: 1px solid rgba(233,119,195,.2);
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,234,247,.9));
}
.mv-review-card > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--mv-shadow-sm);
}
.mv-review-card strong { display: block; font-size: .92rem; }
.mv-review-card p { margin: 3px 0 10px; color: var(--mv-ink-soft); font-size: .8rem; line-height: 1.36; }
.mv-review-card .mv-btn { grid-column: 1 / -1; min-height: 40px; }

.mv-feed { display: grid; gap: 9px; }
.mv-notice-card {
    grid-template-columns: 38px 1fr auto;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
}
button.mv-notice-card {
    display: grid;
    width: 100%;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .15s cubic-bezier(.2, .9, .25, 1), border-color .2s ease;
}
button.mv-notice-card:active { transform: scale(.972); }
.mv-notice-card__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--mv-soft);
}
.mv-notice-card strong { display: block; font-size: .9rem; }
.mv-notice-card p { margin: 2px 0 0; color: var(--mv-ink-soft); font-size: .8rem; line-height: 1.28; }
.mv-notice-card time { color: var(--mv-ink-faint); font-size: .72rem; font-weight: 800; white-space: nowrap; }
.mv-notice-card.is-unread { border-color: rgba(233,119,195,.28); }
.mv-notice-card.is-unread strong::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-radius: 50%;
    background: var(--mv-pink);
}

.mv-filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.mv-filter-row::-webkit-scrollbar { display: none; }
.mv-filter-row button {
    flex: 0 0 auto;
    border: 1px solid var(--mv-line);
    background: rgba(255,255,255,.72);
    color: var(--mv-ink-soft);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .8rem;
    font-weight: 900;
}
.mv-filter-row button.is-active { color: #fff; background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink)); border-color: transparent; }

.mv-profile-card {
    text-align: center;
    padding: 20px 16px;
    border-radius: 30px;
}
.mv-profile-card h1 { margin: 10px 0 2px; font-size: 1.28rem; }
.mv-profile-card p { margin: 0 0 9px; color: var(--mv-purple); font-weight: 900; }
.mv-profile-card small { display: block; margin-top: 8px; color: var(--mv-ink-faint); font-weight: 800; }
.mv-row-link {
    width: 100%;
    display: grid;
    grid-template-columns: 42px 1fr auto 18px;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 22px;
    color: var(--mv-ink);
    text-align: left;
}
.mv-row-link > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--mv-soft);
}
.mv-row-link strong { font-size: .92rem; }
.mv-row-link small { color: var(--mv-ink-soft); font-weight: 800; font-size: .78rem; }
.mv-row-link em { color: var(--mv-ink-faint); font-style: normal; font-weight: 900; }

.mv-form {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--mv-line);
    border-radius: 26px;
    background: rgba(255,255,255,.76);
    box-shadow: var(--mv-shadow-sm);
}
.mv-form label, .mv-soon-panel label {
    display: grid;
    gap: 5px;
    color: var(--mv-ink-soft);
    font-size: .8rem;
    font-weight: 900;
}
.mv-form input, .mv-form textarea, .mv-form select, .mv-soon-panel input {
    width: 100%;
    border: 1px solid var(--mv-line);
    border-radius: 16px;
    background: #fff;
    color: var(--mv-ink);
    padding: 12px 13px;
    outline: none;
    resize: vertical;
}
.mv-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mv-purple) 50%), linear-gradient(135deg, var(--mv-purple) 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 34px; }
.mv-form input:focus, .mv-form textarea:focus, .mv-form select:focus { border-color: rgba(126,86,232,.48); box-shadow: 0 0 0 4px rgba(126,86,232,.1); }
.mv-form input:disabled, .mv-form textarea:disabled, .mv-form select:disabled, .mv-soon-panel input:disabled { color: var(--mv-ink-faint); background: #f7f3fb; }
.mv-form label small { color: var(--mv-ink-faint); font-weight: 800; }
.mv-segment {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.mv-segment label {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border-radius: 16px;
    border: 1px solid rgba(126, 86, 232, .16);
    background: rgba(255, 255, 255, .72);
    color: var(--mv-ink-soft);
    cursor: pointer;
    box-shadow: var(--mv-shadow-sm);
}
.mv-segment input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.mv-segment label:has(input:checked) {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    box-shadow: 0 10px 22px rgba(126, 86, 232, .24);
}
.mv-file-picker {
    display: grid;
    gap: 8px;
    color: var(--mv-ink-soft);
    font-size: .8rem;
    font-weight: 900;
}
.mv-file-picker__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}
.mv-file-btn {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(126, 86, 232, .18);
    background: rgba(255, 255, 255, .82);
    color: var(--mv-purple);
    box-shadow: var(--mv-shadow-sm);
    cursor: pointer;
}
.mv-file-btn input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.mv-file-picker small { color: var(--mv-ink-faint); font-weight: 800; line-height: 1.35; }
.mv-form .mv-checkline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 18px;
    border: 1px solid rgba(126, 86, 232, .14);
    background: rgba(126, 86, 232, .08);
    color: var(--mv-ink);
}
.mv-checkline input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--mv-purple);
}
.mv-form-status { min-height: 22px; color: var(--mv-ink-soft); font-weight: 800; font-size: .84rem; }
.mv-form-status.is-ok { color: var(--mv-green); }
.mv-form-status.is-err { color: var(--mv-red); }
.mv-form-status.is-warn { color: #b8731f; }

.mv-lottery-tickets { display: flex; flex-wrap: wrap; gap: 6px; }
.mv-ticket {
    padding: 5px 9px;
    border-radius: 10px;
    background: var(--mv-soft);
    color: var(--mv-purple);
    font-weight: 900;
    font-size: .78rem;
}
.mv-ticket.is-paid { background: #e9f8f0; color: var(--mv-green); }
.mv-ticket.is-win { background: linear-gradient(135deg, #ffe6a3, #ffbde0); color: #614326; }
.mv-proof-steps {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}
.mv-proof-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 9px;
    align-items: flex-start;
}
.mv-proof-step span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    color: #fff;
    font-size: .76rem;
    font-weight: 1000;
}
.mv-proof-step p { margin: 3px 0 0; font-size: .82rem; line-height: 1.34; }

.mv-drop-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--mv-line);
    border-radius: 22px;
    background: rgba(255,255,255,.8);
}
.mv-drop-card.is-deeplink-target {
    border-color: rgba(170, 95, 255, .55);
    box-shadow: 0 18px 40px rgba(170, 95, 255, .18), inset 0 0 0 1px rgba(255,255,255,.85);
    animation: mvTargetPulse 1.5s ease-out 1;
}
.mv-drop-card__thumb {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--mv-soft) center/cover no-repeat;
    font-size: 1.4rem;
}
.mv-drop-card strong { display: block; font-size: .94rem; line-height: 1.18; }
.mv-drop-card small { display: block; margin: 3px 0 7px; color: var(--mv-ink-soft); font-weight: 800; }
.mv-drop-card a { color: var(--mv-purple); font-weight: 900; text-decoration: none; font-size: .84rem; }

@keyframes mvTargetPulse {
    0% { transform: scale(.985); }
    45% { transform: scale(1.018); }
    100% { transform: scale(1); }
}

.mv-teaser, .mv-soon-panel, .mv-doll-day { overflow: hidden; }
.mv-teaser__spark, .mv-doll-day__silhouette {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    margin-bottom: 12px;
    background: linear-gradient(145deg, var(--mv-soft), var(--mv-soft-pink));
    color: var(--mv-purple);
    font-size: 1.8rem;
    font-weight: 900;
}
.mv-doll-day { text-align: center; }
.mv-doll-day__silhouette { width: 96px; height: 128px; margin: 8px auto 14px; border-radius: 42px 42px 30px 30px; font-size: 2.4rem; }
.mv-soon-panel { display: grid; gap: 12px; }
.mv-soon-panel h2 { margin-right: 64px; }

.mv-bottom-nav {
    --mv-nav-index: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    width: min(100%, 460px);
    height: calc(var(--mv-nav-h) + var(--mv-sab));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    padding: 8px 8px calc(8px + var(--mv-sab));
    background: rgba(255,255,255,.9);
    border-top: 1px solid rgba(255,255,255,.72);
    backdrop-filter: blur(20px);
    box-shadow: 0 -16px 32px rgba(75, 54, 136, 0.08);
}
.mv-bottom-nav::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: calc((100% - 36px) / 5);
    height: calc(100% - 16px - var(--mv-sab));
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(242,235,255,.96), rgba(255,240,247,.9));
    box-shadow: inset 0 0 0 1px rgba(126,86,232,.08), 0 10px 18px rgba(126,86,232,.1);
    transform: translateX(calc(var(--mv-nav-index) * (100% + 5px)));
    transition: transform .52s cubic-bezier(.2, 1.42, .24, 1);
    pointer-events: none;
}
.mv-bottom-nav button {
    position: relative;
    z-index: 1;
    min-width: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: var(--mv-ink-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-weight: 900;
    transition: color .22s ease, transform .22s ease;
}
.mv-bottom-nav span { font-size: 1.24rem; line-height: 1; }
.mv-bottom-nav small { font-size: .66rem; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.mv-bottom-nav button.is-active {
    color: var(--mv-purple);
    background: transparent;
    box-shadow: none;
}
.mv-bottom-nav button.is-bouncing span { animation: mv-nav-bounce .46s cubic-bezier(.2, 1.5, .36, 1); }
@keyframes mv-nav-bounce {
    0% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-4px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}

[hidden] { display: none !important; }
.is-hidden { display: none !important; }

@media (hover: hover) {
    .mv-btn:not(:disabled):hover, .mv-row-link:hover, .mv-icon-btn:hover, .mv-link-btn:hover, .mv-filter-row button:hover {
        transform: translateY(-1px);
    }
}
.mv-payment-alert {
    display: grid;
    gap: 12px;
    background: linear-gradient(150deg, rgba(255,255,255,.94), rgba(255,235,248,.86));
    overflow: hidden;
}
.mv-payment-alert::after {
    content: "💳";
    position: absolute;
    right: 18px;
    top: 16px;
    font-size: 2.2rem;
    opacity: .18;
    transform: rotate(-8deg);
}
.mv-payment-alert > strong {
    color: var(--mv-purple);
    font-size: 1.2rem;
}
.mv-payment-stack { display: grid; gap: 12px; }
.mv-payment-card { display: grid; gap: 12px; }
.mv-payment-card__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}
.mv-payment-card__top h2 { margin: 3px 0 0; font-size: 1.05rem; line-height: 1.16; }
.mv-payment-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 20px;
    background: rgba(126,86,232,.09);
}
.mv-payment-amount span,
.mv-payment-box span {
    font-size: .72rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
    color: var(--mv-purple);
}
.mv-payment-amount strong {
    font-size: 1.25rem;
    color: var(--mv-ink);
    white-space: nowrap;
}
.mv-payment-note {
    margin: -4px 0 0;
    color: var(--mv-ink-soft);
    font-size: .82rem;
    line-height: 1.38;
}
.mv-payment-items {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
}
.mv-payment-items::-webkit-scrollbar { display: none; }
.mv-payment-items span {
    flex: 0 0 auto;
    min-width: 112px;
    max-width: 160px;
    padding: 9px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    border: 1px solid var(--mv-line);
}
.mv-payment-items strong,
.mv-payment-items small { display: block; }
.mv-payment-items small {
    margin-top: 2px;
    color: var(--mv-ink-soft);
    font-size: .72rem;
    line-height: 1.25;
}
.mv-payment-box {
    display: grid;
    gap: 5px;
    padding: 12px;
    border-radius: 18px;
    border: 1px dashed var(--mv-line-strong);
    background: rgba(255,255,255,.62);
}
.mv-payment-box strong { font-size: .94rem; }
.mv-payment-box small { color: var(--mv-ink-soft); line-height: 1.36; }

.mv-modal,
.mv-action-sheet {
    position: fixed;
    z-index: var(--mv-z-sheet);
    color: var(--mv-ink);
}

.mv-modal[hidden],
.mv-action-sheet[hidden],
.mv-toast[hidden] {
    display: none !important;
}

.mv-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(36, 33, 58, .22);
    backdrop-filter: blur(10px);
}

.mv-modal__panel {
    width: min(100%, 420px);
    max-height: min(82vh, 680px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--mv-line);
    border-radius: 30px;
    background: var(--mv-card-solid);
    box-shadow: var(--mv-shadow);
    animation: mv-rise-in .28s var(--mv-ease) both;
}

.mv-action-sheet {
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    gap: 8px;
    max-height: min(76vh, 620px);
    padding: 10px;
    border: 1px solid var(--mv-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--mv-shadow);
    overflow-y: auto;
    backdrop-filter: blur(18px);
}

.mv-toast {
    position: fixed;
    left: 50%;
    bottom: calc(var(--mv-nav-h) + 22px + var(--mv-sab));
    z-index: var(--mv-z-toast);
    max-width: min(90vw, 360px);
    padding: 11px 14px;
    border: 1px solid var(--mv-line);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--mv-ink);
    box-shadow: var(--mv-shadow-sm);
    transform: translateX(-50%);
    backdrop-filter: blur(18px);
}

.mv-skeleton-line {
    position: relative;
    overflow: hidden;
    min-height: 16px;
    border-radius: 999px;
    background: rgba(126, 86, 232, .1);
}

.mv-skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.76), transparent);
    animation: mv-shimmer 1.24s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Stage 3 buyer Mini App polish */
.mv-svg,
.mv-icon-btn svg,
.mv-bottom-nav svg,
.mv-row-link svg,
.mv-search svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mv-topbar {
    grid-template-columns: 48px 1fr auto;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .72);
}

.mv-topbar__actions {
    display: inline-flex;
    justify-content: flex-end;
    gap: 8px;
}

.mv-icon-btn {
    display: inline-grid;
    place-items: center;
    color: var(--mv-purple);
}

.mv-icon-btn.is-muted {
    color: var(--mv-ink-soft);
}

.mv-icon-btn--small {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: 1rem;
    box-shadow: none;
    border: 1px solid var(--mv-line);
}

.mv-icon-btn--badge {
    position: relative;
}

.mv-icon-btn--badge i {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mv-pink);
    box-shadow: 0 0 0 3px rgba(234, 79, 162, .16);
}

.mv-main {
    padding: 14px 18px calc(var(--mv-nav-h) + 26px + var(--mv-sab));
}

.mv-hero-card--compact {
    min-height: 122px;
    cursor: pointer;
}

.mv-hero-card--compact > .mv-svg {
    flex: 0 0 auto;
    color: var(--mv-ink-faint);
    margin-left: auto;
}

.mv-hero-card--compact::after {
    display: none;
}

.mv-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 6px 2px 0;
}

.mv-section-head h2 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.1;
}

.mv-section-head .mv-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: transparent;
    padding-inline: 4px;
}

.mv-section-head .mv-link-btn .mv-svg {
    width: 16px;
    height: 16px;
}

.mv-count-badge {
    min-width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    font-size: .78rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(126, 86, 232, .18);
}

.mv-attention-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.mv-attention-card {
    position: relative;
    min-width: 0;
    min-height: 138px;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-content: start;
    gap: 4px;
    padding: 12px 11px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fdf9ff);
    color: var(--mv-ink);
    text-align: left;
    box-shadow: 0 10px 22px rgba(126, 86, 232, .1);
}

.mv-attention-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.mv-count-dot {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5fa8, #ea4fa2);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(234, 79, 162, .34);
}

.mv-attention-card strong {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 3px;
    letter-spacing: -.02em;
}

.mv-attention-card > span:not(.mv-icon-tile) {
    font-weight: 900;
    font-size: .82rem;
    line-height: 1.1;
}

.mv-attention-card small {
    min-width: 0;
    color: var(--mv-ink-soft);
    font-size: .73rem;
    font-weight: 800;
    line-height: 1.22;
}

.mv-icon-tile {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    color: var(--mv-purple);
    background: linear-gradient(155deg, #f3edff, #efe6ff 45%, #e7dcff);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.9),
        inset 0 -3px 6px rgba(126, 86, 232, .12),
        0 8px 16px rgba(126, 86, 232, .16);
}
/* мягкий верхний блик — создаёт ощущение объёма (pseudo-3D) */
.mv-icon-tile::before {
    content: "";
    position: absolute;
    inset: 3px 3px 45% 3px;
    border-radius: 13px 13px 22px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
    pointer-events: none;
}
.mv-icon-tile .mv-svg { position: relative; width: 23px; height: 23px; stroke-width: 2.1; }

.mv-icon-tile--lav { color: #7b4fe8; background: linear-gradient(155deg, #f3edff, #ece1ff 45%, #e2d3ff); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), inset 0 -3px 6px rgba(126,86,232,.14), 0 8px 16px rgba(126,86,232,.18); }
.mv-icon-tile--pink { color: #e5439a; background: linear-gradient(155deg, #ffe9f4, #ffd9ec 45%, #ffc7e2); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), inset 0 -3px 6px rgba(229,67,154,.16), 0 8px 16px rgba(234,79,162,.2); }
.mv-icon-tile--peach { color: #e08a1e; background: linear-gradient(155deg, #fff2dc, #ffe6bd 45%, #ffd89a); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), inset 0 -3px 6px rgba(224,138,30,.16), 0 8px 16px rgba(224,138,30,.2); }
.mv-icon-tile--blue { color: #4b7fe0; background: linear-gradient(155deg, #e9f1ff, #d9e7ff 45%, #c6d9ff); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), inset 0 -3px 6px rgba(75,127,224,.16), 0 8px 16px rgba(75,127,224,.2); }
.mv-icon-tile--green { color: #1aa564; background: linear-gradient(155deg, #e6faf0, #d3f4e3 45%, #bdeed3); box-shadow: inset 0 1px 1px rgba(255,255,255,.9), inset 0 -3px 6px rgba(26,165,100,.16), 0 8px 16px rgba(26,165,100,.2); }

.mv-icon-tile--club {
    color: var(--mv-pink);
}

.mv-home-orders,
.mv-orders-stack {
    display: grid;
    gap: 12px;
}

.mv-order-card--compact {
    cursor: pointer;
}

.mv-order-card--compact .mv-order-card__top {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
}

.mv-order-thumb {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--mv-purple);
    background: var(--mv-soft);
    overflow: hidden;
}

.mv-order-thumb span {
    width: 100%;
    height: 100%;
    display: block;
    background: center / cover no-repeat;
}

.mv-order-main {
    min-width: 0;
}

.mv-order-name {
    margin-top: 3px;
    color: var(--mv-ink);
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.22;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mv-order-side {
    display: grid;
    justify-items: end;
    gap: 8px;
    min-width: 86px;
}

.mv-order-side strong {
    color: var(--mv-ink-soft);
    font-size: .82rem;
    white-space: nowrap;
}

.mv-inline-copy {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px 9px 12px;
    border-radius: 17px;
    background: rgba(126, 86, 232, .07);
    color: var(--mv-ink-soft);
    font-weight: 900;
    font-size: .84rem;
}

.mv-inline-copy button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background: #fff;
    color: var(--mv-purple);
}

.mv-club-card,
.mv-delivery-card {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--mv-line);
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    color: var(--mv-ink);
    text-align: left;
    box-shadow: var(--mv-shadow-sm);
    backdrop-filter: blur(18px);
}

.mv-club-card h2,
.mv-delivery-card h2 {
    margin: 4px 0 2px;
    font-size: 1.14rem;
    line-height: 1.08;
}

.mv-club-card p,
.mv-club-card small,
.mv-delivery-card p {
    margin: 0;
    color: var(--mv-ink-soft);
    font-weight: 800;
    line-height: 1.34;
}

.mv-club-card--soon {
    grid-template-columns: minmax(0, 1fr) 52px;
}

.mv-ring {
    --mv-ring: 0;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--mv-purple);
    background:
        radial-gradient(circle at center, #fff 0 56%, transparent 57%),
        conic-gradient(var(--mv-purple) calc(var(--mv-ring) * 1%), rgba(126, 86, 232, .12) 0);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.9), var(--mv-shadow-sm);
}

.mv-ring i {
    display: block;
    font-style: normal;
    font-weight: 1000;
    font-size: 1rem;
}

.mv-ring em {
    display: block;
    margin-top: -10px;
    color: var(--mv-ink-soft);
    font-style: normal;
    font-size: .62rem;
    font-weight: 900;
}

.mv-ring--button {
    cursor: pointer;
}

.mv-delivery-card {
    grid-template-columns: 48px minmax(0, 1fr) 18px;
}

.mv-delivery-card--empty {
    grid-template-columns: 48px minmax(0, 1fr);
}

.mv-support-compact {
    grid-template-columns: 48px minmax(0, 1fr) auto;
}

.mv-support-compact h2 {
    margin: 0 0 2px;
}

.mv-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
}

.mv-search {
    min-height: 48px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--mv-line);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    color: var(--mv-ink-faint);
    box-shadow: var(--mv-shadow-sm);
}

.mv-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--mv-ink);
    background: transparent;
    font-weight: 800;
}

.mv-search input::placeholder {
    color: var(--mv-ink-faint);
}

.mv-filter-row--tabs button {
    min-height: 38px;
}

.mv-stage-list {
    display: grid;
    gap: 9px;
}

.mv-stage-card {
    width: 100%;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
    padding: 11px;
    border: 1px solid var(--mv-line);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    color: var(--mv-ink);
    text-align: left;
}

.mv-stage-card > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--mv-soft);
    color: var(--mv-purple);
    font-weight: 1000;
}

.mv-stage-card.is-done > span,
.mv-stage-card.is-current > span {
    color: #fff;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
}

.mv-stage-card strong {
    display: block;
    font-size: .9rem;
}

.mv-stage-card p {
    margin: 2px 0 0;
    color: var(--mv-ink-soft);
    font-size: .8rem;
    line-height: 1.32;
}

.mv-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 68;
    background: rgba(36, 29, 53, .24);
    backdrop-filter: blur(8px);
}

.mv-bottom-sheet {
    position: fixed;
    left: max(8px, calc((100vw - 460px) / 2 + 8px));
    right: max(8px, calc((100vw - 460px) / 2 + 8px));
    bottom: 8px;
    z-index: var(--mv-z-sheet);
    max-height: min(78vh, 660px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--mv-line);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    color: var(--mv-ink);
    box-shadow: var(--mv-shadow);
    backdrop-filter: blur(20px);
    animation: mv-sheet-in .28s var(--mv-ease) both;
}

@keyframes mv-sheet-in {
    from { transform: translateY(18px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mv-bottom-sheet__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mv-bottom-sheet__head h2 {
    margin: 2px 0 0;
    font-size: 1.14rem;
    line-height: 1.1;
}

.mv-bottom-sheet__body {
    display: grid;
    gap: 12px;
    overflow-y: auto;
    padding-bottom: max(4px, var(--mv-sab));
}

.mv-sheet-text {
    margin: 0;
    color: var(--mv-ink-soft);
    font-weight: 800;
    line-height: 1.42;
}

.mv-sheet-actions,
.mv-sheet-group {
    display: grid;
    gap: 8px;
}

.mv-sheet-action {
    min-height: 50px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid var(--mv-line);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    color: var(--mv-ink);
    text-align: left;
}

.mv-sheet-action > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--mv-purple);
    background: var(--mv-soft);
}

.mv-choice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mv-choice-grid button {
    min-height: 40px;
    border: 1px solid var(--mv-line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--mv-ink-soft);
    background: rgba(255,255,255,.78);
    font-weight: 900;
}

.mv-choice-grid button.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
}

.mv-club-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--mv-line);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,240,248,.9));
    box-shadow: var(--mv-shadow-sm);
}

.mv-club-hero h2 {
    margin: 4px 0;
    font-size: 1.1rem;
}

.mv-club-hero strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
}

.mv-club-hero p {
    margin: 6px 0 0;
    color: var(--mv-ink-soft);
    font-weight: 800;
}

.mv-privilege-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mv-privilege-card {
    min-height: 92px;
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 13px;
    border: 1px solid var(--mv-line);
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    color: var(--mv-ink);
    text-align: left;
    box-shadow: var(--mv-shadow-sm);
}

.mv-privilege-card span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--mv-purple);
    background: var(--mv-soft);
}

.mv-ranking-list,
.mv-cp-history,
.mv-level-list {
    display: grid;
    gap: 8px;
}

.mv-ranking-row,
.mv-cp-row,
.mv-level-list div {
    min-height: 44px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--mv-line);
    border-radius: 16px;
    background: rgba(255,255,255,.74);
    color: var(--mv-ink);
}

.mv-level-list div {
    grid-template-columns: minmax(0, 1fr) auto;
}

.mv-ranking-row span,
.mv-cp-row span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--mv-soft);
    color: var(--mv-purple);
    font-weight: 1000;
}

.mv-ranking-row em,
.mv-cp-row em,
.mv-level-list span {
    color: var(--mv-ink-soft);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.mv-ranking-row.is-me {
    border-color: rgba(123, 79, 232, .28);
    background: linear-gradient(135deg, rgba(242,235,255,.9), rgba(255,240,247,.86));
}

.mv-cp-row {
    width: 100%;
    border-radius: 18px;
    text-align: left;
}

.mv-toast {
    opacity: 0;
    pointer-events: none;
    text-align: center;
    font-weight: 900;
}

.mv-toast.is-visible {
    opacity: 1;
    animation: mv-toast-in .2s var(--mv-ease) both;
}

.mv-toast.is-leaving {
    animation: mv-toast-out .22s var(--mv-ease) both;
}

@keyframes mv-toast-in {
    from { transform: translate(-50%, 8px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes mv-toast-out {
    from { transform: translate(-50%, 0); opacity: 1; }
    to { transform: translate(-50%, 8px); opacity: 0; }
}

.mv-bottom-nav {
    --mv-nav-h: 84px;
    gap: 4px;
}

.mv-bottom-nav button {
    min-height: 56px;
    padding: 0;
}

.mv-bottom-nav span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    font-size: 0;
}

.mv-bottom-nav small {
    display: block;
    width: 100%;
    align-self: stretch;
    font-size: .68rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

.mv-row-link > span .mv-svg,
.mv-row-link > span svg {
    width: 21px;
    height: 21px;
}

@media (max-width: 390px) {
    .mv-main {
        padding-inline: 12px;
    }
    .mv-attention-grid {
        gap: 8px;
    }
    .mv-attention-card {
        min-height: 122px;
        padding: 10px;
        border-radius: 20px;
    }
    .mv-icon-tile {
        width: 40px;
        height: 40px;
        border-radius: 16px;
    }
    .mv-attention-card strong {
        font-size: 1.22rem;
    }
    .mv-attention-card > span:not(.mv-icon-tile) {
        display: block;
        width: 100%;
        font-size: .68rem;
        overflow-wrap: anywhere;
    }
    .mv-order-card--compact .mv-order-card__top {
        grid-template-columns: 48px minmax(0, 1fr);
    }
    .mv-order-side {
        grid-column: 2;
        grid-row: 2;
        justify-items: start;
        grid-auto-flow: column;
        justify-content: start;
        align-items: center;
        margin-top: 6px;
    }
    .mv-support-compact {
        grid-template-columns: 44px minmax(0, 1fr);
    }
    .mv-support-compact .mv-btn {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-bottom-sheet,
    .mv-toast.is-visible,
    .mv-toast.is-leaving {
        animation: none !important;
    }
}

/* =========================================================================
   REDESIGN 2026-07 — premium pastel components (matches Mini App references)
   ========================================================================= */

/* Heart accent after screen titles (references) */
.mv-screen-head h1 { display: inline-flex; align-items: center; gap: 8px; }
.mv-screen-head h1::after {
    content: "";
    width: 18px; height: 18px;
    background: currentColor;
    color: var(--mv-pink);
    -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 5.6a5 5 0 0 0-7.8-.7L12 6l-1-1.1a5 5 0 1 0-7.4 6.6L12 21l8.4-9.5a5 5 0 0 0 .4-5.9Z'/%3E%3C/svg%3E");
    mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 5.6a5 5 0 0 0-7.8-.7L12 6l-1-1.1a5 5 0 1 0-7.4 6.6L12 21l8.4-9.5a5 5 0 0 0 .4-5.9Z'/%3E%3C/svg%3E");
    opacity: .8;
}

/* Generic status pill with icon (hero labels) */
.mv-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    padding: 6px 12px 6px 9px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
}
.mv-pill .mv-svg { width: 16px; height: 16px; }
.mv-pill--pay { color: #e5439a; background: #ffe4f0; }

/* Round copy button used across cards */
.mv-copy-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    background: rgba(123, 79, 232, .09);
    color: var(--mv-purple);
    cursor: pointer;
    transition: transform .15s ease, background .2s ease;
}
.mv-copy-btn .mv-svg { width: 17px; height: 17px; }
.mv-copy-btn:active { transform: scale(.9); }

/* --- Payments hero --- */
.mv-pay-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.9);
    background: linear-gradient(155deg, #ffffff 0%, #fff2f9 55%, #ffe9f5 100%);
    border-radius: 26px;
}
.mv-pay-box {
    position: absolute;
    top: 6px;
    right: 2px;
    width: 116px;
    height: 118px;
    pointer-events: none;
    filter: drop-shadow(0 14px 18px rgba(216, 79, 168, .26));
}
.mv-pay-box svg { width: 100%; height: 100%; }
.mv-pay-hero__body { display: grid; gap: 9px; padding-right: 96px; }
.mv-pay-hero__code { display: flex; align-items: center; gap: 8px; }
.mv-pay-hero__code strong { font-size: 1.72rem; letter-spacing: -.02em; line-height: 1; }
.mv-pay-hero__lots { margin: 0; color: var(--mv-ink-soft); font-size: .88rem; font-weight: 800; }
.mv-pay-amount-box {
    width: max-content;
    display: grid;
    gap: 2px;
    padding: 10px 16px 10px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.8);
    box-shadow: inset 0 0 0 1px rgba(234, 79, 162, .1);
}
.mv-pay-amount-box span { font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: var(--mv-ink-faint); }
.mv-pay-amount-box strong { font-size: 1.42rem; letter-spacing: -.02em; }
.mv-pay-hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mv-pay-hero__actions .mv-btn { min-height: 50px; }
.mv-pay-hero__actions .mv-status { align-self: center; justify-self: center; }

/* --- Requisites card --- */
.mv-req-card { display: grid; gap: 4px; padding: 16px; }
.mv-req-card__head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 8px;
}
.mv-req-card__head .mv-icon-tile { width: 40px; height: 40px; border-radius: 13px; }
.mv-req-card__head .mv-icon-tile .mv-svg { width: 20px; height: 20px; }
.mv-req-card__head h2 { margin: 0; font-size: 1.1rem; flex: 1 1 auto; }
.mv-req-provider {
    font-style: normal;
    font-weight: 900;
    font-size: .78rem;
    color: var(--mv-ink-faint);
    text-transform: lowercase;
}
.mv-req-row {
    display: grid;
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(126, 86, 232, .08);
}
.mv-req-row:last-of-type { border-bottom: 0; }
.mv-req-row > span { color: var(--mv-ink-soft); font-size: .84rem; font-weight: 800; }
.mv-req-row__val { display: flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; }
.mv-req-row__val strong { font-size: .92rem; text-align: right; word-break: break-word; }
.mv-req-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(91, 141, 239, .08);
    color: var(--mv-ink-soft);
    font-size: .82rem;
    line-height: 1.36;
    font-weight: 700;
}
.mv-req-note .mv-svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--mv-blue); }
.mv-req-card--soon p { margin: 0; color: var(--mv-ink-soft); }

/* --- Payment history rows --- */
.mv-pay-history { display: grid; gap: 9px; }
.mv-pay-row {
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 16px;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid var(--mv-line);
    border-radius: 18px;
    background: var(--mv-card);
    color: var(--mv-ink);
    text-align: left;
    box-shadow: var(--mv-shadow-sm);
}
.mv-pay-row .mv-icon-tile { width: 40px; height: 40px; border-radius: 13px; }
.mv-pay-row .mv-icon-tile .mv-svg { width: 19px; height: 19px; }
.mv-pay-row__main { min-width: 0; }
.mv-pay-row__main strong { display: block; font-size: .96rem; }
.mv-pay-row__main small { display: block; margin-top: 1px; color: var(--mv-ink-faint); font-size: .76rem; font-weight: 800; }
.mv-pay-row__amt { display: grid; justify-items: end; gap: 4px; }
.mv-pay-row__amt em { font-style: normal; font-weight: 900; font-size: .96rem; }
.mv-pay-row__amt .mv-status { padding: 3px 8px; font-size: .68rem; }
.mv-pay-row > .mv-svg { color: var(--mv-ink-faint); }

/* Confirm sheet grid */
.mv-confirm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(126, 86, 232, .07);
}
.mv-confirm-grid div { display: grid; gap: 3px; padding: 13px 14px; text-align: center; }
.mv-confirm-grid div:first-child { border-right: 1px solid rgba(126, 86, 232, .12); }
.mv-confirm-grid span { font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: var(--mv-ink-faint); }
.mv-confirm-grid strong { font-size: 1.2rem; letter-spacing: -.01em; }
.mv-confirm-grid strong { color: var(--mv-purple); }
.mv-confirm-grid div:first-child strong { color: var(--mv-ink); }
.mv-sheet-text--sm { font-size: .84rem; }

/* Centered screen heads (order detail / status / delivery) */
.mv-screen-head--center { text-align: center; align-items: center; }
.mv-screen-head--center h1::after { display: none; }
.mv-screen-head--center h1 { font-size: 1.5rem; }
.mv-screen-head--center p { color: var(--mv-ink-soft); }

.mv-action-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mv-action-row--split .mv-btn { min-height: 50px; }

/* --- Order summary card --- */
.mv-order-summary { display: grid; gap: 14px; padding: 16px; }
.mv-order-summary__head { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.mv-order-summary__id { min-width: 0; }
.mv-order-summary__code { display: flex; align-items: center; gap: 6px; font-size: 1.34rem; font-weight: 900; letter-spacing: -.01em; }
.mv-order-summary__code .mv-copy-btn { width: 30px; height: 30px; border-radius: 9px; }
.mv-order-summary__code .mv-copy-btn .mv-svg { width: 15px; height: 15px; }
.mv-order-summary__name { margin-top: 2px; color: var(--mv-ink-soft); font-size: .84rem; font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mv-order-summary__head .mv-status { align-self: start; }
.mv-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 16px; overflow: hidden; background: rgba(126, 86, 232, .06); }
.mv-summary-grid div { display: grid; gap: 3px; padding: 12px 8px; text-align: center; }
.mv-summary-grid div + div { border-left: 1px solid rgba(126, 86, 232, .1); }
.mv-summary-grid span { font-size: .66rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: var(--mv-ink-faint); }
.mv-summary-grid strong { font-size: .98rem; }

/* --- Selected lots strip --- */
.mv-lots-strip { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.mv-lots-strip::-webkit-scrollbar { display: none; }
.mv-lot-card {
    flex: 0 0 auto;
    width: 134px;
    display: grid;
    gap: 3px;
    padding: 8px;
    border: 1px solid var(--mv-line);
    border-radius: 18px;
    background: var(--mv-card);
    text-align: left;
    color: var(--mv-ink);
    box-shadow: var(--mv-shadow-sm);
}
.mv-lot-card__img {
    width: 100%;
    height: 100px;
    border-radius: 13px;
    background: linear-gradient(150deg, #f3ecff, #ffe6f3) center/cover no-repeat;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
}
.mv-lot-card__img--ph { color: var(--mv-pink); }
.mv-lot-card__img--ph .mv-svg { width: 30px; height: 30px; }
.mv-lot-card strong { color: var(--mv-purple); font-size: .92rem; }
.mv-lot-card span { color: var(--mv-ink); font-size: .82rem; font-weight: 800; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.mv-lot-card em { color: var(--mv-pink); font-style: normal; font-weight: 900; font-size: .88rem; }

/* --- Now / next / status hero cards --- */
.mv-progress-card { display: grid; gap: 14px; }
.mv-now-card,
.mv-next-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
}
.mv-now-card { background: linear-gradient(135deg, rgba(242, 236, 255, .92), rgba(255, 240, 248, .92)); }
.mv-now-card__ava {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--mv-purple-2), var(--mv-pink));
    box-shadow: 0 10px 20px rgba(126, 86, 232, .24);
}
.mv-now-card__ava .mv-svg { width: 24px; height: 24px; }
.mv-now-card strong { font-size: .96rem; font-weight: 800; }
.mv-now-card strong b { color: var(--mv-purple); }
.mv-now-card p { margin: 3px 0 0; color: var(--mv-ink-soft); font-size: .84rem; line-height: 1.36; }
.mv-next-card {
    border: 1px solid rgba(126, 86, 232, .14);
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,238,255,.9));
    align-items: flex-start;
}
.mv-next-card strong { color: var(--mv-purple); font-size: 1rem; }
.mv-next-card p { margin: 4px 0 0; color: var(--mv-ink-soft); font-size: .85rem; line-height: 1.4; }

.mv-status-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(135deg, #efe7ff 0%, #f7ecff 45%, #ffe9f5 100%);
    border: 1px solid rgba(255,255,255,.8);
}
.mv-status-hero__ava {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    box-shadow: 0 12px 24px rgba(126, 86, 232, .3);
}
.mv-status-hero__ava .mv-svg { width: 30px; height: 30px; }
.mv-status-hero strong { font-size: 1.16rem; color: var(--mv-purple); }
.mv-status-hero p { margin: 5px 0 0; color: var(--mv-ink-soft); font-size: .88rem; line-height: 1.4; }
.mv-status-hero__spark { position: absolute; right: 16px; bottom: 12px; color: rgba(234, 79, 162, .28); }
.mv-status-hero__spark .mv-svg { width: 22px; height: 22px; }

/* --- Vertical timeline (history / status) --- */
.mv-vtimeline { display: grid; }
.mv-vt-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 2px 0 16px;
    text-align: left;
    background: transparent;
    border: 0;
    color: inherit;
}
.mv-vt-item:last-child { padding-bottom: 2px; }
.mv-vt-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 32px;
    bottom: -2px;
    width: 2.5px;
    border-radius: 4px;
    background: #e7ddfa;
}
.mv-vt-item.is-done:not(:last-child)::before { background: linear-gradient(180deg, var(--mv-purple), var(--mv-purple-2)); }
.mv-vt-dot {
    width: 34px;
    height: 34px;
    z-index: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e7ddfa;
    color: var(--mv-ink-faint);
    font-weight: 900;
    font-size: .8rem;
}
.mv-vt-dot .mv-svg { width: 17px; height: 17px; stroke-width: 2.6; }
.mv-vt-item.is-done .mv-vt-dot,
.mv-vt-item.is-current .mv-vt-dot {
    background: linear-gradient(135deg, var(--mv-purple), var(--mv-pink));
    border-color: transparent;
    color: #fff;
}
.mv-vt-item.is-current .mv-vt-dot { box-shadow: 0 0 0 5px rgba(233, 119, 195, .16); }
.mv-vt-body { padding-top: 5px; min-width: 0; }
.mv-vt-body strong { font-size: .96rem; }
.mv-vt-item.is-current .mv-vt-body strong { color: var(--mv-purple); }
.mv-vt-body p { margin: 3px 0 0; color: var(--mv-ink-soft); font-size: .82rem; line-height: 1.35; }
.mv-vt-now {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    background: var(--mv-soft);
    color: var(--mv-purple);
    font-size: .66rem;
    font-weight: 900;
    vertical-align: middle;
}
.mv-vtimeline--big .mv-vt-item { padding-bottom: 22px; }
.mv-vtimeline--big .mv-vt-body strong { font-size: 1.04rem; }

/* Інтерактивна сітка вибору лотерейних квитків (Mini App §21). */
.mv-muted { color: var(--mv-ink-soft, #8a7fa6); font-size: .86rem; }
.mv-ticket-picker { margin: 12px 0; }
.mv-ticket-picker__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.mv-ticket-picker__head span { font-size: .84rem; color: var(--mv-ink-soft, #8a7fa6); }
.mv-ticket-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 10px 0; }
.mv-ticket-cell {
    border: 1px solid var(--mv-line, #eadcff); border-radius: 12px; padding: 8px 2px;
    background: var(--mv-surface, #fff); font-size: .82rem; font-weight: 700;
    cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.mv-ticket-cell:active { transform: scale(.94); }
.mv-ticket-cell.is-selected { background: linear-gradient(135deg, #ffd9f0, #e9d5ff); border-color: #d8a7f0; box-shadow: 0 3px 10px rgba(216,79,191,.18); }
.mv-ticket-cell.is-locked { opacity: .5; cursor: default; }

/* Phase 5: buyer drop catalog, reservation hold and queue workflow. */
.mv-drop-search { width: 100%; margin-bottom: 10px; }
.mv-drop-filters {
    display: flex;
    gap: 7px;
    margin: 0 -16px 12px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.mv-drop-filters::-webkit-scrollbar { display: none; }
.mv-drop-filters button { flex: 0 0 auto; }

.mv-drop-summary {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 2px 2px 10px;
    color: var(--mv-ink-soft);
    font-size: .78rem;
}
.mv-drop-summary strong { color: #296e61; font-size: 1.18rem; }
[data-slot="lots-list"] { display: grid; gap: 9px; }

.mv-drop-card.mv-drop-card--button {
    position: relative;
    width: 100%;
    min-height: 108px;
    grid-template-columns: 84px minmax(0, 1fr) 22px;
    align-items: stretch;
    gap: 12px;
    padding: 11px;
    border-radius: 8px;
    color: var(--mv-ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .18s var(--mv-ease), border-color .18s ease, box-shadow .18s ease;
}
.mv-drop-card.mv-drop-card--button:active { transform: scale(.985); }
.mv-drop-card.mv-drop-card--button.is-deeplink-target { border-color: #8e58d9; }
.mv-drop-card__thumb {
    width: 84px;
    height: 84px;
    align-self: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #39796d;
    color: #fff;
    background-position: center;
    background-size: cover;
}
.mv-drop-card__thumb b { font-size: 1rem; letter-spacing: 0; }
.mv-drop-card__body { min-width: 0; display: grid; align-content: center; gap: 6px; }
.mv-drop-card__body > strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--mv-ink);
    font-size: .94rem;
    line-height: 1.24;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.mv-drop-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.mv-drop-card__top > small {
    overflow: hidden;
    color: var(--mv-ink-soft);
    font-size: .67rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mv-availability {
    flex: 0 0 auto;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: .61rem;
    font-style: normal;
    font-weight: 900;
}
.mv-availability.is-available { color: #176353; background: #dff4eb; }
.mv-availability.is-sold { color: #756b84; background: #ece9ef; }
.mv-availability.is-tone-warning { color: #7a5210; background: #faeed6; }
.mv-availability.is-tone-paid { color: #8c3776; background: #f7e3f0; }
.mv-availability.is-tone-lottery { color: #4a3d8f; background: #e8e4f9; }
.mv-drop-counters { display: flex; flex-wrap: wrap; gap: 4px 9px; color: var(--mv-ink-soft); }
.mv-drop-counters i { font-size: .69rem; font-style: normal; white-space: nowrap; }
.mv-drop-counters b { color: var(--mv-ink); }
.mv-mine-note { color: #8c3776; font-size: .69rem; font-weight: 900; }
.mv-drop-card__chevron { align-self: center; color: var(--mv-ink-faint); }
.mv-drop-card__chevron .mv-svg { width: 18px; height: 18px; }
.mv-load-more { margin-top: 2px; }

.mv-drop-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(84%, 360px);
    gap: 8px;
    margin: 0 -16px 16px;
    padding: 0 16px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.mv-drop-gallery::-webkit-scrollbar { display: none; }
.mv-drop-gallery__item {
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 0;
    border-radius: 8px;
    background: #f1edf4;
}
.mv-drop-gallery__item img { width: 100%; height: 100%; display: block; object-fit: contain; background: #f7f5f8; }

/* Media lifecycle: skeleton while loading, compact fallback with retry on
   failure — never the browser broken-image icon or a huge empty block. */
.is-media-loading { position: relative; }
.is-media-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg, #f1edf4 35%, #faf8fb 50%, #f1edf4 65%);
    background-size: 220% 100%;
    animation: mv-media-shimmer 1.15s ease-in-out infinite;
    pointer-events: none;
}
.is-media-loaded::after { display: none; }
@keyframes mv-media-shimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -80% 0; }
}
.mv-drop-gallery__item.is-media-broken,
.mv-position-photo.is-media-broken {
    aspect-ratio: auto;
    min-height: 0;
    max-height: 132px;
    display: grid;
    place-items: center;
    background: #f1edf4;
}
.mv-media-fallback {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 14px 12px;
    color: var(--mv-ink-soft);
    font-size: .78rem;
    text-align: center;
}
.mv-media-fallback i { font-style: normal; font-size: 1.2rem; }
.mv-media-fallback em { font-style: normal; font-weight: 700; }
.mv-media-retry {
    padding: 6px 12px;
    border: 0;
    border-radius: 999px;
    background: #e5dfeb;
    color: var(--mv-ink);
    font-size: .72rem;
    font-weight: 800;
}
.mv-drop-delivery {
    margin: 10px 0 0;
    padding: 8px 11px;
    border-radius: 8px;
    background: #f3f0f6;
    color: var(--mv-ink-soft);
    font-size: .8rem;
    line-height: 1.4;
}
/* §14.1: the «1/N» indicator over the gallery and the in-app lightbox. */
.mv-drop-media { position: relative; }
.mv-gallery-count {
    position: absolute;
    right: 8px;
    bottom: 14px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(30, 24, 40, .62);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    pointer-events: none;
}
.mv-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 18px;
    background: rgba(20, 14, 28, .93);
}
.mv-lightbox.is-open { display: grid; }
.mv-lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 72px);
    border-radius: 8px;
    object-fit: contain;
}
.mv-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
}
body.mv-lightbox-open { overflow: hidden; }

/* §14.3 Delivery Hub: shipments, required actions and recipient data. */
.mv-hub-alerts { display: grid; gap: 7px; margin-bottom: 14px; }
.mv-hub-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #f2ddae;
    border-radius: 8px;
    background: #fff7e2;
    color: #6f5318;
    font-size: .8rem;
    font-weight: 800;
    text-align: left;
}
.mv-hub-alert em { font-style: normal; }
.mv-hub-list { display: grid; gap: 9px; margin-bottom: 6px; }
.mv-hub-shipment {
    padding: 12px;
    border: 1px solid var(--mv-line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--mv-shadow-sm);
}
.mv-hub-shipment__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.mv-hub-shipment__head strong { min-width: 0; font-size: .86rem; line-height: 1.25; word-break: break-word; }
.mv-hub-shipment > small { display: block; margin-top: 4px; color: var(--mv-ink-soft); font-size: .72rem; font-weight: 700; }
.mv-hub-shipment .mv-action-row { margin-top: 10px; }
.mv-hub-recipient {
    padding: 12px;
    border: 1px solid var(--mv-line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
}
.mv-hub-recipient.is-missing { border-color: #f2ddae; background: #fffaf0; }
.mv-hub-recipient__status { font-size: .82rem; font-weight: 900; }
.mv-hub-recipient p { margin: 8px 0 0; color: var(--mv-ink-soft); font-size: .8rem; line-height: 1.45; }
.mv-hub-recipient .mv-action-row { margin-top: 10px; }

.mv-drop-cover-fallback {
    min-height: 180px;
    display: grid;
    align-content: end;
    gap: 8px;
    margin: 0 0 16px;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    background: #39796d;
}
.mv-drop-cover-fallback span { font-size: 2rem; font-weight: 1000; }
.mv-drop-cover-fallback strong { max-width: 280px; font-size: 1.18rem; line-height: 1.2; }

.mv-drop-detail-head { position: relative; padding-right: 104px; }
.mv-drop-detail-head h2,
.mv-position-head h2 { margin: 3px 0 0; font-size: 1.25rem; line-height: 1.18; letter-spacing: 0; }
.mv-drop-state {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .67rem;
    font-weight: 900;
    text-align: center;
}
.mv-drop-state.is-success { color: #176353; background: #dff4eb; }
.mv-drop-state.is-muted { color: #756b84; background: #ece9ef; }
.mv-drop-state.is-warning { color: #7a5210; background: #faeed6; }
.mv-drop-state.is-paid { color: #8c3776; background: #f7e3f0; }
.mv-drop-state.is-lottery { color: #4a3d8f; background: #e8e4f9; }
.mv-drop-description { margin: 12px 0 14px; color: var(--mv-ink-soft); font-size: .85rem; line-height: 1.46; }
.mv-drop-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 20px;
    padding: 12px 0;
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
}
.mv-drop-stats span { min-width: 0; text-align: center; border-right: 1px solid var(--mv-line); }
.mv-drop-stats span:last-child { border-right: 0; }
.mv-drop-stats b { display: block; color: var(--mv-ink); font-size: 1.06rem; }
.mv-drop-stats .is-free b { color: #227261; }
.mv-drop-stats small { display: block; overflow: hidden; margin-top: 2px; color: var(--mv-ink-soft); font-size: .61rem; text-overflow: ellipsis; }

.mv-positions-section { margin: 0 0 14px; }
.mv-section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.mv-section-title h3 { margin: 2px 0 0; font-size: 1.03rem; }
.mv-section-title > small { color: var(--mv-ink-soft); font-size: .7rem; white-space: nowrap; }
.mv-position-list { display: grid; gap: 7px; }
/* §14.2: at 320px the card is [number][flexible content]; the chevron sits
   in the corner instead of owning a column. Title clamps to 2 lines, the
   price stays on one line, chips wrap as whole chips. No horizontal scroll. */
.mv-position-row {
    position: relative;
    width: 100%;
    min-height: 70px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 26px 10px 10px;
    border: 1px solid var(--mv-line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    color: var(--mv-ink);
    text-align: left;
    box-shadow: var(--mv-shadow-sm);
}
.mv-position-row__number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #39796d;
    font-size: .8rem;
    font-weight: 900;
}
.mv-position-row__main { flex: 1 1 auto; min-width: 0; }
.mv-position-row__main strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: .84rem;
    line-height: 1.22;
    word-break: break-word;
}
.mv-position-row__main > small {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: var(--mv-ink-soft);
    font-size: .74rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mv-position-row__chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.mv-position-row__chevron {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    color: var(--mv-ink-faint);
}
.mv-position-row__chevron .mv-svg { width: 15px; height: 15px; }
.mv-position-flag { padding: 2px 5px; border-radius: 999px; font-size: .57rem; font-style: normal; font-weight: 900; }
.mv-position-flag.is-mine { color: #8c3776; background: #fae4f2; }
.mv-position-flag.is-queue { color: #6f5318; background: #fff0c9; }
.mv-position-flag.is-notify { color: #245f7b; background: #e2f2f8; }
.mv-status-pill { padding: 4px 7px; border-radius: 999px; font-size: .62rem; font-style: normal; font-weight: 900; white-space: nowrap; }
.mv-status-pill.is-success { color: #176353; background: #dff4eb; }
.mv-status-pill.is-warning { color: #755516; background: #fff0c9; }
.mv-status-pill.is-paid { color: #8c3776; background: #fae4f2; }
.mv-status-pill.is-lottery { color: #245f7b; background: #e2f2f8; }
.mv-status-pill.is-muted { color: #756b84; background: #ece9ef; }

.mv-position-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #f7f5f8;
}
.mv-position-photo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.mv-position-photo--fallback { align-content: center; gap: 8px; color: #fff; background: #39796d; }
.mv-position-photo--fallback span { font-size: 3rem; font-weight: 1000; }
.mv-position-photo--fallback b { font-size: .82rem; }
.mv-position-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.mv-position-head > div { min-width: 0; }
.mv-position-price { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 0; padding: 11px 0; border-top: 1px solid var(--mv-line); border-bottom: 1px solid var(--mv-line); }
.mv-position-price small { color: var(--mv-ink-soft); font-size: .75rem; font-weight: 800; }
.mv-position-price strong { font-size: 1.18rem; }
.mv-position-notice { margin: 0 0 12px; padding: 12px; border-left: 4px solid #7d718c; border-radius: 6px; background: #f0edf2; }
.mv-position-notice strong { display: block; font-size: .86rem; }
.mv-position-notice p { margin: 3px 0 0; color: var(--mv-ink-soft); font-size: .75rem; line-height: 1.36; }
.mv-position-notice.is-free,
.mv-position-notice.is-mine { border-color: #39796d; background: #e6f3ef; }
.mv-position-notice.is-hold,
.mv-position-notice.is-offer { border-color: #c0872b; background: #fff3d8; }
.mv-position-notice.is-queue { border-color: #4887a4; background: #e7f3f8; }
.mv-position-notice.is-change { border-color: #b36b82; background: #f8e9ee; }
.mv-position-actions { display: grid; gap: 7px; margin-bottom: 12px; }
.mv-position-actions:empty { display: none; }
.mv-btn.is-loading { opacity: .62; cursor: progress; }
.mv-inline-link {
    width: 100%;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 9px;
    align-items: center;
    margin: 5px 0 9px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
    background: transparent;
    color: var(--mv-ink);
    text-align: left;
}
.mv-inline-link > .mv-svg { width: 20px; height: 20px; color: #39796d; }
.mv-inline-link > span { min-width: 0; }
.mv-inline-link strong,
.mv-inline-link small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mv-inline-link strong { font-size: .78rem; }
.mv-inline-link small { margin-top: 2px; color: var(--mv-ink-soft); font-size: .65rem; }

@media (max-width: 390px) {
    .mv-drop-card.mv-drop-card--button { grid-template-columns: 72px minmax(0, 1fr) 16px; gap: 9px; }
    .mv-drop-card__thumb { width: 72px; height: 72px; }
    .mv-drop-card__top { align-items: flex-start; flex-direction: column; gap: 3px; }
    .mv-drop-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mv-drop-stats span:nth-child(2) { border-right: 0; }
    .mv-drop-stats span:nth-child(-n+2) { padding-bottom: 8px; border-bottom: 1px solid var(--mv-line); }
    .mv-drop-stats span:nth-child(n+3) { padding-top: 8px; }
    .mv-position-row { grid-template-columns: 34px minmax(0, 1fr) 16px; }
    .mv-position-row__number { width: 34px; height: 34px; }
    .mv-position-row > .mv-status-pill { grid-column: 2; justify-self: start; }
    .mv-position-row > i { grid-column: 3; grid-row: 1 / span 2; }
    .mv-position-head { display: grid; }
    .mv-position-head .mv-status-pill { justify-self: start; }
}
