:root {
  --lv-font: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --lv-bg: #ffffff;
  --lv-bg-soft: #f8fafc;
  --lv-bg-muted: #f1f5f9;
  --lv-bg-glass: rgba(255, 255, 255, 0.78);

  --lv-text: #101828;
  --lv-text-soft: #475467;
  --lv-text-muted: #667085;
  --lv-text-faint: #98a2b3;

  --lv-border: rgba(15, 23, 42, 0.08);
  --lv-border-strong: rgba(15, 23, 42, 0.12);

  --lv-primary: #111827;
  --lv-primary-soft: #f3f4f6;
  --lv-accent: #2563eb;
  --lv-accent-soft: #eff6ff;

  --lv-success: #16a34a;
  --lv-warning: #f59e0b;
  --lv-danger: #ef4444;
  --lv-pro: #111827;

  --lv-radius-xs: 8px;
  --lv-radius-sm: 12px;
  --lv-radius-md: 16px;
  --lv-radius-lg: 22px;
  --lv-radius-xl: 28px;
  --lv-radius-full: 999px;

  --lv-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
  --lv-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --lv-shadow-md: 0 16px 50px rgba(15, 23, 42, 0.08);
  --lv-shadow-pro: 0 18px 55px rgba(17, 24, 39, 0.16);

  --lv-container: 1280px;

  --lv-h1: clamp(34px, 5vw, 58px);
  --lv-h2: clamp(28px, 4vw, 42px);
  --lv-h3: clamp(22px, 3vw, 28px);
  --lv-title: 18px;
  --lv-body: 15px;
  --lv-small: 13px;
  --lv-tiny: 12px;

  --lv-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --lv-fast: 160ms var(--lv-ease);
  --lv-normal: 260ms var(--lv-ease);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--lv-font);
  color: var(--lv-text);
  background: var(--lv-bg);
  font-size: var(--lv-body);
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lv-text);
  line-height: 1.16;
  letter-spacing: -0.035em;
  margin-top: 0;
}

h1 {
  font-size: var(--lv-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--lv-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--lv-h3);
  font-weight: 650;
}

h4,
h5,
h6 {
  font-weight: 600;
}

p {
  color: var(--lv-text-soft);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.lv-container {
  width: min(100% - 32px, var(--lv-container));
  margin-inline: auto;
}

.lv-section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.lv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--lv-accent);
  font-size: var(--lv-small);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lv-heading {
  margin-bottom: 12px;
}

.lv-subheading {
  max-width: 680px;
  color: var(--lv-text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.lv-card {
  position: relative;
  background: var(--lv-bg);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-xs);
  transition: transform var(--lv-normal), box-shadow var(--lv-normal), border-color var(--lv-normal), background var(--lv-normal);
  overflow: hidden;
}

.lv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: var(--lv-shadow-sm);
}

.lv-card-clean {
  background: #fff;
  border: 0;
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-sm);
}

.lv-glass {
  background: var(--lv-bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--lv-shadow-sm);
}

.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--lv-radius-full);
  border: 1px solid transparent;
  font-family: var(--lv-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--lv-fast), box-shadow var(--lv-fast), background var(--lv-fast), color var(--lv-fast), border-color var(--lv-fast);
}

.lv-btn:hover {
  transform: translateY(-1px);
}

.lv-btn-primary {
  background: var(--lv-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.lv-btn-primary:hover {
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.lv-btn-soft {
  background: var(--lv-primary-soft);
  color: var(--lv-text);
  border-color: var(--lv-border);
}

.lv-btn-soft:hover {
  background: #e5e7eb;
}

.lv-btn-accent {
  background: var(--lv-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.lv-btn-ghost {
  background: transparent;
  color: var(--lv-text-soft);
}

.lv-btn-ghost:hover {
  background: var(--lv-bg-soft);
  color: var(--lv-text);
}

.lv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--lv-radius-full);
  background: var(--lv-bg-soft);
  color: var(--lv-text-soft);
  border: 1px solid var(--lv-border);
  font-size: var(--lv-tiny);
  font-weight: 600;
  white-space: nowrap;
}

.lv-badge-free {
  background: #ecfdf3;
  color: #067647;
  border-color: rgba(22, 163, 74, 0.16);
}

.lv-badge-vip,
.lv-badge-pro {
  background: linear-gradient(135deg, #111827, #334155);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.18);
}

.lv-badge-lock {
  background: rgba(17, 24, 39, 0.06);
  color: var(--lv-text);
}

.lv-form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.lv-form-field label {
  color: var(--lv-text);
  font-size: var(--lv-small);
  font-weight: 600;
}

.lv-input,
.lv-select,
.lv-textarea,
input[type="text"].lv-input,
input[type="email"].lv-input,
input[type="url"].lv-input,
input[type="password"].lv-input,
select.lv-select,
textarea.lv-textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-sm);
  background: #fff;
  color: var(--lv-text);
  font-family: var(--lv-font);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--lv-fast), box-shadow var(--lv-fast), background var(--lv-fast);
}

.lv-textarea {
  min-height: 120px;
  resize: vertical;
}

.lv-input:focus,
.lv-select:focus,
.lv-textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.lv-muted {
  color: var(--lv-text-muted);
}

.lv-faint {
  color: var(--lv-text-faint);
}

.lv-grid {
  display: grid;
  gap: 22px;
}

.lv-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lv-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.lv-product-card {
  border: 0;
  border-radius: var(--lv-radius-lg);
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.lv-product-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--lv-radius-lg);
  background: var(--lv-bg-muted);
}

.lv-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--lv-normal);
}

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

.lv-product-actions {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--lv-normal), transform var(--lv-normal);
}

.lv-product-card:hover .lv-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.lv-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--lv-radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lv-text);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform var(--lv-fast), background var(--lv-fast);
}

.lv-icon-btn:hover {
  transform: translateY(-1px) scale(1.03);
  background: #fff;
}

.lv-product-info {
  padding: 12px 2px 0;
}

.lv-product-title {
  display: -webkit-box;
  margin: 0 0 6px;
  color: var(--lv-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lv-product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lv-text-muted);
  font-size: 12.5px;
  font-weight: 400;
}

.lv-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--lv-radius-full);
  object-fit: cover;
  background: var(--lv-bg-muted);
}

