:root {
    color-scheme: light;
    --bg: #fff8f2;
    --surface: rgba(255, 255, 255, .88);
    --solid: #fff;
    --text: #2b211b;
    --muted: #7b6f67;
    --line: rgba(104, 61, 30, .11);
    --brand: #f47a25;
    --brand-2: #ffad68;
    --brand-soft: #fff0e3;
    --accent: #ff8a38;
    --danger: #d34e4e;
    --user: #ed7120;
    --assistant: #fff;
    --shadow: 0 24px 80px rgba(91, 49, 18, .18);
    --radius: 28px;
    --font: Inter, "Segoe UI", Tahoma, Arial, sans-serif
}

* {
    box-sizing: border-box
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: transparent;
    overscroll-behavior: none
}

.assistant-shell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-width: 460px;
    margin-inline: auto;
    background: var(--bg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.is-hidden {
    display: none !important
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

button,
select,
textarea {
    font: inherit
}

button:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(244, 122, 37, .28);
    outline-offset: 3px
}

button:disabled {
    cursor: not-allowed
}

.welcome-screen,
.error-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    background: radial-gradient(circle at 50% 35%, var(--brand-soft), transparent 40%), var(--bg)
}

.welcome-screen h1 {
    font-size: clamp(24px, 7vw, 36px);
    max-width: 330px;
    letter-spacing: -.04em;
    margin: 18px 0 10px
}

.welcome-screen p:not(.eyebrow),
.error-screen p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--brand);
    font-weight: 800
}

.welcome-orb {
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center
}

.welcome-orb:before {
    content: "✦";
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 23px;
    background: linear-gradient(145deg, var(--brand-2), var(--brand));
    color: #fff;
    font-size: 27px;
    box-shadow: 0 18px 40px rgba(223, 104, 27, .28);
    animation: float 2.6s ease-in-out infinite
}

.welcome-orb span {
    position: absolute;
    inset: 0;
    border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
    border-radius: 50%;
    animation: ripple 2.4s infinite
}

.welcome-orb span:nth-child(2) {
    animation-delay: .8s
}

.welcome-orb span:nth-child(3) {
    animation-delay: 1.6s
}

@keyframes ripple {
    0% {
        transform: scale(.55);
        opacity: 0
    }

    30% {
        opacity: 1
    }

    100% {
        transform: scale(1.18);
        opacity: 0
    }
}

@keyframes float {
    50% {
        transform: translateY(-6px) rotate(4deg)
    }
}

.chat-panel {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    background: linear-gradient(180deg, color-mix(in srgb, var(--brand-soft) 36%, var(--bg)) 0, var(--bg) 180px)
}

