﻿/* Live Selling â€” modern live-commerce UI (mobile-first) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

.lw-wrap {
  --lw-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --lw-ink: #0f172a;
  --lw-ink-muted: #64748b;
  --lw-surface: #ffffff;
  --lw-surface-glass: rgba(255, 255, 255, 0.88);
  --lw-border: rgba(148, 163, 184, 0.35);
  --lw-primary: #ff2636;
  --lw-primary-deep: #026958;
  --lw-accent: #008f79;
  --lw-cyan: #00bcd4;
  --lw-live: #ff2636;
  --lw-live-dark: #e01f2e;
  --lw-gold: #00bcd4;
  --lw-success: #008f79;
  --lw-radius: 14px;
  --lw-radius-sm: 10px;
  --lw-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  --lw-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --lw-gradient-page: linear-gradient(160deg, #f0fdfa 0%, #ecfeff 45%, #fff1f2 100%);
  --lw-gradient-hero: linear-gradient(135deg, #00bcd4 0%, #008f79 55%, #026958 100%);
  --lw-gradient-btn: linear-gradient(135deg, #00bcd4, #008f79);
  --lw-tap-min: 44px;

  font-family: var(--lw-font);
  color: var(--lw-ink);
  -webkit-font-smoothing: antialiased;
}

.lw-wrap *,
.lw-wrap *::before,
.lw-wrap *::after {
  box-sizing: border-box;
}

.lw-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(12px, 3vw, 22px);
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  background: var(--lw-gradient-page);
  background-attachment: fixed;
  min-height: 60vh;
}

.lw-head {
  margin: 8px 0 20px;
}
.lw-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--lw-gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lw-sub {
  color: var(--lw-ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lw-link a {
  word-break: break-all;
  color: var(--lw-primary-deep);
  font-weight: 600;
}

.lw-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(14px, 3vw, 20px);
}
.lw-grid-viewer {
  grid-template-columns: 2fr 1fr;
}
.lw-col {
  min-width: 0;
}

.lw-card {
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow);
  backdrop-filter: blur(8px);
}
.lw-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lw-border);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.85));
}
.lw-card-body {
  padding: clamp(14px, 3vw, 18px);
}
.lw-title {
  font-weight: 800;
  font-size: 1rem;
}
.lw-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.lw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--lw-tap-min);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  color: var(--lw-ink);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.lw-btn:hover {
  background: #f8fafc;
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
  transform: translateY(-1px);
}
.lw-btn:active {
  transform: translateY(0);
}
.lw-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.lw-btn-primary {
  border: none;
  background: var(--lw-gradient-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}
.lw-btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--lw-live), var(--lw-live-dark));
  box-shadow: 0 10px 26px rgba(244, 63, 94, 0.45);
  filter: none;
}
.lw-btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.8125rem;
}

.lw-video-wrap {
  position: relative;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: var(--lw-radius);
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--lw-shadow-lg);
}
.lw-video {
  width: 100%;
  height: 420px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}
.lw-video video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  -webkit-playsinline: true;
}
.lw-status {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.lw-note {
  margin-top: 12px;
  color: var(--lw-ink-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.lw-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: linear-gradient(180deg, #fff, #fafafa);
  min-height: 74px;
}
.lw-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lw-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
  min-width: 210px;
}

/* Studio: ensure listing title is always visible */
.lw-item-studio {
  flex-direction: column;
  align-items: stretch;
}
.lw-item-studio .lw-item-title {
  width: 100%;
}
.lw-item-studio .lw-item-actions {
  width: 100%;
  min-width: 0;
}
.lw-empty {
  color: var(--lw-ink-muted);
  padding: 8px 0;
}
.lw-featured-now {
  margin-top: 14px;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--lw-gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lw-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-chat-messages {
  height: 360px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  padding: 12px;
  background: linear-gradient(180deg, #fafafa, #fff);
}
.lw-chat-line {
  font-size: 0.875rem;
  margin: 0 0 10px;
  line-height: 1.45;
}
.lw-chat-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lw-chat-form input {
  flex: 1;
  min-width: 0;
  min-height: var(--lw-tap-min);
  padding: 12px 14px;
  border: 1px solid var(--lw-border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
}
.lw-chat-form input:focus {
  outline: none;
  border-color: var(--lw-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.lw-tools {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lw-tool-title {
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--lw-ink);
}
.lw-tool-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.lw-tool-row input[type='text'],
.lw-tool-row input[type='number'],
.lw-tool-row input[type='datetime-local'],
.lw-tool-row input[type='password'] {
  min-height: var(--lw-tap-min);
  padding: 10px 14px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  font-family: inherit;
}
.lw-tool-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  font-family: inherit;
}
.lw-chk {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.875rem;
}

.lw-queue,
.lw-history {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-qrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: #fff;
}
.lw-qtitle {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.25;
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-qactions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 6px 12px;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
  color: var(--lw-ink);
  border: 1px solid var(--lw-border);
}
.lw-badge.red {
  background: linear-gradient(135deg, #fecdd3, #fda4af);
  border-color: #fb7185;
  color: #9f1239;
}

.lw-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--lw-surface-glass);
  border-radius: var(--lw-radius);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  box-shadow: var(--lw-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}
.lw-overlay-media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--lw-shadow);
}
.lw-overlay-info {
  flex: 1;
  min-width: 0;
}
.lw-overlay-title {
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-overlay-price {
  color: var(--lw-primary-deep);
  font-weight: 800;
  margin-top: 4px;
  font-size: 0.95rem;
}
.lw-overlay-close {
  border: 0;
  background: rgba(15, 23, 42, 0.06);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--lw-ink);
  padding: 8px;
  border-radius: 999px;
  min-width: var(--lw-tap-min);
  min-height: var(--lw-tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========= Viewer (live watch) ========= */
.lw-viewer {
  max-width: 1120px;
}
.lw-dir,
.lw-viewer {
  width: min(1320px, calc(100vw - 24px));
  max-width: none;
  margin-left: calc(50% - min(660px, calc(50vw - 12px)));
  margin-right: calc(50% - min(660px, calc(50vw - 12px)));
}

.lw-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.lw-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.lw-topbar-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--lw-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-topbar-link {
  color: var(--lw-primary-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
}
.lw-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--lw-live), var(--lw-live-dark));
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.45);
  animation: ls-pulse-live 2s ease-in-out infinite;
}
@keyframes ls-pulse-live {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.45);
  }
  50% {
    box-shadow: 0 4px 24px rgba(244, 63, 94, 0.65);
  }
}
.lw-live-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.lw-viewer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(14px, 2.5vw, 20px);
  align-items: start;
}
.lw-viewer-main {
  min-width: 0;
}
.lw-viewer-side {
  position: sticky;
  top: 12px;
}