.lv-avatar-pro {
  padding: 2px;
  background: conic-gradient(from 180deg, #111827, #64748b, #2563eb, #111827);
  animation: lv-spin 5s linear infinite;
}

.lv-avatar-pro img {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: var(--lv-radius-full);
  object-fit: cover;
}

.lv-lock-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lv-radius-lg);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-sm);
}

.lv-lock-blur {
  filter: blur(5px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.lv-lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.92));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
}

.lv-lock-title {
  margin: 0 0 8px;
  color: var(--lv-text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.lv-lock-text {
  margin: 0 0 16px;
  color: var(--lv-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.lv-stat-card {
  padding: 20px;
  border-radius: var(--lv-radius-lg);
  background: #fff;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-xs);
}

.lv-stat-label {
  margin: 0 0 8px;
  color: var(--lv-text-muted);
  font-size: var(--lv-small);
  font-weight: 500;
}

.lv-stat-value {
  margin: 0;
  color: var(--lv-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.lv-stat-trend {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
  color: var(--lv-success);
  font-size: var(--lv-tiny);
  font-weight: 600;
}

.lv-dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lv-dashboard-sidebar {
  position: sticky;
  top: 24px;
  padding: 14px;
  border-radius: var(--lv-radius-lg);
  background: #fff;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-xs);
}

.lv-dashboard-main {
  min-width: 0;
}

.lv-dashboard-panel {
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--lv-radius-xl);
  background: #fff;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-sm);
}

.lv-dashboard-title {
  margin: 0 0 8px;
  color: var(--lv-text);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.lv-dashboard-desc {
  margin: 0;
  color: var(--lv-text-muted);
  font-size: 14px;
}

@keyframes lv-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .lv-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lv-dashboard-shell {
    grid-template-columns: 1fr;
  }

  .lv-dashboard-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .lv-grid-2,
  .lv-grid-3,
  .lv-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lv-product-actions {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .lv-container {
    width: min(100% - 24px, var(--lv-container));
  }

  .lv-grid-2,
  .lv-grid-3,
  .lv-grid-4 {
    grid-template-columns: 1fr;
  }

  .lv-btn {
    width: 100%;
  }
}
/* Seller Dashboard */
.account-menu .lv-menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  margin-left: 6px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.lv-seller-dashboard {
  display: grid;
  gap: 22px;
}

.lv-seller-hero {
  overflow: hidden;
}

.lv-seller-cover,
.lv-seller-preview-cover {
  min-height: 180px;
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.26), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(17, 24, 39, 0.22), transparent 32%),
    linear-gradient(135deg, #eef2ff, #f8fafc 54%, #fff7ed);
  background-size: cover;
  background-position: center;
}

.lv-seller-hero-body {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 0 24px 24px;
  margin-top: -46px;
}

.lv-seller-avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  flex: 0 0 auto;
}

.lv-seller-avatar-wrap.is-pro {
  background: conic-gradient(from 180deg, #111827, #2563eb, #94a3b8, #111827);
  animation: lv-spin 6s linear infinite;
}

.lv-seller-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 999px;
}

.lv-seller-verified {
  position: absolute;
  right: 5px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.lv-seller-hero-info {
  min-width: 0;
  flex: 1;
}

.lv-seller-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lv-seller-name-row h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.lv-seller-hero-info p,
.lv-seller-meta-line {
  margin: 5px 0 0;
  color: var(--lv-text-muted);
  font-size: 14px;
}

.lv-seller-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lv-seller-meta-line a {
  color: var(--lv-accent);
  font-weight: 600;
}

.lv-seller-panels h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lv-seller-pro-card {
  min-height: 235px;
}

.lv-seller-empty {
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 30%),
    #fff;
}

.lv-seller-profile-form .lv-seller-form {
  margin-top: 22px;
}

.lv-seller-preview-card {
  position: relative;
  margin-bottom: 48px;
  overflow: visible;
  border-radius: 24px;
  background: #fff;
}

.lv-seller-preview-cover {
  border-radius: 24px;
}

.lv-seller-preview-avatar {
  position: absolute;
  left: 24px;
  bottom: -38px;
  width: 92px;
  height: 92px;
  border: 4px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
}

.lv-seller-form-subtitle {
  margin: 24px 0 14px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .lv-seller-hero-body {
    display: grid;
    padding: 0 18px 20px;
  }

  .lv-seller-hero-body .lv-btn {
    width: 100%;
  }

  .lv-seller-stats,
  .lv-seller-panels {
    grid-template-columns: 1fr;
  }
}

/* Seller frontend submit product */
.lv-seller-products-layout {
  display: grid;
  gap: 24px;
}

.lv-seller-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.lv-seller-product-form {
  display: grid;
  gap: 4px;
}

.lv-seller-submit-note {
  margin: 4px 0 14px;
  padding: 14px 16px;
  border-radius: var(--lv-radius-md);
  background: var(--lv-bg-soft);
  color: var(--lv-text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.lv-seller-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--lv-radius-md);
  font-size: 14px;
  font-weight: 600;
}

.lv-seller-alert.is-success {
  background: #ecfdf3;
  color: #067647;
  border: 1px solid rgba(22, 163, 74, 0.16);
}

.lv-seller-alert.is-error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.lv-seller-product-list {
  display: grid;
  gap: 12px;
}

.lv-seller-product-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  background: #fff;
  transition: transform var(--lv-fast), box-shadow var(--lv-fast), border-color var(--lv-fast);
}

.lv-seller-product-row:hover {
  transform: translateY(-1px);
  border-color: var(--lv-border-strong);
  box-shadow: var(--lv-shadow-xs);
}

.lv-seller-product-thumb {
  width: 84px;
  height: 64px;
  border-radius: var(--lv-radius-md);
  background: var(--lv-bg-muted);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--lv-text-faint);
  font-size: 12px;
  font-weight: 600;
}

.lv-seller-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lv-seller-product-info {
  min-width: 0;
}

.lv-seller-product-info h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lv-seller-product-info p {
  margin: 6px 0 0;
  color: var(--lv-text-muted);
  font-size: 12.5px;
}

.lv-seller-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--lv-text-faint);
  font-size: 12px;
}

.lv-seller-product-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.lv-status-pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--lv-radius-full);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.lv-status-pill.is-publish {
  background: #ecfdf3;
  color: #067647;
}

.lv-status-pill.is-pending {
  background: #fffaeb;
  color: #b54708;
}

.lv-status-pill.is-draft,
.lv-status-pill.is-private,
.lv-status-pill.is-future {
  background: var(--lv-bg-soft);
  color: var(--lv-text-muted);
}

