:root {
    --live-primary: #003d9b;
    --live-primary-bright: #0052cc;
    --live-primary-fixed: #dae2ff;
    --live-secondary: #4648d4;
    --live-secondary-container: #6063ee;
    --live-background: #faf8ff;
    --live-surface: #faf8ff;
    --live-surface-gray: #f8fafc;
    --live-surface-lowest: #ffffff;
    --live-surface-low: #f3f3fd;
    --live-surface-container: #ededf8;
    --live-surface-high: #e7e7f2;
    --live-surface-highest: #e1e2ec;
    --live-on-surface: #191b23;
    --live-on-variant: #434654;
    --live-outline: #737685;
    --live-outline-variant: #c3c6d6;
    --live-urgency: #ef4444;
    --live-success: #22c55e;
    --live-gold: #f59e0b;
    --live-silver: #94a3b8;
    --live-bronze: #cd7f32;
    --live-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --live-body: "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

body.ldm-live-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--live-surface);
    color: var(--live-on-surface);
    font-family: var(--live-body);
    -webkit-tap-highlight-color: transparent;
}

.ldm-live-page a {
    color: inherit;
    text-decoration: none;
}

.ldm-live-page img {
    display: block;
    max-width: 100%;
}

.material-symbols-outlined {
    display: inline-block;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    line-height: 1;
    vertical-align: middle;
}

.live-alert {
    position: sticky;
    top: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 40px;
    background: var(--live-urgency);
    color: #fff;
    padding: 8px 32px;
}

.live-alert strong {
    font-family: var(--live-display);
    font-size: 14px;
    font-weight: 800;
}

.live-alert a {
    border-radius: 999px;
    background: #fff;
    color: var(--live-urgency);
    font-size: 14px;
    font-weight: 800;
    padding: 5px 16px;
}

.live-nav {
    position: sticky;
    top: 40px;
    z-index: 1050;
    border-bottom: 1px solid rgba(195, 198, 214, 0.3);
    background: rgba(250, 248, 255, 0.86);
    backdrop-filter: blur(20px);
}

.live-nav__inner,
.live-main,
.live-footer > div,
.live-footer > p {
    width: min(100%, 1280px);
    margin-inline: auto;
}

.live-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 32px;
}

.live-brand {
    color: var(--live-primary);
    font-family: var(--live-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.live-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.live-nav__links a {
    border-bottom: 2px solid transparent;
    color: var(--live-on-variant);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 0;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.live-nav__links a:hover,
.live-nav__links a.is-active {
    border-bottom-color: var(--live-primary);
    color: var(--live-primary);
}

.live-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(195, 198, 214, 0.2);
    border-radius: 999px;
    background: var(--live-surface-low);
    padding: 8px 14px;
}

.live-search span {
    color: var(--live-outline);
}

.live-search input {
    width: 190px;
    border: 0;
    background: transparent;
    color: var(--live-on-surface);
    font-size: 14px;
    outline: 0;
}

.live-icon-btn {
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--live-on-variant);
    transition: background 0.2s ease, color 0.2s ease;
}

.live-icon-btn:hover {
    background: var(--live-surface-low);
    color: var(--live-primary);
}

.live-icon-btn i {
    position: absolute;
    right: 4px;
    top: 4px;
    display: flex;
    min-width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--live-urgency);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.live-main {
    padding: 32px;
}

.live-workspace {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(340px, 4fr);
    gap: 24px;
}

.live-primary,
.live-side-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 24px;
}

.live-video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 12px 36px rgba(25, 27, 35, 0.12);
    aspect-ratio: 16 / 9;
}

.live-video-card::before {
    display: none;
}