.lw-viewer-amz {
  padding-top: 8px;
}
.lw-viewer-grid-amz {
  gap: clamp(16px, 3vw, 22px);
}
.lw-seller-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--lw-gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}
.lw-topbar-loc {
  font-size: 0.75rem;
  color: var(--lw-ink-muted);
  font-weight: 700;
}

.lw-amz-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 4px 0 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.lw-amz-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.lw-amz-tab {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lw-ink-muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.lw-amz-tab:hover {
  color: var(--lw-ink);
  background: #fff;
  border-color: var(--lw-border);
}
.lw-amz-tab.is-active {
  color: #fff;
  background: var(--lw-gradient-btn);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}
.lw-amz-find {
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
 line-height: 1.5;
}
.lw-amz-find .lw-btn {
  margin: 0;
}
.lw-amz-find a:not(.lw-btn) {
  text-decoration: none;
  font-weight: 800;
  color: var(--lw-primary-deep);
}
.lw-amz-find a:not(.lw-btn):hover {
  text-decoration: none;
}

.lw-video-shell {
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow-lg);
  position: relative;
  z-index: 1;
}
.lw-viewer-amz .lw-video-shell {
  border-radius: var(--lw-radius) var(--lw-radius) 0 0;
  border-bottom: 0;
}
.lw-video-amazon {
  border-radius: 0;
  min-height: 200px;
}
.lw-video-amazon .lw-video {
  height: clamp(220px, 52vw, 380px);
}
.lw-video-amazon .lw-status {
  left: 12px;
  bottom: 12px;
}
.lw-amz-stream-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--lw-shadow);
}