.lv-seller-empty-state {
  padding: 28px;
  border: 1px dashed var(--lv-border-strong);
  border-radius: var(--lv-radius-lg);
  background: var(--lv-bg-soft);
  text-align: center;
}

.lv-seller-empty-state h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.lv-seller-empty-state p {
  margin: 0;
  color: var(--lv-text-muted);
}

@media (max-width: 760px) {
  .lv-seller-panel-head,
  .lv-seller-product-row {
    grid-template-columns: 1fr;
  }

  .lv-seller-panel-head {
    display: grid;
  }

  .lv-seller-product-actions {
    justify-items: start;
  }
}

/* Seller review status */
.lv-status-pill.is-rejected {
  background: #fef2f2;
  color: #b42318;
  border-color: rgba(239, 68, 68, 0.18);
}

.lv-status-pill.is-pending {
  background: #fffbeb;
  color: #b54708;
  border-color: rgba(245, 158, 11, 0.2);
}

.lv-status-pill.is-publish {
  background: #ecfdf3;
  color: #067647;
  border-color: rgba(22, 163, 74, 0.18);
}

/* =====================================================
   Public Seller Profile
   ===================================================== */
.lv-seller-page {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 34%);
  min-height: 100vh;
  padding-bottom: 72px;
}

.lv-seller-hero-wrap {
  padding: 34px 0 22px;
}

.lv-seller-profile {
  overflow: hidden;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-sm);
}

.lv-seller-cover {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, .32), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(17, 24, 39, .22), transparent 32%),
    linear-gradient(135deg, #e0e7ff 0%, #f8fafc 52%, #dbeafe 100%);
  background-size: cover;
  background-position: center;
}

.lv-seller-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.78));
}

.lv-seller-cover-glow {
  position: absolute;
  right: 10%;
  bottom: -40px;
  width: 260px;
  height: 120px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
  filter: blur(30px);
}

.lv-seller-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 0 28px 24px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.lv-seller-avatar-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .16);
}

.lv-seller-avatar-wrap.is-pro {
  background: conic-gradient(from 180deg, #111827, #2563eb, #94a3b8, #111827);
  animation: lv-spin 5.5s linear infinite;
}

.lv-seller-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 999px;
  display: block;
}

.lv-seller-verified {
  position: absolute;
  right: 8px;
  bottom: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(24, 119, 242, .28);
}

.lv-seller-info { min-width: 0; }

.lv-seller-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lv-seller-name-row h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.lv-seller-username {
  margin: 4px 0 0;
  color: var(--lv-text-muted);
  font-size: 14px;
}

.lv-seller-headline {
  margin: 7px 0 0;
  max-width: 720px;
  color: var(--lv-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.lv-seller-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  color: var(--lv-text-muted);
  font-size: 13px;
}

.lv-seller-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lv-seller-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
}

.lv-seller-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--lv-border);
  background: var(--lv-border);
}

.lv-seller-stat {
  background: #fff;
  padding: 18px 22px;
}

.lv-seller-stat strong {
  display: block;
  color: var(--lv-text);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.035em;
}

.lv-seller-stat span {
  display: block;
  margin-top: 7px;
  color: var(--lv-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.lv-seller-content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.lv-seller-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.lv-seller-side-card {
  padding: 20px;
}

.lv-seller-side-card h2,
.lv-seller-panel h2,
.lv-seller-section-head h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.lv-seller-side-card p,
.lv-seller-panel p,
.lv-seller-section-head p {
  margin: 0;
  color: var(--lv-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.lv-seller-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lv-seller-socials {
  display: grid;
  gap: 10px;
}

.lv-seller-socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--lv-bg-soft);
  color: var(--lv-text-soft);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--lv-fast), transform var(--lv-fast), color var(--lv-fast);
}

.lv-seller-socials a:hover {
  transform: translateY(-1px);
  background: #eef2ff;
  color: var(--lv-text);
}

.lv-seller-pro-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.lv-seller-pro-card h2 { color: #fff; margin-top: 14px; }
.lv-seller-pro-card p { color: rgba(255,255,255,.72); }

.lv-seller-main { min-width: 0; }

.lv-seller-tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--lv-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--lv-shadow-xs);
  overflow-x: auto;
}

.lv-seller-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--lv-text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.lv-seller-tabs a.is-active,
.lv-seller-tabs a:hover {
  background: var(--lv-primary);
  color: #fff;
}

.lv-seller-products,
.lv-seller-panel {
  padding: 24px;
  border-radius: var(--lv-radius-xl);
  background: #fff;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow-sm);
}

.lv-seller-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.lv-seller-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lv-seller-product-grid .post-card,
.lv-seller-product-grid .design-file-card,
.lv-seller-product-grid article {
  max-width: 100%;
}

.lv-seller-empty {
  padding: 28px;
  text-align: center;
}

.lv-seller-empty h3,
.lv-seller-empty h1 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lv-seller-pagination {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .lv-seller-head { grid-template-columns: auto minmax(0, 1fr); }
  .lv-seller-actions { grid-column: 1 / -1; padding-left: 154px; }
  .lv-seller-content { grid-template-columns: 1fr; }
  .lv-seller-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lv-seller-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .lv-seller-hero-wrap { padding-top: 18px; }
  .lv-seller-cover { min-height: 160px; }
  .lv-seller-head { display: block; padding: 0 18px 20px; margin-top: -50px; }
  .lv-seller-avatar-wrap { width: 104px; height: 104px; margin-bottom: 14px; }
  .lv-seller-actions { display: grid; grid-template-columns: 1fr; padding-left: 0; margin-top: 16px; }
  .lv-seller-stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lv-seller-sidebar { grid-template-columns: 1fr; }
  .lv-seller-products,
  .lv-seller-panel { padding: 18px; }
  .lv-seller-product-grid { grid-template-columns: 1fr; }
}