.realtime-stage {
    position: absolute;
    z-index: 30;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: max(20px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    background:
        radial-gradient(circle at 50% 43%, rgba(255, 151, 76, .2), transparent 29%),
        radial-gradient(circle at 18% 12%, rgba(255, 181, 101, .13), transparent 27%),
        linear-gradient(180deg, #fffaf6 0%, #fff3e9 100%)
}

.live-topline { width: 100%; display: flex; align-items: center; justify-content: space-between }
.live-badge { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(244, 122, 37, .16); border-radius: 999px; color: var(--brand); background: rgba(255, 255, 255, .8); font-size: 11px; font-weight: 700; box-shadow: 0 6px 20px rgba(120, 64, 24, .07) }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: #44ba78; box-shadow: 0 0 0 5px rgba(68, 186, 120, .12); animation: livePulse 1.6s ease-in-out infinite }
.voice-orb { position: relative; width: 238px; height: 238px; margin-top: clamp(38px, 10vh, 78px); display: grid; place-items: center }
.orb-ring { position: absolute; inset: 8px; border: 1px solid rgba(244, 122, 37, .2); border-radius: 50%; animation: orbBreathe 3.2s ease-in-out infinite }
.orb-ring.ring-two { inset: 30px; animation-delay: -.9s }
.orb-core { position: relative; z-index: 2; width: 134px; height: 134px; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: 45%; color: #fff; background: linear-gradient(145deg, #ffb36f, #f47721); box-shadow: 0 24px 55px rgba(223, 104, 27, .3), inset 0 1px 1px rgba(255, 255, 255, .5); animation: orbFloat 3s ease-in-out infinite }
.orb-core:before { content: ""; position: absolute; inset: -8px; border-radius: inherit; background: inherit; filter: blur(19px); opacity: .2; z-index: -1 }
.orb-core i { width: 5px; height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .94); animation: voiceBar 1s ease-in-out infinite }
.orb-core i:nth-child(2),.orb-core i:nth-child(4) { height: 50px; animation-delay: -.35s }.orb-core i:nth-child(3) { height: 68px; animation-delay: -.65s }.orb-core i:nth-child(5) { animation-delay: -.15s }
.realtime-stage[data-state="thinking"] .orb-core { background: linear-gradient(145deg, #ffbf72, #ef8a44) }
.realtime-stage[data-state="speaking"] .orb-core { animation-duration: 1.4s; background: linear-gradient(145deg, #ff9c51, #df5e13) }

.live-copy { width: min(340px, 100%); margin-top: 22px; text-align: center }
.live-kicker { margin: 0 0 7px; color: var(--brand); font-size: 9px; font-weight: 800; letter-spacing: .2em }
.live-copy h2 { margin: 0; color: var(--text); font-size: 25px; letter-spacing: -.035em }
.live-transcript { min-height: 48px; margin: 12px auto 0; color: var(--muted); font-size: 13px; line-height: 1.6 }
.live-recommendations {
    flex: 0 0 auto;
    width: calc(100% + 44px);
    min-height: 0;
    margin-inline: -22px;
    overflow: hidden;
    animation: messageIn .35s ease-out
}
.live-recommendations:empty { display: none }
.live-recommendations .recommendation-group {
    margin: 0;
    padding: 54px 22px 18px;
    scroll-padding-inline: 22px
}
.live-recommendations .product-card {
    flex-basis: 158px;
    min-height: 202px;
    padding: 62px 12px 12px;
    border-radius: 20px
}
.live-recommendations .product-image { width: 92px; height: 92px; top: -42px }
.live-recommendations .product-body h3 { font-size: 14px }
.live-recommendations .reason {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}
.realtime-stage.has-products .voice-orb {
    width: 138px;
    height: 138px;
    margin-top: 18px
}
.realtime-stage.has-products .orb-core { width: 82px; height: 82px; gap: 4px }
.realtime-stage.has-products .orb-core i { width: 3px; height: 19px }
.realtime-stage.has-products .orb-core i:nth-child(2),
.realtime-stage.has-products .orb-core i:nth-child(4) { height: 31px }
.realtime-stage.has-products .orb-core i:nth-child(3) { height: 42px }
.realtime-stage.has-products .live-copy { margin-top: 8px }
.realtime-stage.has-products .live-transcript { min-height: 35px; margin-top: 6px }
.end-live-button { position: sticky; z-index: 6; bottom: max(0px, env(safe-area-inset-bottom)); flex: 0 0 50px; margin-top: 14px; min-width: 190px; height: 50px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; color: #fff; background: #1d2922; font-size: 12px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 28px rgba(23, 35, 28, .2) }
.end-icon { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 7px }

@keyframes livePulse { 50% { transform: scale(.72); opacity: .55 } }
@keyframes orbBreathe { 50% { transform: scale(1.12); opacity: .35 } }
@keyframes orbFloat { 50% { transform: translateY(-7px) rotate(2deg); border-radius: 50% } }
@keyframes voiceBar { 50% { transform: scaleY(.42); opacity: .7 } }

.app-header {
    height: 78px;
    padding: 14px 16px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(20px);
    z-index: 4
}

.shop-identity {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0
}

.logo-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 15px;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    overflow: visible
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: none
}

.logo-wrap span {
    font-weight: 800;
    color: var(--brand);
    font-size: 18px
}

.online-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 12px;
    height: 12px;
    background: #9b938e;
    border: 2px solid var(--solid);
    border-radius: 50%
}

.realtime-stage[data-state="connecting"] .online-dot { background: #f2a93b; box-shadow: 0 0 0 5px rgba(242,169,59,.16); animation: livePulse .9s ease-in-out infinite }
.realtime-stage[data-state="processing"] .online-dot,.realtime-stage[data-state="thinking"] .online-dot { background: #8c68d8; box-shadow: 0 0 0 5px rgba(140,104,216,.15); animation: livePulse 1.1s ease-in-out infinite }
.realtime-stage[data-state="listening"] .online-dot { background: #42b978; box-shadow: 0 0 0 5px rgba(66,185,120,.15) }
.realtime-stage[data-state="speaking"] .online-dot { background: var(--brand); box-shadow: 0 0 0 5px rgba(244,122,37,.16); animation: livePulse .75s ease-in-out infinite }
.realtime-stage[data-state="error"] .online-dot { background: var(--danger); box-shadow: 0 0 0 5px rgba(211,78,78,.14) }

.shop-identity h1 {
    font-size: 15px;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px
}

.shop-identity p {
    font-size: 10px;
    color: var(--muted);
    margin: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 5px
}

.icon-button,
.language-control {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: color-mix(in srgb, var(--solid) 70%, transparent);
    color: var(--text);
    display: grid;
    place-items: center
}

.icon-button {
    cursor: pointer;
    font-size: 20px
}

.language-control {
    width: 42px
}

.language-control select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    appearance: none
}

.close-button {
    font-weight: 300
}

.sun-icon {
    font-size: 18px
}

.chat-scroll {
    min-height: 0;
    overflow-y: auto;
    padding: 18px 14px 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent
}

.day-label {
    width: max-content;
    margin: 0 auto 20px;
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 10px
}

.messages {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: messageIn .35s cubic-bezier(.2, .8, .2, 1)
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98)
    }
}

.message .avatar {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    flex: none;
    font-size: 12px
}

.message .bubble {
    max-width: 84%;
    padding: 11px 13px 8px;
    background: var(--assistant);
    border: 1px solid var(--line);
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 6px 20px rgba(91, 49, 18, .06)
}

[dir=rtl] .message .bubble {
    border-radius: 18px 18px 5px 18px
}

.message.user {
    flex-direction: row-reverse
}

.message.user .avatar {
    display: none
}

.message.user .bubble {
    background: var(--user);
    color: #fff;
    border: 0;
    border-radius: 18px 18px 5px 18px
}

[dir=rtl] .message.user .bubble {
    border-radius: 18px 18px 18px 5px
}

.message-content {
    font-size: 13px;
    line-height: 1.68;
    white-space: pre-wrap;
    overflow-wrap: anywhere
}

.message time {
    display: block;
    text-align: end;
    font-size: 8px;
    opacity: .5;
    margin-top: 5px
}

.typing {
    margin: 14px 0 0 36px;
    width: 54px;
    height: 32px;
    border: 1px solid var(--line);
    background: var(--assistant);
    border-radius: 15px;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center
}

.typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted);
    animation: typing 1.1s infinite
}

.typing span:nth-child(2) {
    animation-delay: .15s
}

.typing span:nth-child(3) {
    animation-delay: .3s
}

@keyframes typing {
    50% {
        transform: translateY(-3px);
        opacity: .45
    }
}

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

.recommendation-group {
    margin: 8px -14px 4px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    padding: 58px 18px 18px;
    scrollbar-width: none
}

.recommendation-group::-webkit-scrollbar {
    display: none
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 172px;
    min-height: 220px;
    padding: 72px 14px 14px;
    background: #fff;
    border: 1px solid rgba(104, 61, 30, .06);
    border-radius: 22px;
    overflow: visible;
    box-shadow: 0 14px 35px rgba(91, 49, 18, .1);
    animation: messageIn .4s both;
    scroll-snap-align: start
}

.product-card.is-added {
    border-color: rgba(244, 122, 37, .38);
    box-shadow: 0 14px 35px rgba(244, 122, 37, .16)
}

.product-card.is-added .add-button {
    background: #227a4b;
    box-shadow: 0 8px 20px rgba(34, 122, 75, .2)
}

.product-image {
    position: absolute;
    z-index: 2;
    top: -48px;
    left: 50%;
    width: 108px;
    height: 108px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #f4f0e8;
    border: 5px solid #fff;
    box-shadow: 0 9px 22px rgba(91, 49, 18, .2)
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    border-radius: 50%
}

.image-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 26px
}

.discount-badge {
    position: absolute;
    top: 1px;
    right: -10px;
    left: auto;
    padding: 5px 8px;
    background: #ff7043;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    display: none
}

.product-body {
    padding: 0;
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center
}

.product-body h3 {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 7px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis
}

.reason {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: end;
    margin-top: auto;
    gap: 5px
}

.old-price {
    min-height: 13px;
    font-size: 10px;
    color: var(--muted)
}

.add-button {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff963f, #ff7b36);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 126, 54, .24);
    transition: transform .18s ease, box-shadow .18s ease
}

.add-button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255, 126, 54, .3) }
.add-button:active { transform: scale(.98) }