.live-video-card > img,
.live-video-card .video-js,
.live-video-card .live-video-player,
.live-video-card .vjs-tech {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.live-video-card > img,
.live-video-card .vjs-tech {
    object-fit: cover;
}

.live-video-card .video-js {
    background: #000;
    font-family: var(--live-body);
}

.live-video-card .vjs-poster img {
    object-fit: cover;
}

.live-video-card .vjs-control-bar {
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
    padding-inline: 8px;
}

.live-video-card .vjs-big-play-button {
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.live-video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 48%, rgba(0, 0, 0, 0.18));
    pointer-events: none;
    padding: 12px;
}

.live-video-card__top,
.live-video-card__controls,
.live-video-card__controls > div {
    display: flex;
    align-items: center;
}

.live-video-card__top button,
.live-video-card__top a,
.live-mobile-product {
    pointer-events: auto;
}

.live-video-card__top {
    justify-content: space-between;
    gap: 12px;
}

.live-pill,
.live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
    padding: 7px 12px;
}

.live-pill {
    background: var(--live-urgency);
    text-transform: uppercase;
}

.live-pill i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    animation: livePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: #fff;
}

.live-viewers {
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.live-mobile-close,
.live-mobile-product {
    display: none;
}

.live-video-card__controls {
    justify-content: space-between;
    color: #fff;
}

.live-video-card__controls > div {
    gap: 16px;
}

.live-video-card__controls button {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    transition: transform 0.2s ease;
}

.live-video-card__controls button:hover {
    transform: scale(1.1);
}

.live-progress {
    display: block;
    width: 128px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.live-progress i {
    display: block;
    width: 72%;
    height: 100%;
    background: var(--live-primary-fixed);
}

.live-video-info {
    display: grid;
    gap: 12px;
}

.live-video-info h1 {
    margin: 0;
    font-family: var(--live-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.live-host {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-host img {
    width: 40px;
    height: 40px;
    border: 2px solid var(--live-primary-fixed);
    border-radius: 999px;
    object-fit: cover;
}

.live-host strong {
    display: block;
    font-size: 14px;
}

.live-host strong span {
    color: var(--live-primary);
}

.live-host small {
    color: var(--live-on-variant);
    font-size: 12px;
}

.live-follow {
    border: 0;
    border-radius: 999px;
    background: var(--live-primary);
    color: #fff;
    font-weight: 800;
    margin-left: auto;
    padding: 9px 28px;
}

.live-current-product,
.live-chat-card {
    border: 1px solid rgba(195, 198, 214, 0.3);
    border-radius: 12px;
    background: var(--live-surface-lowest);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.live-current-product {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.live-current-product__intro {
    display: flex;
    gap: 16px;
}

.live-current-product__intro img {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    border-radius: 8px;
    object-fit: cover;
}

.live-current-product__intro span {
    color: var(--live-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-current-product h2 {
    margin: 4px 0 8px;
    font-family: var(--live-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.live-current-product p {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
}

.live-current-product p strong {
    color: var(--live-primary);
    font-family: var(--live-display);
    font-size: 24px;
}

.live-current-product del {
    color: var(--live-on-variant);
    font-size: 14px;
}

.live-stock {
    display: grid;
    gap: 8px;
}

.live-stock div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--live-on-variant);
    font-size: 12px;
    font-weight: 800;
}

.live-stock strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--live-urgency);
}

.live-stock .material-symbols-outlined {
    animation: livePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    font-size: 16px;
}

.live-stock progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: var(--live-surface-high);
}

.live-stock progress::-webkit-progress-bar {
    background: var(--live-surface-high);
}

.live-stock progress::-webkit-progress-value,
.live-stock progress::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(to right, var(--live-secondary), var(--live-urgency));
}

.live-installments {
    border: 1px solid rgba(195, 198, 214, 0.2);
    border-radius: 8px;
    background: var(--live-surface-low);
    padding: 12px;
}

.live-installments small {
    color: var(--live-on-variant);
}

.live-installments div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-installments strong {
    font-size: 14px;
}

.live-installments span {
    border-radius: 4px;
    background: var(--live-secondary-container);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
}

.live-buy-button,
.live-mobile-deal button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--live-success);
    color: #fff;
    font-family: var(--live-display);
    font-size: 18px;
    font-weight: 800;
    padding: 15px 24px;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.live-buy-button:hover,
.live-mobile-deal button:hover {
    filter: brightness(0.96);
}

.live-buy-button:active,
.live-mobile-deal button:active {
    transform: scale(0.96);
}

.live-chat-card {
    display: flex;
    min-height: 400px;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    background: var(--live-surface-low);
}

.live-chat-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(195, 198, 214, 0.3);
    background: rgba(255, 255, 255, 0.55);
    padding: 16px;
}

.live-chat-card h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    font-weight: 800;
}

.live-chat-card h2 span {
    color: var(--live-primary);
    font-size: 19px;
}

.live-chat-card header button {
    border: 0;
    background: transparent;
    color: var(--live-on-variant);
    font-size: 11px;
}

.live-chat-stream {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    padding: 16px;
    scrollbar-color: var(--live-outline-variant) transparent;
    scrollbar-width: thin;
}

.live-chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.live-chat-message strong,
.live-chat-message span {
    flex: 0 0 auto;
    font-size: 14px;
}

.live-chat-message strong {
    color: var(--live-on-variant);
}

.live-chat-message .gold {
    color: var(--live-gold);
}

.live-chat-message .silver {
    color: var(--live-silver);
}

.live-chat-message .bronze {
    color: var(--live-bronze);
}

.live-chat-message p {
    margin: 0;
    color: var(--live-on-variant);
    font-size: 14px;
}

.live-chat-message.is-host span {
    border-radius: 4px;
    background: rgba(0, 61, 155, 0.1);
    color: var(--live-primary);
    font-size: 10px;
    font-weight: 800;
    margin-top: 2px;
    padding: 3px 8px;
}

.live-chat-message.is-host strong,
.live-chat-message.is-host p {
    color: var(--live-primary);
}

.live-chat-message.is-new {
    animation: liveMessageIn 0.28s ease both;
}

.live-chat-empty {
    margin: auto;
    color: var(--live-on-variant);
    font-size: 14px;
    text-align: center;
}

.live-chat-message.is-admin span {
    border-radius: 4px;
    background: rgba(0, 61, 155, 0.1);
    color: var(--live-primary);
    font-size: 10px;
    font-weight: 800;
    margin-top: 2px;
    padding: 3px 8px;
}

.live-chat-message.is-admin strong,
.live-chat-message.is-admin p {
    color: var(--live-primary);
}

.live-chat-message.is-mine {
    justify-content: flex-end;
}

.live-chat-message.is-mine p {
    border-radius: 14px 14px 4px;
    background: var(--live-primary);
    color: #fff;
    padding: 8px 12px;
}

.live-chat-message.is-mine strong {
    color: var(--live-primary);
}

.live-chat-input,
.live-mobile-input {
    position: relative;
    border-top: 1px solid rgba(195, 198, 214, 0.3);
    background: rgba(255, 255, 255, 0.86);
    padding: 16px;
}

.live-chat-input input,
.live-mobile-input input {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--live-surface-container);
    color: var(--live-on-surface);
    outline: 0;
    padding: 10px 48px 10px 16px;
}

.live-chat-input input:focus,
.live-mobile-input input:focus {
    box-shadow: 0 0 0 3px rgba(0, 61, 155, 0.16);
}

.live-chat-input button,
.live-mobile-input button {
    position: absolute;
    right: 22px;
    top: 50%;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--live-primary);
    transform: translateY(-50%);
}