/* Pro Seller Monetization */
.lv-seller-pro-card { min-height: 280px; padding: 22px; }
.lv-seller-pro-card.is-unlocked {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.28), transparent 34%), linear-gradient(135deg, #0f172a, #111827 56%, #1e293b);
}
.lv-pro-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.lv-pro-mini-stat { padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.lv-pro-mini-stat span { display: block; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 500; margin-bottom: 7px; }
.lv-pro-mini-stat strong { display: block; color: #fff; font-size: 18px; line-height: 1.25; letter-spacing: -.025em; }
.lv-pro-unlocked-box { margin-top: 16px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.lv-pro-unlocked-box h3 { color: #fff; margin: 0 0 6px; font-size: 18px; }
.lv-pro-unlocked-box p, .lv-pro-featured-form small { color: rgba(255,255,255,.68); }
.lv-pro-featured-form { margin-top: 14px; }
.lv-pro-featured-form .lv-select { background: rgba(255,255,255,.94); }
.seller-pro-badge, .seller-featured-badge { display: inline-flex; align-items: center; gap: 4px; padding: 6px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; line-height: 1; backdrop-filter: blur(10px); box-shadow: 0 8px 20px rgba(15, 23, 42, .18); }
.seller-pro-badge { background: rgba(15, 23, 42, .92); color: #fff; }
.seller-featured-badge { background: linear-gradient(135deg, #f59e0b, #facc15); color: #111827; }
.is-pro-seller-product .post-thumbnail-wrapper { position: relative; }
.is-seller-featured-product .post-thumbnail-wrapper::after { content: ""; position: absolute; inset: 0; border: 2px solid rgba(250, 204, 21, .72); border-radius: inherit; pointer-events: none; }
@media (max-width: 720px) { .lv-pro-grid { grid-template-columns: 1fr; } }


/* Phase fix: seller profile tabs + Pinterest masonry store */
.lv-seller-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.lv-seller-tab-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.lv-seller-tabs a {
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.lv-seller-tabs a:hover {
  transform: translateY(-1px);
}

.lv-seller-product-grid {
  display: block;
  column-count: 3;
  column-gap: 18px;
}

.lv-seller-product-grid .post-card,
.lv-seller-product-grid .design-file-card,
.lv-seller-product-grid article {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.lv-seller-product-grid .post-card.pinterest-style {
  margin-bottom: 18px !important;
}

.lv-seller-product-grid .post-thumbnail-wrapper {
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

@media (max-width: 1100px) {
  .lv-seller-product-grid {
    display: block;
    column-count: 2;
    column-gap: 16px;
  }
}

@media (max-width: 640px) {
  .lv-seller-product-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .lv-seller-product-grid .post-card,
  .lv-seller-product-grid .design-file-card,
  .lv-seller-product-grid article,
  .lv-seller-product-grid .post-card.pinterest-style {
    margin-bottom: 10px !important;
  }
}

/* Phase fix: author mobile profile, bottom tabs, store filters */
.lv-seller-store-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
}

.lv-store-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--lv-border);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--lv-text-muted);
}

.lv-store-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--lv-text);
  font: inherit;
}

.lv-store-type-filter {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--lv-border);
  border-radius: 999px;
  background: #fff;
  color: var(--lv-text);
  font-weight: 600;
}

.lv-seller-product-grid.has-no-results::after {
  content: "Không có sản phẩm phù hợp bộ lọc.";
  display: block;
  padding: 24px;
  border: 1px dashed var(--lv-border);
  border-radius: 18px;
  background: #f8fafc;
  color: var(--lv-text-muted);
  text-align: center;
}

.lv-seller-product-grid > .is-filter-hidden { display: none !important; }
.lv-seller-username { color: var(--lv-text-muted); }

@media (max-width: 720px) {
  .lv-seller-page { padding-bottom: 82px; }
  .lv-seller-head { text-align: center; }
  .lv-seller-avatar-wrap { margin-left: auto; margin-right: auto; }
  .lv-seller-name-row { justify-content: center; }
  .lv-seller-meta-line { justify-content: center; }
  .lv-seller-actions .lv-btn { justify-content: center; }
  .lv-seller-store-filters { flex-direction: column; align-items: stretch; }
  .lv-store-type-filter { width: 100%; }

  .lv-seller-tabs {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    margin: 0;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    justify-content: space-between;
  }

  .lv-seller-tabs a {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }
}

/* Phase fix 2026-04: smarter public seller profile UX */
.lv-seller-hero-wrap .lv-container,
.lv-seller-content.lv-container {
  max-width: 1180px;
}

.lv-seller-profile {
  border-radius: 28px;
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .07);
}

.lv-seller-cover {
  min-height: 210px;
}

.lv-seller-cover::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.86) 100%),
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.42) 52%, rgba(255,255,255,.78) 100%);
}

.lv-seller-head {
  align-items: center;
  padding: 0 28px 26px;
  margin-top: -70px;
}

.lv-seller-avatar-wrap {
  width: 126px;
  height: 126px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .14), 0 0 0 8px rgba(255,255,255,.62);
}

.lv-seller-name-row h1 {
  color: #07142f;
  line-height: 1.04;
}

.lv-seller-meta-line {
  gap: 8px;
  margin-top: 14px;
}