.add-button b {
    font-size: 14px;
    margin-inline-start: 3px
}

.suggestions {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 11px 14px 8px;
    scrollbar-width: none
}

.suggestions:empty {
    display: none
}

.suggestions button {
    white-space: nowrap;
    border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
    background: var(--brand-soft);
    color: var(--brand);
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(112, 61, 24, .07)
}

.composer {
    position: relative;
    padding: 8px 12px max(10px, env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(20px)
}

.input-row {
    display: grid;
    grid-template-columns: 39px 1fr 39px;
    gap: 8px;
    align-items: end
}

.text-input {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--solid);
    display: flex;
    align-items: center;
    padding: 4px 12px
}

.text-input textarea {
    resize: none;
    width: 100%;
    max-height: 104px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
    padding: 7px 0
}

.text-input textarea::placeholder {
    color: var(--muted)
}

.voice-button,
.send-button {
    position: relative;
    width: 39px;
    height: 39px;
    border: 0;
    border-radius: 13px;
    display: grid;
    place-items: center;
    cursor: pointer
}

.voice-button {
    background: var(--brand-soft);
    color: var(--brand)
}

.send-button {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 7px 18px color-mix(in srgb, var(--brand) 28%, transparent)
}

.voice-button svg,
.send-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.voice-button.recording {
    background: var(--danger);
    color: #fff
}