.lw-amz-host {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--lw-border);
  border-top: 0;
  border-radius: 0 0 var(--lw-radius) var(--lw-radius);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.lw-amz-host-main {
  min-width: 0;
}
.lw-amz-host-title {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 800;
  color: var(--lw-ink);
  line-height: 1.25;
}
.lw-amz-host-sub {
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
  margin-top: 4px;
  font-weight: 600;
}
.lw-amz-host-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lw-live-metrics {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  max-width: calc(100% - 24px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lw-like {
  border: 0;
  background: #fff;
  color: var(--lw-live);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lw-shadow);
  transition: transform 0.15s ease;
  touch-action: manipulation;
}
.lw-like:hover {
  transform: scale(1.08);
}
.lw-metric {
  font-size: 0.8125rem;
  font-weight: 800;
}

.lw-coupon {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: calc(100% - 24px);
  background: var(--lw-surface-glass);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--lw-shadow-lg);
  backdrop-filter: blur(10px);
}
.lw-coupon-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--lw-gold), #ea580c);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}
.lw-coupon-text {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--lw-ink);
  max-width: min(520px, 55vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-coupon-close {
  border: 0;
  background: rgba(15, 23, 42, 0.06);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  min-width: var(--lw-tap-min);
  min-height: var(--lw-tap-min);
}

.lw-side-card {
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow);
}
.lw-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lw-border);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(139, 92, 246, 0.08));
}
.lw-side-title {
  font-weight: 800;
}
.lw-side-pill {
  font-size: 0.75rem;
  color: var(--lw-success);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.lw-side-body {
  padding: 12px;
}
.lw-chat-amazon .lw-chat-messages {
  height: clamp(260px, 38vh, 360px);
}

.lw-shop-row {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: clamp(12px, 2vw, 16px);
  margin-top: 14px;
  align-items: start;
}
.lw-seller-panel {
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  padding: 14px;
  box-shadow: var(--lw-shadow);
}
.lw-seller-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.lw-seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--lw-ink);
  border: 2px solid #fff;
  box-shadow: var(--lw-shadow);
}
.lw-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-seller-meta {
  flex: 1;
  min-width: 0;
}
.lw-seller-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lw-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-seller-sub {
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.lw-feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  display: flex;
  gap: 12px;
  padding: 12px;
  box-shadow: var(--lw-shadow);
}
.lw-feature-media {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--lw-border);
  flex: 0 0 auto;
}
.lw-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-feature-info {
  min-width: 0;
  flex: 1;
}
.lw-feature-kicker {
  font-size: 0.6875rem;
  color: var(--lw-accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lw-feature-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--lw-ink);
  margin-top: 4px;
  line-height: 1.3;
  max-height: 2.6em;
  overflow: hidden;
}
.lw-feature-price {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 800;
  background: var(--lw-gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lw-feature-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lw-strip {
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow);
}
.lw-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lw-border);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.06), rgba(168, 85, 247, 0.06));
}
.lw-strip-title {
  font-weight: 800;
  font-size: 1rem;
}
.lw-strip-sub {
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
  font-weight: 600;
}
.lw-strip-scroll {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  align-items: stretch;
  scrollbar-width: thin;
  scrollbar-color: var(--lw-primary) transparent;
}
.lw-prod-cell {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
  width: 148px;
  max-width: 148px;
}
.lw-prod-cell .lw-prod {
  width: 100%;
}
.lw-prod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lw-overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

/* Studio listing actions */
.lw-btn-feature {
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.08);
  color: #3730a3;
}
.lw-btn-feature:hover {
  background: rgba(99, 102, 241, 0.14);
  border-color: rgba(99, 102, 241, 0.5);
}
.lw-btn-queue {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.1);
  color: #92400e;
}
.lw-btn-queue:hover {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.55);
}
.lw-btn-view {
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.08);
  color: #075985;
}
.lw-btn-view:hover {
  background: rgba(14, 165, 233, 0.14);
  border-color: rgba(14, 165, 233, 0.55);
}

/* Studio: keep button text readable on hover everywhere */
.lw-btn:hover,
.lw-btn:focus {
  color: var(--lw-ink);
}
.lw-btn.lw-btn-add-item,
.lw-btn.lw-btn-add-item:hover,
.lw-btn.lw-btn-add-item:focus {
  background: #00bcd4 !important;
  color: #fff !important;
  border-color: transparent !important;
}
.lw-btn.lw-btn-add-item:hover,
.lw-btn.lw-btn-add-item:focus {
  background: #00a5ba !important;
}
.lw-btn-primary:hover,
.lw-btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--lw-live), var(--lw-live-dark));
  box-shadow: 0 10px 26px rgba(244, 63, 94, 0.45);
}