.lv-seller-meta-line span {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.lv-seller-actions .lv-btn {
  min-height: 46px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.lv-seller-actions .lv-btn-primary,
.lv-seller-store-link.lv-btn-primary {
  background: #07111f;
  color: #fff;
  border-color: #07111f;
}

.lv-seller-content {
  gap: 22px;
}

.lv-seller-side-card,
.lv-seller-products,
.lv-seller-panel {
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 16px 48px rgba(15, 23, 42, .045);
}

.lv-seller-side-card {
  border-radius: 22px;
}

.lv-seller-tabs {
  position: sticky;
  top: 14px;
  z-index: 20;
  padding: 7px;
  margin-bottom: 16px;
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.lv-seller-tabs a {
  min-height: 42px;
  padding: 0 20px;
}

.lv-seller-tabs a.is-active {
  box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
}

.lv-seller-tab-panel {
  transform: translateY(10px) scale(.992);
}

.lv-seller-tab-panel.is-active {
  animation: lvSellerPanelIn .24s ease both;
}

@keyframes lvSellerPanelIn {
  from { opacity: 0; transform: translateY(10px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lv-seller-products,
.lv-seller-panel {
  border-radius: 24px;
}

.lv-seller-store-filters {
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.lv-store-search,
.lv-store-type-filter {
  min-height: 46px;
  border-color: rgba(148, 163, 184, .25);
  background: #fff;
}

.lv-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

.lv-seller-services-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

.lv-service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lv-service-preview-grid > div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 20px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, .10), transparent 38%), #fff;
}

.lv-service-preview-grid i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0f172a;
  color: #fff;
  margin-bottom: 14px;
}

.lv-service-preview-grid strong,
.lv-service-preview-grid span {
  display: block;
}

.lv-service-preview-grid strong {
  color: var(--lv-text);
  font-size: 14px;
  margin-bottom: 5px;
}

.lv-service-preview-grid span {
  color: var(--lv-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .lv-seller-tabs { top: 10px; }
}

@media (max-width: 720px) {
  .lv-seller-profile { border-radius: 24px; }
  .lv-seller-head { margin-top: -58px; }
  .lv-seller-meta-line span { min-height: 30px; }
  .lv-seller-tabs { position: fixed; top: auto; }
  .lv-service-preview-grid { grid-template-columns: 1fr; }
  .lv-seller-services-head { display: grid; }
}

/* UX fix: seller tabs switch in-place, no forced scroll/jump */
.lv-seller-tab-panels {
  position: relative;
  min-height: 260px;
  scroll-margin-top: 96px;
}
.lv-seller-tab-panel { will-change: opacity, transform; }
.lv-seller-tabs a:focus { outline: none; }
.lv-seller-tabs a:focus-visible { box-shadow: 0 0 0 3px rgba(37, 99, 235, .16), 0 12px 26px rgba(15, 23, 42, .12); }
@media (prefers-reduced-motion: reduce) {
  .lv-seller-tab-panel,
  .lv-seller-tab-panel.is-active { animation: none !important; transition: none !important; transform: none !important; }
}

/* UX fix: clean Services tab */
.lv-seller-services-panel {
  overflow: hidden;
  background: radial-gradient(circle at 12% 0%, rgba(37, 99, 235, .08), transparent 26%), radial-gradient(circle at 100% 10%, rgba(15, 23, 42, .06), transparent 30%), #fff;
}
.lv-seller-services-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.lv-services-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}
.lv-services-icon i { font-size: 20px; }
.lv-services-copy h2 { margin: 4px 0 6px; line-height: 1.18; }
.lv-services-copy p { margin: 0; color: var(--lv-text-muted); line-height: 1.65; }
.lv-seller-services-panel .lv-section-kicker { margin: 0; }
.lv-service-preview-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  row-gap: 3px;
  align-items: start;
}
.lv-service-preview-grid > div > i { grid-row: 1 / span 2; margin: 0; }
.lv-service-preview-grid strong { font-size: 15px; line-height: 1.25; }
.lv-service-preview-grid span { font-size: 13px; }
@media (max-width: 720px) {
  .lv-seller-tab-panels { min-height: 220px; scroll-margin-top: 18px; }
  .lv-seller-services-hero { grid-template-columns: 1fr; text-align: left; }
  .lv-seller-services-hero .lv-btn { justify-content: center; }
}

/* Seller public profile UI refinement — avatar, meta row, action buttons */
.lv-seller-head {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.lv-seller-info {
  display: grid;
  gap: 10px;
}

.lv-seller-meta-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}

.lv-seller-avatar-wrap {
  overflow: visible;
  isolation: isolate;
}

.lv-seller-avatar-wrap.is-pro {
  animation: none !important;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(237,242,255,.94));
  box-shadow: 0 22px 56px rgba(15, 23, 42, .18), 0 0 0 1px rgba(255,255,255,.96), 0 0 0 8px rgba(255,255,255,.58);
}

.lv-seller-avatar-wrap.is-pro::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, #7dd3fc 0%, #60a5fa 28%, #818cf8 55%, #f8fafc 72%, #c4b5fd 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .95;
  box-shadow: 0 0 26px rgba(96, 165, 250, .30), 0 0 50px rgba(129, 140, 248, .14);
  pointer-events: none;
}

.lv-seller-avatar-wrap.is-pro::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.90) 0 10%, rgba(255,255,255,0) 24%), radial-gradient(circle at 72% 78%, rgba(129, 140, 248, .18) 0, rgba(129,140,248,0) 58%);
  filter: blur(10px);
  opacity: .9;
  z-index: -1;
  pointer-events: none;
}

.lv-seller-avatar {
  position: relative;
  z-index: 2;
  border-width: 4px;
}

.lv-seller-avatar-shimmer {
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

.lv-seller-avatar-shimmer::before,
.lv-seller-avatar-shimmer::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 44%;
  height: 180%;
  top: -40%;
  left: -52%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 22%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.18) 76%, rgba(255,255,255,0) 100%);
  transform: rotate(24deg);
  animation: lvSellerAvatarSweep 4.6s ease-in-out infinite;
}

.lv-seller-avatar-shimmer::after {
  width: 16px;
  height: 16px;
  top: 16%;
  left: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,.55) 38%, rgba(255,255,255,0) 72%);
  box-shadow: 0 0 16px rgba(255,255,255,.9), 0 0 32px rgba(125, 211, 252, .46);
  animation: lvSellerSparkle 2.6s ease-in-out infinite;
}

@keyframes lvSellerAvatarSweep {
  0%, 14% { left: -58%; opacity: 0; }
  20% { opacity: .95; }
  45% { left: 118%; opacity: .82; }
  46%, 100% { left: 118%; opacity: 0; }
}

@keyframes lvSellerSparkle {
  0%, 100% { transform: scale(.72); opacity: .45; }
  50% { transform: scale(1.12); opacity: 1; }
}

.lv-seller-pro-pin {
  position: absolute;
  top: 8px;
  right: -4px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 48%, #dbeafe 100%);
  color: #2563eb;
  border: 1px solid rgba(255,255,255,.96);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .20), 0 0 0 4px rgba(255,255,255,.68);
  z-index: 5;
}

.lv-seller-pro-pin::before,
.lv-seller-pro-pin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lv-seller-pro-pin::before {
  inset: -4px;
  border: 1px solid rgba(96, 165, 250, .34);
  opacity: .65;
}

.lv-seller-pro-pin::after {
  width: 8px;
  height: 8px;
  top: 4px;
  right: 4px;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 72%);
  box-shadow: 0 0 14px rgba(255,255,255,.95);
}

.lv-seller-pro-pin i {
  font-size: 14px;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, .24));
}

.lv-seller-meta-line {
  flex: 1 1 auto;
  gap: 10px;
  margin-top: 0;
}

.lv-seller-meta-line span {
  min-height: 34px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.88));
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
  color: #5b6478;
  font-weight: 600;
}

.lv-seller-meta-line span i {
  color: #6b86f9;
}

.lv-seller-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 0;
}