.voice-button.speaking {
    background: var(--brand);
    color: #fff
}

.record-ring {
    display: none;
    position: absolute;
    inset: -5px;
    border: 2px solid var(--danger);
    border-radius: 17px;
    animation: ring 1s infinite
}

.recording .record-ring,
.speaking .record-ring {
    display: block
}

.speaking .record-ring {
    border-color: var(--brand)
}

@keyframes ring {
    50% {
        transform: scale(1.12);
        opacity: .2
    }
}

.composer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 4px 0;
    color: var(--muted);
    font-size: 8px
}

.composer-meta button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    padding: 3px 11px
}

.wave-icon {
    font-size: 16px;
    vertical-align: -1px
}

.realtime-pill {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 100%;
    margin-bottom: 8px;
    background: var(--text);
    color: var(--bg);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    box-shadow: var(--shadow)
}

.realtime-pill .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #58d38c;
    box-shadow: 0 0 0 5px rgba(88, 211, 140, .15);
    animation: typing 1.2s infinite
}

.realtime-pill button {
    margin-inline-start: auto;
    background: none;
    border: 0;
    color: inherit;
    font-size: 18px;
    cursor: pointer
}

.error-mark {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: #fae9e7;
    color: var(--danger);
    font-size: 28px;
    font-weight: 700
}

.error-screen h2 {
    font-size: 21px;
    margin: 20px 0 8px
}

.error-screen button {
    margin-top: 20px;
    border: 0;
    background: var(--brand);
    color: #fff;
    padding: 11px 18px;
    border-radius: 12px;
    cursor: pointer
}

@media(min-width:700px) {
    body {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 16px;
        background: transparent
    }

    .assistant-shell {
        height: min(760px, calc(100vh - 32px));
        border: 1px solid var(--line);
        border-radius: var(--radius)
    }
}

@media(max-width:699px) {
    .assistant-shell {
        max-width: none
    }

    .app-header {
        padding-top: max(14px, env(safe-area-inset-top));
        height: calc(78px + env(safe-area-inset-top))
    }
}

@media(max-width:360px) {
    .product-card {
        flex-basis: 158px
    }

    .shop-identity h1 {
        max-width: 120px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

/* Realtime-only experience. Legacy chat controls are intentionally absent. */
.voice-panel { position: relative; width: 100%; height: 100% }
.voice-panel .realtime-stage { z-index: 1 }
.voice-panel .voice-orb { margin-top: clamp(30px, 8vh, 66px) }
.voice-actions { position: sticky; z-index: 8; bottom: 0; width: 100%; margin-top: auto; padding-top: 14px; display: flex; gap: 9px; align-items: center; justify-content: center; background: linear-gradient(180deg, transparent, #fff3e9 30%) }
.start-live-button { min-width: 220px; height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #ff963f, #f06f18); font-size: 13px; font-weight: 800; cursor: pointer; box-shadow: 0 14px 32px rgba(223,104,27,.3) }
.start-live-button:disabled { opacity: .65; cursor: wait }
.start-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 9px }
.voice-actions .end-live-button { position: static; margin: 0 }
.mute-live-button { min-width: 112px; height: 50px; padding: 0 16px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(244,122,37,.18); border-radius: 999px; color: var(--brand); background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; box-shadow: 0 10px 24px rgba(91,49,18,.1) }
.mute-live-button.is-muted { color: #fff; background: var(--danger); border-color: transparent }
.mute-icon { font-size: 11px }
.order-strip { flex: 0 0 auto; width: 100%; margin-top: 8px; display: flex; align-items: center; justify-content: space-between; color: var(--text); font-size: 11px; font-weight: 750 }
.order-strip b { min-width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brand); font-size: 11px }
.realtime-stage[data-state="idle"] .orb-core { filter: saturate(.75); opacity: .88 }