/* Live tools panel: distinct premium feel */
.lw-card-tools .lw-card-head {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(14, 165, 233, 0.12));
}
.lw-card-tools .lw-title {
  background: linear-gradient(135deg, #00bcd4 0%, #008f79 55%, #ff2636 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lw-vod-notice {
  margin: 12px 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.08));
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lw-strip-scroll::-webkit-scrollbar {
  height: 8px;
}
.lw-strip-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--lw-primary), var(--lw-accent));
  border-radius: 99px;
}
.lw-strip-empty {
  padding: 20px;
  color: var(--lw-ink-muted);
  font-weight: 600;
}

.lw-prod {
  width: 148px;
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  color: var(--lw-ink);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: var(--lw-surface);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lw-prod:hover {
  transform: translateY(-3px);
  box-shadow: var(--lw-shadow-lg);
  border-color: rgba(14, 165, 233, 0.35);
}
.lw-prod-sponsor {
  border: 2px solid rgba(245, 158, 11, 0.5);
  background: linear-gradient(180deg, #fffbeb, #ffffff);
}
.lw-prod-sponsor:hover {
  border-color: rgba(234, 88, 12, 0.65);
}
.lw-prod-thumb {
  width: 100%;
  height: 96px;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  position: relative;
}
.lw-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-prod-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe, #fae8ff);
}
.lw-prod-meta {
  padding: 10px;
}
.lw-prod-title {
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.3;
  height: 3.1em;
  overflow: hidden;
}

.lw-more {
  margin-top: 20px;
}
.lw-more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.lw-more-title {
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  letter-spacing: -0.02em;
}
.lw-viewer-amz .lw-more-title {
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  background: var(--lw-gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lw-more-sub {
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
}
.lw-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.lw-more-grid-amz {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lw-more-card {
  display: block;
  text-decoration: none;
  color: var(--lw-ink);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--lw-shadow);
}
.lw-more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lw-shadow-lg);
}
.lw-more-thumb {
  height: 140px;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}
.lw-more-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-more-meta {
  padding: 12px;
}
.lw-more-name {
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
}

.lw-amz-rail-wrap {
  margin-top: 20px;
}
.lw-amz-stream-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.lw-cat-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.lw-cat-filter select {
  min-height: var(--lw-tap-min);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  padding: 0 12px;
  background: var(--lw-surface);
  font-family: inherit;
  font-weight: 600;
}
.lw-amz-stream-card {
  display: block;
  text-decoration: none;
  color: var(--lw-ink);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--lw-shadow);
}
.lw-amz-stream-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lw-shadow-lg);
}
.lw-amz-stream-thumb {
  position: relative;
  height: 120px;
  background: linear-gradient(145deg, #1e293b, #334155);
}
.lw-amz-stream-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-amz-stream-thumb .lw-badge {
  position: absolute;
  left: 10px;
  top: 10px;
}
.lw-amz-stream-meta {
  padding: 12px;
}
.lw-amz-stream-title {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}
.lw-amz-stream-sub {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--lw-ink-muted);
  font-weight: 700;
}
.lw-amz-count-line {
  margin-top: 12px;
  color: var(--lw-ink-muted);
  font-size: 0.8125rem;
  font-weight: 700;
}

/* ========= Directory ========= */
.lw-dir {
  max-width: 1320px;
}
.lw-dir-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.lw-dir-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--lw-ink);
}

.lw-dir-spotlight {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: var(--lw-radius);
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: linear-gradient(100deg, #fffbeb, #fff7ed, #fef3c7);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--lw-ink);
  box-shadow: var(--lw-shadow);
}

.lw-purchase-notice {
  margin: 12px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: linear-gradient(180deg, #f8fafc, #fff);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lw-ink);
}

.lw-b2b-gate {
  max-width: 520px;
  margin: 48px auto;
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-lg);
  text-align: center;
}
.lw-b2b-gate h1 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--lw-gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lw-b2b-gate .lw-btn {
  min-width: 160px;
}

.lw-dir-tabs:not(.lw-disc-tabs) {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--lw-border);
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.lw-tab {
  padding: 12px 16px;
  text-decoration: none;
  color: var(--lw-ink-muted);
  font-weight: 800;
  font-size: 0.875rem;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--lw-radius-sm) var(--lw-radius-sm) 0 0;
  transition: color 0.15s ease, background 0.15s ease;
}
.lw-tab:hover {
  color: var(--lw-ink);
  background: rgba(255, 255, 255, 0.5);
}
.lw-tab.is-active {
  color: var(--lw-primary-deep);
  border-bottom-color: var(--lw-primary);
  background: rgba(14, 165, 233, 0.08);
}