.live-mobile-deal,
.live-mobile-tabs {
    display: none;
}

.live-recently-featured {
    margin-top: 64px;
}

.live-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.live-section-heading h2 {
    margin: 0;
    font-family: var(--live-display);
    font-size: 32px;
    font-weight: 700;
}

.live-section-heading p {
    margin: 4px 0 0;
    color: var(--live-on-variant);
}

.live-carousel-actions {
    display: flex;
    gap: 8px;
}

.live-carousel-actions button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--live-outline-variant);
    border-radius: 999px;
    background: transparent;
    color: var(--live-on-surface);
}

.live-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.live-product-card {
    position: relative;
    min-width: 0;
}

.live-product-card img {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid rgba(195, 198, 214, 0.2);
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.live-product-card:hover img {
    transform: scale(1.035);
}

.live-product-card span {
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--live-on-variant);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 8px;
}

.live-product-card h3 {
    margin: 12px 0 4px;
    overflow: hidden;
    color: var(--live-on-surface);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-product-card p {
    color: var(--live-primary);
    font-family: var(--live-display);
    font-weight: 800;
    margin: 0;
}

.live-footer {
    border-top: 1px solid var(--live-outline-variant);
    background: var(--live-surface-highest);
    margin-top: 80px;
}

.live-footer > div {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
    padding: 48px 32px;
}

.live-footer h2 {
    color: var(--live-primary);
    font-family: var(--live-display);
    font-size: 24px;
    font-weight: 900;
}

.live-footer h3 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-footer p,
.live-footer a {
    color: var(--live-on-variant);
    font-size: 15px;
    line-height: 24px;
}

.live-footer section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-footer > p {
    border-top: 1px solid rgba(195, 198, 214, 0.5);
    margin-bottom: 0;
    padding: 24px 32px;
    text-align: center;
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes liveMessageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .live-workspace {
        grid-template-columns: minmax(0, 62fr) minmax(320px, 38fr);
        align-items: start;
    }

    .live-side-panel {
        min-height: 700px;
    }

    .live-video-info h1 {
        color: var(--live-primary);
        font-size: 30px;
    }

    .live-current-product {
        border-color: rgba(0, 61, 155, 0.1);
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(12px);
    }

    .live-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .live-product-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .live-nav__links {
        gap: 18px;
    }

    .live-search {
        display: none;
    }

    .live-workspace {
        grid-template-columns: 1fr;
    }

    .live-side-panel {
        min-height: 0;
    }

    .live-chat-card {
        min-height: 430px;
    }
}

@media (max-width: 767.98px) {
    body.ldm-live-page {
        min-height: max(884px, 100dvh);
        padding-bottom: 76px;
    }

    .live-alert {
        gap: 10px;
        justify-content: center;
        min-height: 40px;
        padding: 8px 16px;
    }

    .live-alert strong {
        font-size: 16px;
    }

    .live-alert a {
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: transparent;
        color: #fff;
        padding: 3px 12px;
    }

    .live-nav,
    .live-video-info,
    .live-side-panel,
    .live-footer {
        display: none;
    }

    .live-main {
        padding: 0;
    }

    .live-workspace {
        display: block;
    }

    .live-primary {
        display: block;
    }

    .live-video-card {
        position: sticky;
        top: 40px;
        z-index: 50;
        border-radius: 0;
        box-shadow: none;
    }

    .live-video-card::before {
        aspect-ratio: 16 / 9;
    }

    .live-video-card > img {
        opacity: 0.9;
    }

    .live-video-card__overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 54%);
    }

    .live-video-card__controls {
        display: none;
    }

    .live-video-card__top {
        align-items: flex-start;
    }

    .live-pill {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
    }

    .live-pill i {
        background: var(--live-urgency);
    }

    .live-viewers {
        margin-right: 0;
        margin-left: -8px;
        border: 0;
        background: transparent;
        padding-left: 0;
    }

    .live-viewers .material-symbols-outlined {
        display: none;
    }

    .live-mobile-close {
        display: inline-flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        backdrop-filter: blur(12px);
    }

    .live-mobile-product {
        display: flex;
        width: fit-content;
        max-width: 80%;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 8px 24px rgba(25, 27, 35, 0.14);
        padding: 12px;
        backdrop-filter: blur(12px);
    }

    .live-mobile-product img {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        object-fit: cover;
    }

    .live-mobile-product strong {
        display: block;
        color: var(--live-primary);
        font-size: 14px;
        line-height: 1.05;
    }

    .live-mobile-product span {
        color: var(--live-on-variant);
        font-size: 12px;
        font-weight: 700;
    }

    .live-mobile-deal {
        position: static;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(195, 198, 214, 0.3);
        background: var(--live-surface-lowest);
        box-shadow: 0 2px 10px rgba(25, 27, 35, 0.08);
        padding: 12px 16px;
    }

    .live-mobile-deal img {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        border-radius: 8px;
        object-fit: cover;
    }

    .live-mobile-deal__info {
        flex: 1;
        min-width: 0;
    }

    .live-mobile-deal__name {
        display: block;
        overflow: hidden;
        color: var(--live-on-surface);
        font-size: 13px;
        font-weight: 800;
        line-height: 1.2;
        margin: 2px 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .live-mobile-deal button {
        flex: 0 0 auto;
    }

    .live-mobile-deal small {
        color: var(--live-on-variant);
        display: block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: -0.02em;
        text-transform: uppercase;
    }

    .live-mobile-deal p {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin: 0;
    }

    .live-mobile-deal strong {
        color: var(--live-primary);
        font-size: 20px;
        font-weight: 900;
    }

    .live-mobile-deal del {
        color: var(--live-outline);
        font-size: 14px;
    }

    .live-mobile-deal button {
        font-family: var(--live-body);
        font-size: 14px;
        min-width: 128px;
        padding: 12px 28px;
    }

    .live-mobile-tabs {
        display: flex;
        min-height: 420px;
        flex-direction: column;
        background: var(--live-surface-gray);
    }

    .live-tabs {
        display: flex;
        border-bottom: 1px solid rgba(195, 198, 214, 0.3);
        background: var(--live-surface);
    }

    .live-tabs button {
        flex: 1;
        border: 0;
        border-bottom: 2px solid transparent;
        background: transparent;
        color: var(--live-on-variant);
        font-size: 14px;
        font-weight: 700;
        padding: 16px 8px;
    }

    .live-tabs button.is-active {
        border-bottom-color: var(--live-primary);
        color: var(--live-primary);
        font-weight: 800;
    }

    .live-tab-panel {
        max-height: 353px;
        flex: 1;
        overflow-y: auto;
        padding: 16px;
    }

    .mobile-chat-list {
        display: grid;
        gap: 12px;
    }

    .mobile-chat-row {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .mobile-chat-row strong {
        color: var(--live-primary);
        font-size: 14px;
        white-space: nowrap;
    }

    .mobile-chat-row p,
    .mobile-info-card p,
    .mobile-info-card li {
        margin: 0;
        border: 1px solid rgba(195, 198, 214, 0.1);
        border-radius: 12px;
        border-top-left-radius: 0;
        background: #fff;
        color: var(--live-on-surface);
        font-size: 14px;
        padding: 8px;
        box-shadow: 0 4px 10px rgba(25, 27, 35, 0.04);
    }

    .mobile-info-card {
        display: grid;
        gap: 12px;
    }

    .mobile-info-card h3 {
        color: var(--live-primary);
        font-size: 16px;
        font-weight: 800;
        margin: 0;
    }

    .mobile-info-card ul {
        display: grid;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-info-card li {
        display: flex;
        gap: 6px;
    }

    /* Product Info tab */
    .mobile-product-info p {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .mobile-product-info__head {
        display: flex;
        gap: 12px;
    }

    .mobile-product-info__head img {
        width: 84px;
        height: 84px;
        flex: 0 0 84px;
        border-radius: 10px;
        object-fit: cover;
    }

    .mobile-product-info__tag {
        color: var(--live-primary);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mobile-product-info__price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin: 4px 0 2px;
    }

    .mobile-product-info__price strong {
        color: var(--live-primary);
        font-size: 20px;
        font-weight: 900;
    }

    .mobile-product-info__price del {
        color: var(--live-outline);
        font-size: 13px;
    }

    .mobile-product-info__stock {
        color: var(--live-urgency);
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-product-info__desc {
        color: var(--live-on-surface);
        font-size: 14px;
        line-height: 1.5;
    }

    .mobile-product-info__cta {
        justify-content: center;
        text-decoration: none;
        font-size: 15px;
    }

    /* Q&A lives in the mobile tab strip, so hide the desktop card */
    .live-qa-card {
        display: none;
    }

    /* Coming Up Next lives inside the player column on desktop only */
    .live-next-show {
        display: none;
    }

    /* Deal bar actions: Buy Now with the red "Next Up" toggle beneath it */
    .live-mobile-deal__actions {
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .live-next-up-toggle:not([hidden]) {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-width: 0;
        border: 0;
        background: transparent;
        color: var(--live-urgency);
        font-family: inherit;
        font-size: 11px;
        font-weight: 800;
        line-height: 15px;
        padding: 2px 4px;
        cursor: pointer;
    }

    .live-next-up-toggle .material-symbols-outlined {
        font-size: 16px;
        transition: transform 0.2s ease;
    }

    .live-next-up-toggle.is-open .material-symbols-outlined {
        transform: rotate(180deg);
    }

    /* Expandable next-up card below the deal bar */
    .live-next-up-mobile:not([hidden]) {
        display: block;
        border-bottom: 1px solid rgba(195, 198, 214, 0.3);
        background: var(--live-surface);
        padding: 10px 16px;
    }

    .live-next-up-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .live-next-up-track::-webkit-scrollbar { display: none; }

    .live-next-up-slide {
        display: flex;
        flex: 0 0 88%;
        align-items: center;
        gap: 12px;
        scroll-snap-align: start;
        border: 1px solid rgba(195, 198, 214, 0.3);
        border-radius: 12px;
        background: var(--live-surface-lowest);
        padding: 10px;
    }

    .live-next-up-mobile img {
        width: 54px;
        height: 42px;
        flex: 0 0 54px;
        border-radius: 8px;
        object-fit: cover;
    }

    .live-next-up-slide__info {
        flex: 1;
        min-width: 0;
    }

    .live-next-up-mobile__label {
        display: block;
        color: var(--live-urgency);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .live-next-up-slide__info strong {
        display: block;
        overflow: hidden;
        color: var(--live-on-surface);
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .live-next-up-slide__info small {
        display: block;
        overflow: hidden;
        color: var(--live-on-variant);
        font-size: 12px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .live-next-up-mobile__product {
        display: block;
        margin-top: 2px;
        color: var(--live-on-variant);
        font-size: 12px;
    }

    .live-next-up-mobile__product strong {
        color: var(--live-primary);
    }

    .live-next-up-mobile__reminder {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        border: 1px solid var(--live-primary);
        border-radius: 999px;
        background: transparent;
        color: var(--live-primary);
        cursor: pointer;
    }

    .live-next-up-mobile__reminder .material-symbols-outlined { font-size: 20px; }

    .live-next-up-mobile__reminder.is-set {
        background: var(--live-primary);
        color: #fff;
    }

    .live-mobile-input {
        display: block;
        background: var(--live-surface);
        padding: 12px;
    }

    .live-recently-featured {
        border-top: 1px solid rgba(195, 198, 214, 0.3);
        background: var(--live-surface);
        margin-top: 0;
        padding: 24px 16px;
    }

    .live-section-heading {
        align-items: center;
        margin-bottom: 16px;
    }

    .live-section-heading h2 {
        color: var(--live-primary);
        font-size: 18px;
    }

    .live-section-heading p,
    .live-carousel-actions {
        display: none;
    }

    .live-section-heading::after {
        content: "See All";
        color: var(--live-primary);
        font-size: 13px;
        font-weight: 800;
    }

    .live-product-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .live-product-grid::-webkit-scrollbar {
        display: none;
    }

    .live-product-card {
        min-width: 140px;
        scroll-snap-align: start;
        border: 1px solid rgba(195, 198, 214, 0.2);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 4px 14px rgba(25, 27, 35, 0.05);
        padding: 8px;
    }

    .live-product-card img {
        border: 0;
        border-radius: 8px;
    }

    .live-product-card span {
        display: none;
    }

    .live-product-card h3 {
        font-size: 12px;
        margin-top: 8px;
    }

    .live-product-card p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .live-alert strong {
        font-size: 14px;
    }
}

.live-reminder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--live-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--live-primary);
    font-weight: 700;
    font-size: 13px;
    margin-left: auto;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.live-reminder:hover,
.live-reminder[data-reminder-set="1"] {
    background: var(--live-primary);
    color: #fff;
}
.live-reminder .material-symbols-outlined { font-size: 16px; }

.live-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Community Q&A (desktop card) */
.live-qa-card {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(195, 198, 214, 0.3);
    border-radius: 12px;
    background: var(--live-surface-low);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.live-qa-card header h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-family: var(--live-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--live-on-surface);
}
.live-qa-card header h2 .material-symbols-outlined { color: var(--live-primary); font-size: 20px; }
.live-qa-hint { margin: 0; color: var(--live-on-variant); font-size: 13px; line-height: 1.5; }
.live-qa-form { display: flex; gap: 8px; }
.live-qa-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(195, 198, 214, 0.5);
    border-radius: 999px;
    background: var(--live-surface);
    color: var(--live-on-surface);
    font-size: 14px;
    padding: 10px 16px;
}
.live-qa-form input:focus { outline: none; border-color: var(--live-primary); }
.live-qa-form button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    background: var(--live-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
}
.live-qa-form button .material-symbols-outlined { font-size: 18px; }
.live-qa-form button:hover { filter: brightness(0.96); }

/* Coming Up Next */
.live-next-show { margin-top: 20px; }
/* Mobile-only next-up elements are hidden on desktop/tablet */
.live-next-up-toggle,
.live-next-up-mobile { display: none; }
.live-next-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.live-next-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.live-next-slider::-webkit-scrollbar { display: none; }
.live-next-slide {
    display: flex;
    flex: 0 0 240px;
    flex-direction: column;
    border: 1px solid rgba(195, 198, 214, 0.3);
    border-radius: 14px;
    background: var(--live-surface-lowest);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.live-next-slide__media { position: relative; }
.live-next-slide__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.live-next-slide__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    background: var(--live-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
}
.live-next-slide__body { display: grid; gap: 6px; padding: 14px; }
.live-next-slide__eyebrow {
    color: var(--live-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.live-next-slide__body h3 { margin: 0; font-family: var(--live-display); font-size: 16px; font-weight: 700; line-height: 1.25; }
.live-next-slide__product { margin: 0; color: var(--live-on-variant); font-size: 13px; }
.live-next-slide__product strong { color: var(--live-primary); }
.live-next-slide__time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: var(--live-on-variant);
    font-size: 12px;
}
.live-next-slide__time .material-symbols-outlined { font-size: 15px; }
.live-next-slide .live-next-card__reminder { width: 100%; margin-top: 6px; font-size: 13px; padding: 9px 16px; }
.live-next-card__reminder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: start;
    margin-top: 8px;
    border: 1px solid var(--live-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--live-primary);
    font-family: var(--live-display);
    font-weight: 700;
    font-size: 15px;
    padding: 11px 22px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.live-next-card__reminder .material-symbols-outlined { font-size: 18px; }
.live-next-card__reminder:hover,
.live-next-card__reminder.is-set {
    background: var(--live-primary);
    color: #fff;
}