.lv-seller-actions .lv-btn {
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 20px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.lv-btn-icon-shell {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.lv-btn-soft .lv-btn-icon-shell {
  background: rgba(99, 102, 241, .08);
}

.lv-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.1;
}

.lv-btn-copy strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.lv-btn-copy small {
  font-size: 11px;
  font-weight: 600;
  opacity: .72;
}

.lv-seller-actions .lv-btn-primary,
.lv-seller-store-link.lv-btn-primary {
  background: linear-gradient(135deg, #081126 0%, #0f172a 52%, #172554 100%);
  border-color: rgba(8, 17, 38, .12);
  color: #fff;
}

.lv-seller-actions .lv-btn-primary:hover,
.lv-seller-store-link.lv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}

.lv-seller-actions .lv-btn-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,247,251,.92));
  border-color: rgba(148, 163, 184, .22);
  color: #0f172a;
}

.lv-seller-actions .lv-btn-soft:hover {
  background: linear-gradient(180deg, #fff, #eef2ff);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .lv-seller-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lv-seller-meta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lv-seller-actions {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .lv-seller-head {
    display: block;
  }

  .lv-seller-avatar-wrap {
    width: 108px;
    height: 108px;
    margin-inline: auto;
    margin-bottom: 16px;
  }

  .lv-seller-name-row,
  .lv-seller-headline {
    text-align: center;
    justify-content: center;
  }

  .lv-seller-meta-actions {
    margin-top: 14px;
    gap: 14px;
  }

  .lv-seller-meta-line {
    justify-content: center;
  }

  .lv-seller-meta-line span {
    min-height: 32px;
    font-size: 12px;
  }

  .lv-seller-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .lv-seller-actions .lv-btn {
    width: 100%;
    min-height: 54px;
    justify-content: flex-start;
  }

  .lv-seller-pro-pin {
    top: 6px;
    right: 0;
    width: 30px;
    height: 30px;
  }
}

/* Seller public profile refinement v2 */
.lv-seller-info {
  min-width: 0;
}

.lv-seller-name-row {
  align-items: flex-start;
  gap: 12px;
}

.lv-seller-name-row h1 {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lv-seller-meta-actions {
  align-items: center;
}

.lv-seller-actions {
  align-self: center;
  gap: 10px;
}

.lv-seller-actions .lv-btn {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 18px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: width .25s ease, min-width .25s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lv-btn-hover-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: max-width .24s ease, opacity .18s ease, margin .24s ease;
  margin-left: 0;
}

.lv-seller-actions .lv-btn:hover,
.lv-seller-actions .lv-btn:focus-visible {
  width: 148px;
  min-width: 148px;
  justify-content: flex-start;
  padding: 0 16px;
}

.lv-seller-actions .lv-btn:hover .lv-btn-hover-label,
.lv-seller-actions .lv-btn:focus-visible .lv-btn-hover-label {
  max-width: 90px;
  opacity: 1;
  margin-left: 2px;
}

.lv-seller-actions .lv-btn .lv-btn-icon-shell {
  width: 34px;
  height: 34px;
  min-width: 34px;
  flex: 0 0 34px;
}

.lv-seller-actions .lv-btn-primary .lv-btn-icon-shell {
  background: rgba(255,255,255,.12);
}

.lv-seller-actions .lv-btn-soft .lv-btn-icon-shell {
  background: rgba(99,102,241,.08);
}

.lv-seller-actions .lv-btn-soft .lv-btn-hover-label {
  color: #0f172a;
}

.lv-seller-actions .lv-btn-primary .lv-btn-hover-label {
  color: #fff;
}

.lv-seller-section-head h2 {
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .lv-seller-name-row h1 {
    font-size: clamp(24px, 4vw, 38px);
  }

  .lv-seller-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .lv-seller-name-row {
    flex-direction: column;
    align-items: center;
  }

  .lv-seller-name-row h1 {
    text-align: center;
  }

  .lv-seller-meta-actions {
    align-items: stretch;
  }

  .lv-seller-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .lv-seller-actions .lv-btn,
  .lv-seller-actions .lv-btn:hover,
  .lv-seller-actions .lv-btn:focus-visible {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .lv-seller-actions .lv-btn .lv-btn-hover-label,
  .lv-seller-actions .lv-btn:hover .lv-btn-hover-label,
  .lv-seller-actions .lv-btn:focus-visible .lv-btn-hover-label {
    display: none;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }
}

/* Seller dashboard hero text overflow fix */
.lv-seller-hero-info h2,
.lv-seller-hero-info .lv-seller-name-row h2 {
  min-width: 0;
  max-width: 100%;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lv-seller-hero-body {
  align-items: flex-end;
}

.lv-seller-hero-body > .lv-btn {
  align-self: center;
  min-height: 44px;
  border-radius: 999px;
}

/* Seller public action buttons: stable modern icon buttons with hover tooltip */
.lv-seller-actions {
  align-self: center;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.lv-seller-actions .lv-btn,
.lv-seller-actions .lv-btn:hover,
.lv-seller-actions .lv-btn:focus-visible {
  position: relative;
  overflow: visible !important;
  width: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  border-radius: 18px !important;
  justify-content: center !important;
  align-items: center !important;
  transform: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease !important;
}

.lv-seller-actions .lv-btn:hover,
.lv-seller-actions .lv-btn:focus-visible {
  transform: translateY(-2px) !important;
}

.lv-seller-actions .lv-btn .lv-btn-icon-shell {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  margin: 0 !important;
}

.lv-seller-actions .lv-btn-hover-label {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 10px) !important;
  z-index: 30 !important;
  display: inline-flex !important;
  width: max-content !important;
  max-width: none !important;
  height: 34px !important;
  padding: 0 12px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, .94) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-50%, 6px) scale(.96) !important;
  pointer-events: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease !important;
  margin: 0 !important;
}

.lv-seller-actions .lv-btn-hover-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, .94) transparent transparent transparent;
}

.lv-seller-actions .lv-btn:hover .lv-btn-hover-label,
.lv-seller-actions .lv-btn:focus-visible .lv-btn-hover-label {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, 0) scale(1) !important;
}

.lv-seller-actions .lv-btn-primary,
.lv-seller-store-link.lv-btn-primary {
  background: linear-gradient(135deg, #07111f 0%, #111827 55%, #172554 100%) !important;
  border-color: rgba(15, 23, 42, .08) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .14) !important;
}

.lv-seller-actions .lv-btn-soft,
.lv-seller-dashboard-link.lv-btn-soft {
  background: rgba(255,255,255,.84) !important;
  border: 1px solid rgba(148, 163, 184, .28) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .07) !important;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.lv-seller-actions .lv-btn-soft:hover,