.lw-dir-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
.lw-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.lw-filter-row select,
.lw-filter-row input[type='text'],
.lw-filter-row input[type='number'] {
  min-height: var(--lw-tap-min);
  padding: 10px 14px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  background: var(--lw-surface);
}
.lw-dir-note {
  color: var(--lw-ink-muted);
  font-size: 0.8125rem;
  margin-top: 10px;
  line-height: 1.45;
}

.lw-empty-state {
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  background: linear-gradient(165deg, #fff, #f0f9ff);
  box-shadow: var(--lw-shadow);
}
.lw-empty-state-small {
  padding: 22px;
}
.lw-empty-state-title {
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  color: var(--lw-ink);
}
.lw-empty-state-sub {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lw-ink-muted);
  max-width: 760px;
}

.lw-live-stage {
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-lg);
}
.lw-live-stage-empty {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #f8fafc, #e0f2fe);
}
.lw-live-stage-inner {
  text-align: center;
  padding: 24px;
}
.lw-live-stage-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--lw-ink);
}
.lw-live-stage-sub {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--lw-ink-muted);
}
.lw-live-stage-link {
  display: block;
}
.lw-live-stage-media {
  height: clamp(220px, 45vw, 360px);
  background: linear-gradient(145deg, #1e293b, #334155);
  position: relative;
}
.lw-live-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-live-stage-media .lw-badge {
  position: absolute;
  left: 12px;
  top: 12px;
}
.lw-live-stage-meta {
  padding: 16px;
}

.lw-dir-section {
  margin: 0 0 28px;
}
.lw-dir-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.lw-dir-h1 {
  font-weight: 800;
  font-size: 1.05rem;
}
.lw-dir-h2 {
  color: var(--lw-ink-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.lw-dir-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.lw-dir-grid-small {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lw-live-card {
  display: block;
  text-decoration: none;
  color: var(--lw-ink);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--lw-shadow);
}
.lw-live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lw-shadow-lg);
}
.lw-live-thumb {
  height: clamp(160px, 28vw, 200px);
  background: linear-gradient(145deg, #1e293b, #475569);
  position: relative;
}
.lw-live-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-live-badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lw-live-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.lw-live-link,
.lw-live-link2 {
  display: block;
  color: inherit;
  text-decoration: none;
}
.lw-live-meta {
  padding: 12px 14px;
}
.lw-live-title {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}
.lw-live-sub {
  margin-top: 8px;
  color: var(--lw-ink-muted);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 600;
}
.lw-live-seller {
  font-weight: 800;
  color: var(--lw-ink);
}
.lw-dot {
  opacity: 0.45;
}

/* Inline item widget */
.lw-item-live-inline,
.lw-item-live {
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow-lg);
  border: 1px solid var(--lw-border);
  margin: 16px 0;
}

/* ========= Responsive ========= */
@media (max-width: 1120px) {
  .lw-dir,
  .lw-viewer {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .lw-dir-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-dir-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .lw-viewer-grid {
    grid-template-columns: 1fr;
  }
  .lw-viewer-side {
    position: relative;
    top: auto;
  }
  .lw-amz-headline {
    flex-direction: column;
    align-items: stretch;
  }
  .lw-amz-tabs {
    justify-content: flex-start;
  }
  .lw-chat-amazon .lw-chat-messages {
    height: min(320px, 45vh);
  }
  .lw-video-amazon .lw-video {
    height: clamp(200px, 48vw, 340px);
  }
  .lw-shop-row {
    grid-template-columns: 1fr;
  }
  .lw-more-grid,
  .lw-more-grid-amz {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-amz-stream-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lw-grid,
  .lw-grid-viewer {
    grid-template-columns: 1fr;
  }
  .lw-video {
    height: min(52vw, 360px);
  }
  .lw-chat-messages {
    height: min(280px, 40vh);
  }
  .lw-amz-host {
    flex-direction: column;
    align-items: flex-start;
  }
  .lw-amz-host-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .lw-feature-card {
    flex-direction: column;
    align-items: stretch;
  }
  .lw-feature-media {
    width: 100%;
    height: 180px;
  }
  .lw-live-metrics {
    right: 8px;
    bottom: 8px;
    left: auto;
    padding: 6px 10px;
  }
  .lw-coupon {
    left: 8px;
    top: 52px;
    max-width: calc(100% - 16px);
  }
  .lw-amz-stream-badge {
    top: 8px;
    left: 8px;
  }
}

@media (max-width: 600px) {
  .lw-dir-grid,
  .lw-dir-grid-small {
    grid-template-columns: 1fr;
  }
  .lw-live-thumb {
    height: 200px;
  }
  .lw-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .lw-filter-row select,
  .lw-filter-row input {
    width: 100%;
  }
  .lw-dir-tabs {
    gap: 4px;
  }
  .lw-tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 520px) {
  .lw-live-stage-media {
    height: 220px;
  }
  .lw-live-stage-title {
    font-size: 1.25rem;
  }
  .lw-more-grid,
  .lw-more-grid-amz {
    grid-template-columns: 1fr;
  }
  .lw-amz-stream-rail {
    grid-template-columns: 1fr;
  }
  .lw-prod {
    width: 160px;
  }
  .lw-prod-cell {
    width: 160px;
    max-width: 160px;
  }
  .lw-cat-filter {
    width: 100%;
  }
  .lw-cat-filter select {
    flex: 1;
    min-width: 0;
  }
  .lw-overlay {
    flex-wrap: wrap;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .lw-amz-find {
    flex-direction: column;
    align-items: flex-start;
  }
  .lw-amz-find .lw-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Live Wein — directory, studio, header badge */
.lw-header-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lw-live, #f43f5e);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.lw-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.lw-directory-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--lw-surface, #fff);
  border-radius: var(--lw-radius, 14px);
  overflow: hidden;
  box-shadow: var(--lw-shadow, 0 4px 14px rgba(15,23,42,.08));
  transition: transform .15s ease;
}
.lw-directory-card:hover { transform: translateY(-2px); }
.lw-directory-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: #e2e8f0;
}
.lw-directory-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lw-directory-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg,#00bcd4,#008f79); opacity: .35; }
.lw-live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--lw-live, #f43f5e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.lw-directory-meta { padding: 12px; }
.lw-directory-title { font-weight: 700; font-size: 0.95rem; }
.lw-directory-seller { color: var(--lw-ink-muted, #64748b); font-size: 0.8rem; margin-top: 4px; }
.lw-dir-tabs:not(.lw-disc-tabs) { display: flex; gap: 8px; margin: 12px 0; }
.lw-dir-tab:not(.lw-disc-tab) {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.lw-dir-tab:not(.lw-disc-tab).is-active { background: var(--lw-gradient-btn, linear-gradient(135deg,#00bcd4,#008f79)); color: #fff; }
.lw-studio-link-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.lw-studio-link-row input { flex: 1; min-width: 200px; }
.lw-item { display: flex; gap: 10px; padding: 10px; border-bottom: 1px solid var(--lw-border, rgba(148,163,184,.35)); }
.lw-item-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.lw-item-body { flex: 1; min-width: 0; }
.lw-item-actions { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.lw-shop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 120px;
  max-width: 160px;
  font-size: 0.8rem;
}
.lw-shop-card img { width: 100%; height: 72px; object-fit: cover; border-radius: 6px; }
.lw-shop-items { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.lw-more-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--lw-border);
  text-decoration: none;
  color: inherit;
}
.lw-more-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.lw-col-side { min-width: 0; }
.lw-btn-block { width: 100%; margin-top: 8px; }
.lw-empty-large { padding: 48px 16px; text-align: center; color: var(--lw-ink-muted); }
.lw-pinned-now { padding: 10px; background: rgba(14,165,233,.08); border-radius: 10px; }
.lw-head-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.lw-purchase-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.9);
  border-radius: var(--lw-radius-sm, 10px);
  border: 1px solid var(--lw-border);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .lw-live-pill {
    animation: none;
  }
  .lw-btn,
  .lw-prod,
  .lw-live-card,
  .lw-more-card,
  .lw-amz-stream-card {
    transition: none;
  }
  .lw-btn:hover,
  .lw-prod:hover,
  .lw-live-card:hover {
    transform: none;
  }
}