.lv-seller-dashboard-link.lv-btn-soft:hover {
  background: #fff !important;
  border-color: rgba(99, 102, 241, .24) !important;
}

.lv-seller-actions .lv-btn-soft .lv-btn-icon-shell {
  background: rgba(99, 102, 241, .08) !important;
  color: #0f172a !important;
}

@media (max-width: 720px) {
  .lv-seller-actions {
    justify-content: center;
  }
  .lv-seller-actions .lv-btn-hover-label {
    display: none !important;
  }
}

/* Account pricing description: show all plans before purchase decision */
.plan-description-modern {
  padding: 0 !important;
  border: 1px solid rgba(148, 163, 184, .18) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff, #f8fafc) !important;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(15, 23, 42, .055) !important;
}

.plan-description-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

.plan-description-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3157f6;
  font-size: 12px;
  font-weight: 800;
}

.plan-description-head h3 {
  margin: 0 0 8px !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 800 !important;
  letter-spacing: -.035em;
}

.plan-description-head p {
  margin: 0;
  max-width: 760px;
  color: #64748b;
  line-height: 1.65;
}

.plan-description-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 26px 24px;
}

.plan-info-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .035);
}

.plan-info-card.is-current {
  border-color: rgba(62, 108, 234, .38);
  box-shadow: 0 16px 38px rgba(62, 108, 234, .10);
}

.plan-info-card.is-current::after {
  content: "Đang dùng";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3157f6;
  font-size: 11px;
  font-weight: 800;
}

.plan-info-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.plan-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  font-weight: 900;
  background: #ecfdf3;
  color: #16a34a;
}

.plan-info-card-vip .plan-info-icon {
  background: #eef2ff;
  color: #3157f6;
}

.plan-info-card h4 {
  margin: 0 0 3px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.plan-info-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.plan-info-content {
  color: #334155;
  line-height: 1.75;
}

.plan-info-content p:last-child {
  margin-bottom: 0;
}

.plan-package-summary {
  padding: 0 26px 26px;
}

.plan-package-summary h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.plan-package-summary-grid {
  display: grid;
  gap: 10px;
}

.plan-summary-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
}

.plan-summary-chip strong {
  font-size: 14px;
  white-space: nowrap;
}

.plan-summary-chip span {
  color: #64748b;
  font-size: 13px;
  text-align: right;
}

.plan-summary-chip.is-current {
  border-color: rgba(62,108,234,.32);
  background: #f5f7ff;
}

@media (max-width: 768px) {
  .plan-description-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .plan-description-head,
  .plan-package-summary {
    padding-left: 18px;
    padding-right: 18px;
  }
  .plan-summary-chip {
    align-items: flex-start;
    flex-direction: column;
  }
  .plan-summary-chip span {
    text-align: left;
  }
}

/* Creator follow button on public profile avatar */
.lv-seller-avatar-wrap.has-follow-button {
  margin-bottom: 18px;
}

.lv-creator-follow-avatar-btn {
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 4px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .22), 0 0 0 1px rgba(148, 163, 184, .10);
  cursor: pointer;
  z-index: 8;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.lv-creator-follow-avatar-btn:hover,
.lv-creator-follow-avatar-btn:focus-visible {
  transform: translateX(-50%) translateY(-2px) scale(1.04);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .26), 0 0 0 4px rgba(96, 165, 250, .18);
  outline: none;
}

.lv-creator-follow-avatar-btn.is-following {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .24), 0 0 0 1px rgba(34, 197, 94, .18);
}

.lv-creator-follow-avatar-btn.is-loading {
  pointer-events: none;
  opacity: .82;
}

.lv-creator-follow-avatar-btn i {
  font-size: 15px;
  line-height: 1;
}

.lv-seller-follower-count {
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.lv-creator-follow-toast {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 99999;
  min-width: 220px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 16px;
  border-radius: 16px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .24);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}

.lv-creator-follow-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lv-creator-follow-toast.error {
  background: #991b1b;
}

@media (max-width: 720px) {
  .lv-seller-avatar-wrap.has-follow-button {
    margin-bottom: 28px;
  }

  .lv-creator-follow-avatar-btn {
    width: 40px;
    height: 40px;
    bottom: -16px;
  }

  .lv-creator-follow-toast {
    left: 16px;
    right: 16px;
    bottom: 18px;
    text-align: center;
  }
}

/* Creator follow account CRM + Pro insight gate */
.lv-follow-account-panel{
  background:#fff;
  border:1px solid rgba(148,163,184,.16);
  border-radius:26px;
  padding:24px;
  box-shadow:0 18px 48px rgba(15,23,42,.06);
}
.lv-follow-section-head{display:grid;gap:8px;margin-bottom:18px}.lv-follow-kicker{width:max-content;display:inline-flex;align-items:center;border-radius:999px;padding:7px 11px;background:#eef2ff;color:#3e6cea;font-size:12px;font-weight:900}.lv-follow-section-head h2{margin:0;color:#0f172a;font-size:clamp(22px,3vw,30px);line-height:1.12}.lv-follow-section-head p{margin:0;max-width:760px;color:#64748b;line-height:1.65}.lv-follow-creator-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px}.lv-follow-card,.lv-follow-follower-card{position:relative;display:grid;gap:14px;padding:16px;border-radius:22px;background:linear-gradient(180deg,#fff,#f8fafc);border:1px solid rgba(148,163,184,.16);box-shadow:0 12px 30px rgba(15,23,42,.045);overflow:hidden}.lv-follow-card.is-muted{opacity:.72}.lv-follow-person{display:flex;align-items:center;gap:12px;text-decoration:none;color:#0f172a;min-width:0}.lv-follow-person img{width:52px;height:52px;border-radius:999px;object-fit:cover;background:#e2e8f0;box-shadow:0 0 0 3px #fff,0 8px 18px rgba(15,23,42,.10)}.lv-follow-person span{min-width:0;display:grid}.lv-follow-person strong{font-size:15px;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.lv-follow-person small,.lv-follow-card-meta,.lv-follow-muted{color:#64748b;font-size:12px;font-weight:650}.lv-follow-card-meta{display:grid;gap:4px}.lv-follow-pill-btn.lv-creator-follow-avatar-btn{position:static!important;left:auto!important;bottom:auto!important;transform:none!important;width:max-content!important;min-width:132px!important;height:38px!important;padding:0 14px!important;border-width:0!important;border-radius:999px!important;gap:8px!important;background:linear-gradient(135deg,#22c55e,#16a34a)!important;box-shadow:0 10px 22px rgba(22,163,74,.18)!important}.lv-follow-pill-btn.lv-creator-follow-avatar-btn:not(.is-following){background:linear-gradient(135deg,#0f172a,#172554)!important;box-shadow:0 10px 22px rgba(15,23,42,.16)!important}.lv-follow-pill-btn.lv-creator-follow-avatar-btn:hover{transform:translateY(-1px)!important}.lv-follow-pill-btn span{font-size:12px;font-weight:900}.lv-follow-empty{padding:24px;border-radius:20px;background:#f8fafc;border:1px dashed rgba(148,163,184,.28);color:#64748b}.lv-follow-empty strong{display:block;color:#0f172a;font-size:17px;margin-bottom:6px}.lv-follow-empty p{margin:0;line-height:1.6}.lv-follow-insight-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:18px 0}.lv-follow-insight-grid>div{padding:16px;border-radius:20px;background:#f8fafc;border:1px solid rgba(148,163,184,.14)}.lv-follow-insight-grid span{display:block;color:#64748b;font-size:12px;font-weight:800}.lv-follow-insight-grid strong{display:block;margin-top:6px;color:#0f172a;font-size:28px;line-height:1;font-weight:950}.lv-follow-follower-list{display:grid;gap:12px}.lv-follow-follower-card{gap:12px}.lv-follow-status-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;color:#64748b;font-size:12px;font-weight:750}.lv-follow-status{display:inline-flex;align-items:center;border-radius:999px;padding:5px 9px;background:#f1f5f9;color:#64748b}.lv-follow-status.is-current{background:#dcfce7;color:#15803d}.lv-follow-status.is-paused{background:#fee2e2;color:#b91c1c}.lv-follow-timeline{list-style:none;margin:0;padding:0;display:grid;gap:8px}.lv-follow-timeline li{display:grid;grid-template-columns:16px 1fr;align-items:start;gap:9px;color:#334155}.lv-follow-timeline b{display:block;font-size:12px}.lv-follow-timeline small{display:block;color:#94a3b8;font-size:11px;margin-top:2px}.lv-follow-dot{width:10px;height:10px;border-radius:999px;background:#22c55e;margin-top:4px;box-shadow:0 0 0 4px rgba(34,197,94,.12)}.lv-follow-dot.unfollow{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.12)}.lv-follow-more{border-top:1px solid rgba(148,163,184,.16);padding-top:10px}.lv-follow-more summary{cursor:pointer;color:#3e6cea;font-size:12px;font-weight:900}.lv-follow-more .lv-follow-timeline{margin-top:10px}.lv-follow-follower-card.is-blurred>*:not(.lv-follow-person){filter:blur(3.5px);opacity:.42;pointer-events:none}.lv-follow-follower-card.is-blurred .lv-follow-person img{filter:blur(2px);opacity:.55}.lv-follow-paywall-card{position:relative;margin-top:14px;padding:22px;border-radius:24px;background:linear-gradient(135deg,#0f172a,#1e1b4b);color:#fff;box-shadow:0 18px 44px rgba(15,23,42,.18);overflow:hidden}.lv-follow-paywall-card:before{content:"";position:absolute;right:-70px;top:-80px;width:180px;height:180px;border-radius:999px;background:rgba(96,165,250,.26);filter:blur(4px)}.lv-follow-lock{position:relative;z-index:1;display:grid;place-items:center;width:42px;height:42px;border-radius:999px;background:rgba(255,255,255,.12);margin-bottom:12px}.lv-follow-paywall-card h3,.lv-follow-paywall-card p,.lv-follow-pro-benefits,.lv-follow-upgrade-btn{position:relative;z-index:1}.lv-follow-paywall-card h3{margin:0 0 8px;font-size:20px}.lv-follow-paywall-card p{margin:0;color:#cbd5e1;line-height:1.65}.lv-follow-pro-benefits{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0}.lv-follow-pro-benefits span{display:inline-flex;border-radius:999px;padding:7px 10px;background:rgba(255,255,255,.10);font-size:12px;font-weight:800}.lv-follow-upgrade-btn{display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 16px;border-radius:999px;background:#fff;color:#0f172a;text-decoration:none;font-weight:950}.lv-follow-pro-head:after{content:"Pro Creator insight";width:max-content;margin-top:2px;border-radius:999px;padding:6px 10px;background:#fff7ed;color:#d97706;font-size:12px;font-weight:900}.lv-follow-account-panel.is-pro .lv-follow-pro-head:after{content:"Đã mở khóa Pro Insight";background:#dcfce7;color:#15803d}
@media(max-width:720px){.lv-follow-account-panel{padding:18px;border-radius:22px}.lv-follow-insight-grid{grid-template-columns:1fr}.lv-follow-status-row{align-items:flex-start}.lv-follow-creator-grid{grid-template-columns:1fr}.lv-follow-pill-btn.lv-creator-follow-avatar-btn{width:100%!important}.lv-follow-pro-benefits{display:grid}.lv-follow-upgrade-btn{width:100%}}

/* v9: public creator store / gallery spacing */
.lv-seller-product-grid{
  column-gap:24px!important;
}
.lv-seller-product-grid .post-card,
.lv-seller-product-grid .design-file-card,
.lv-seller-product-grid article,
.lv-seller-product-grid .post-card.pinterest-style{
  margin-bottom:24px!important;
}
@media(max-width:1100px){
  .lv-seller-product-grid{column-gap:20px!important}
  .lv-seller-product-grid .post-card,
  .lv-seller-product-grid .design-file-card,
  .lv-seller-product-grid article,
  .lv-seller-product-grid .post-card.pinterest-style{margin-bottom:20px!important}
}
@media(max-width:640px){
  .lv-seller-product-grid{column-gap:14px!important}
  .lv-seller-product-grid .post-card,
  .lv-seller-product-grid .design-file-card,
  .lv-seller-product-grid article,
  .lv-seller-product-grid .post-card.pinterest-style{margin-bottom:14px!important}
}


.post-thumbnail-wrapper .seller-pro-badge{display:none!important;}
.post-thumbnail-wrapper .seller-featured-badge{height:28px!important;min-height:28px!important;padding:0 9px!important;font-size:10px!important;font-weight:800!important;}
