/* ==========================================================================
   Vendors Listing — Global Styles, CSS Variables & Resets
   Design: Linear.app / Stripe / Vercel inspired
   ========================================================================== */

/* ---------------------------------------------------------------------
   1. CSS Custom Properties
   --------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --vl-primary: #6C5CE7;
  --vl-primary-dark: #5A4BD1;
  --vl-primary-light: #A29BFE;
  --vl-secondary: #00CEC9;
  --vl-accent: #FD79A8;

  /* Text */
  --vl-text: #1A1A2E;
  --vl-text-light: #636E72;
  --vl-text-muted: #B2BEC3;

  /* Backgrounds */
  --vl-bg: #FFFFFF;
  --vl-bg-light: #F8F9FA;
  --vl-bg-dark: #1A1A2E;

  /* Borders */
  --vl-border: #E2E8F0;

  /* Status */
  --vl-success: #00B894;
  --vl-warning: #FDCB6E;
  --vl-danger: #E17055;
  --vl-star: #F9CA24;

  /* Shadows */
  --vl-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --vl-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --vl-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Radii */
  --vl-radius-sm: 8px;
  --vl-radius-md: 12px;
  --vl-radius-lg: 16px;
  --vl-radius-full: 9999px;

  /* Transitions */
  --vl-transition: all 0.3s ease;

  /* Typography */
  --vl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ---------------------------------------------------------------------
   2. Elementor Override Selectors
   --------------------------------------------------------------------- */
.elementor-page .vl-wrapper,
.e-con .vl-wrapper,
.elementor-widget-container .vl-wrapper,
.elementor-element .vl-wrapper {
  color: var(--vl-text) !important;
  font-family: var(--vl-font) !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* ---------------------------------------------------------------------
   3. Base Reset — scoped to .vl-wrapper
   --------------------------------------------------------------------- */
.vl-wrapper,
.vl-wrapper *,
.vl-wrapper *::before,
.vl-wrapper *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

.vl-wrapper {
  font-family: var(--vl-font) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--vl-text) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.vl-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.vl-wrapper a {
  color: inherit;
  text-decoration: none !important;
  transition: var(--vl-transition);
}

.vl-wrapper a:hover {
  color: inherit;
}

.vl-wrapper h1,
.vl-wrapper h2,
.vl-wrapper h3,
.vl-wrapper h4,
.vl-wrapper h5,
.vl-wrapper h6 {
  font-family: var(--vl-font) !important;
  color: var(--vl-text) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 16px 0 !important;
}

.vl-wrapper h1 { font-size: 40px !important; letter-spacing: -0.02em !important; }
.vl-wrapper h2 { font-size: 32px !important; letter-spacing: -0.02em !important; }
.vl-wrapper h3 { font-size: 24px !important; letter-spacing: -0.01em !important; }
.vl-wrapper h4 { font-size: 20px !important; }
.vl-wrapper h5 { font-size: 18px !important; }
.vl-wrapper h6 { font-size: 16px !important; }

.vl-wrapper p {
  margin: 0 0 16px 0 !important;
  color: var(--vl-text-light) !important;
  line-height: 1.7 !important;
}

.vl-wrapper ul,
.vl-wrapper ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vl-wrapper button {
  font-family: var(--vl-font) !important;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--vl-transition);
}

/* ---------------------------------------------------------------------
   4. Section & Container Utilities
   --------------------------------------------------------------------- */
.vl-wrapper .vl-section {
  padding: 64px 0;
}

.vl-wrapper .vl-section--sm {
  padding: 40px 0;
}

.vl-wrapper .vl-section--lg {
  padding: 96px 0;
}

.vl-wrapper .vl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vl-wrapper .vl-container--narrow {
  max-width: 800px;
}

.vl-wrapper .vl-container--wide {
  max-width: 1400px;
}

/* Section heading block */
.vl-wrapper .vl-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.vl-wrapper .vl-section-header__label {
  display: inline-block;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--vl-primary) !important;
  margin-bottom: 8px !important;
}

.vl-wrapper .vl-section-header__title {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--vl-text) !important;
  margin-bottom: 16px !important;
}

.vl-wrapper .vl-section-header__subtitle {
  font-size: 18px !important;
  color: var(--vl-text-light) !important;
  max-width: 600px;
  margin: 0 auto !important;
}

/* ---------------------------------------------------------------------
   5. Buttons
   --------------------------------------------------------------------- */
.vl-wrapper .vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: var(--vl-radius-sm) !important;
  transition: var(--vl-transition);
  cursor: pointer;
  border: 2px solid transparent !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
  white-space: nowrap;
}

.vl-wrapper .vl-btn--primary {
  background: var(--vl-primary) !important;
  color: #FFFFFF !important;
  border-color: var(--vl-primary) !important;
}

.vl-wrapper .vl-btn--primary:hover {
  background: var(--vl-primary-dark) !important;
  border-color: var(--vl-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.vl-wrapper .vl-btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.vl-wrapper .vl-btn--outline {
  background: transparent !important;
  color: var(--vl-primary) !important;
  border-color: var(--vl-primary) !important;
}

.vl-wrapper .vl-btn--outline:hover {
  background: var(--vl-primary) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.vl-wrapper .vl-btn--secondary {
  background: var(--vl-secondary) !important;
  color: #FFFFFF !important;
  border-color: var(--vl-secondary) !important;
}

.vl-wrapper .vl-btn--secondary:hover {
  background: #00b5b0 !important;
  border-color: #00b5b0 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 206, 201, 0.4);
}

.vl-wrapper .vl-btn--white {
  background: #FFFFFF !important;
  color: var(--vl-text) !important;
  border-color: #FFFFFF !important;
}

.vl-wrapper .vl-btn--white:hover {
  background: var(--vl-bg-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--vl-shadow-md);
}

.vl-wrapper .vl-btn--ghost {
  background: transparent !important;
  color: var(--vl-text-light) !important;
  border-color: var(--vl-border) !important;
}

.vl-wrapper .vl-btn--ghost:hover {
  background: var(--vl-bg-light) !important;
  color: var(--vl-text) !important;
  border-color: var(--vl-text-muted) !important;
}

.vl-wrapper .vl-btn--sm {
  padding: 8px 16px;
  font-size: 13px !important;
}

.vl-wrapper .vl-btn--lg {
  padding: 16px 32px;
  font-size: 17px !important;
  border-radius: var(--vl-radius-md) !important;
}

.vl-wrapper .vl-btn--full {
  width: 100%;
}

.vl-wrapper .vl-btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--vl-radius-sm) !important;
}

.vl-wrapper .vl-btn:disabled,
.vl-wrapper .vl-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   6. Badges
   --------------------------------------------------------------------- */
.vl-wrapper .vl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: var(--vl-radius-full);
  line-height: 1.4 !important;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.vl-wrapper .vl-badge--top-rated {
  background: linear-gradient(135deg, #F9CA24, #F0932B) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--trending {
  background: linear-gradient(135deg, #E17055, #D63031) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--verified {
  background: linear-gradient(135deg, #00B894, #00CEC9) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--elite {
  background: linear-gradient(135deg, #6C5CE7, #A29BFE) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--fast {
  background: linear-gradient(135deg, #0984E3, #74B9FF) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--value {
  background: linear-gradient(135deg, #00CEC9, #81ECEC) !important;
  color: #1A1A2E !important;
}

.vl-wrapper .vl-badge--new {
  background: var(--vl-accent) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-badge--featured {
  background: var(--vl-primary) !important;
  color: #FFFFFF !important;
}

/* Badge with icon */
.vl-wrapper .vl-badge__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
   7. Star Ratings
   --------------------------------------------------------------------- */
.vl-wrapper .vl-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.vl-wrapper .vl-stars__star {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.vl-wrapper .vl-stars__star svg {
  width: 100%;
  height: 100%;
}

.vl-wrapper .vl-star--full {
  color: var(--vl-star) !important;
  fill: var(--vl-star);
}

.vl-wrapper .vl-star--half {
  color: var(--vl-star) !important;
}

.vl-wrapper .vl-star--empty {
  color: var(--vl-border) !important;
  fill: var(--vl-border);
}

/* CSS-only stars using unicode */
.vl-wrapper .vl-stars--css .vl-stars__star::before {
  font-size: 18px;
  line-height: 1;
}

.vl-wrapper .vl-stars--css .vl-star--full::before {
  content: "\2605";
  color: var(--vl-star) !important;
}

.vl-wrapper .vl-stars--css .vl-star--half::before {
  content: "\2605";
  color: var(--vl-star) !important;
  background: linear-gradient(90deg, var(--vl-star) 50%, var(--vl-border) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vl-wrapper .vl-stars--css .vl-star--empty::before {
  content: "\2605";
  color: var(--vl-border) !important;
}

.vl-wrapper .vl-stars__value {
  margin-left: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--vl-text) !important;
}

.vl-wrapper .vl-stars__count {
  margin-left: 4px;
  font-size: 13px !important;
  color: var(--vl-text-muted) !important;
}

/* Larger star variants */
.vl-wrapper .vl-stars--lg .vl-stars__star {
  width: 24px;
  height: 24px;
}

.vl-wrapper .vl-stars--lg .vl-stars--css .vl-stars__star::before {
  font-size: 24px;
}

/* ---------------------------------------------------------------------
   8. Grid & Flex Utilities
   --------------------------------------------------------------------- */
.vl-wrapper .vl-grid {
  display: grid;
  gap: 24px;
}

.vl-wrapper .vl-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.vl-wrapper .vl-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.vl-wrapper .vl-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.vl-wrapper .vl-grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.vl-wrapper .vl-flex {
  display: flex;
}

.vl-wrapper .vl-flex--wrap {
  flex-wrap: wrap;
}

.vl-wrapper .vl-flex--center {
  align-items: center;
  justify-content: center;
}

.vl-wrapper .vl-flex--between {
  justify-content: space-between;
  align-items: center;
}

.vl-wrapper .vl-flex--col {
  flex-direction: column;
}

.vl-wrapper .vl-flex--gap-sm {
  gap: 8px;
}

.vl-wrapper .vl-flex--gap-md {
  gap: 16px;
}

.vl-wrapper .vl-flex--gap-lg {
  gap: 24px;
}

/* ---------------------------------------------------------------------
   9. Pills / Tags
   --------------------------------------------------------------------- */
.vl-wrapper .vl-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--vl-primary) !important;
  background: rgba(108, 92, 231, 0.08) !important;
  border-radius: var(--vl-radius-full);
  transition: var(--vl-transition);
}

.vl-wrapper .vl-pill:hover {
  background: rgba(108, 92, 231, 0.15) !important;
}

.vl-wrapper .vl-pill--active {
  background: var(--vl-primary) !important;
  color: #FFFFFF !important;
}

.vl-wrapper .vl-pill--removable {
  padding-right: 8px;
}

.vl-wrapper .vl-pill__remove {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px !important;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--vl-transition);
}

.vl-wrapper .vl-pill__remove:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------------------
   10. Loading Spinner
   --------------------------------------------------------------------- */
.vl-wrapper .vl-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vl-wrapper .vl-spinner__circle {
  width: 32px;
  height: 32px;
  border: 3px solid var(--vl-border);
  border-top-color: var(--vl-primary);
  border-radius: 50%;
  animation: vl-spin 0.8s linear infinite;
}

.vl-wrapper .vl-spinner--sm .vl-spinner__circle {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.vl-wrapper .vl-spinner--lg .vl-spinner__circle {
  width: 48px;
  height: 48px;
  border-width: 4px;
}

.vl-wrapper .vl-spinner--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

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

/* Skeleton loader */
.vl-wrapper .vl-skeleton {
  background: linear-gradient(90deg, var(--vl-bg-light) 25%, #E8ECF0 50%, var(--vl-bg-light) 75%);
  background-size: 200% 100%;
  animation: vl-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--vl-radius-sm);
}

@keyframes vl-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------------------------------------------------------------------
   11. Alerts / Messages
   --------------------------------------------------------------------- */
.vl-wrapper .vl-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--vl-radius-md);
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  border: 1px solid transparent;
}

.vl-wrapper .vl-alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.vl-wrapper .vl-alert__content {
  flex: 1;
}

.vl-wrapper .vl-alert__title {
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}

.vl-wrapper .vl-alert--success {
  background: rgba(0, 184, 148, 0.08) !important;
  border-color: rgba(0, 184, 148, 0.2) !important;
  color: #00856A !important;
}

.vl-wrapper .vl-alert--error {
  background: rgba(225, 112, 85, 0.08) !important;
  border-color: rgba(225, 112, 85, 0.2) !important;
  color: #C0392B !important;
}

.vl-wrapper .vl-alert--warning {
  background: rgba(253, 203, 110, 0.12) !important;
  border-color: rgba(253, 203, 110, 0.3) !important;
  color: #B7791F !important;
}

.vl-wrapper .vl-alert--info {
  background: rgba(108, 92, 231, 0.06) !important;
  border-color: rgba(108, 92, 231, 0.15) !important;
  color: var(--vl-primary) !important;
}

.vl-wrapper .vl-alert__close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--vl-transition);
}

.vl-wrapper .vl-alert__close:hover {
  opacity: 1;
}

/* ---------------------------------------------------------------------
   12. Divider
   --------------------------------------------------------------------- */
.vl-wrapper .vl-divider {
  border: none;
  height: 1px;
  background: var(--vl-border);
  margin: 24px 0;
}

/* ---------------------------------------------------------------------
   13. Avatar
   --------------------------------------------------------------------- */
.vl-wrapper .vl-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--vl-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vl-wrapper .vl-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vl-wrapper .vl-avatar--sm {
  width: 32px;
  height: 32px;
}

.vl-wrapper .vl-avatar--lg {
  width: 56px;
  height: 56px;
}

.vl-wrapper .vl-avatar--xl {
  width: 72px;
  height: 72px;
}

.vl-wrapper .vl-avatar__initials {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--vl-primary) !important;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   14. Card Base
   --------------------------------------------------------------------- */
.vl-wrapper .vl-card {
  background: var(--vl-bg) !important;
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius-md);
  overflow: hidden;
  transition: var(--vl-transition);
}

.vl-wrapper .vl-card:hover {
  box-shadow: var(--vl-shadow-md);
  border-color: transparent;
}

.vl-wrapper .vl-card__body {
  padding: 24px;
}

/* ---------------------------------------------------------------------
   15. Tooltip
   --------------------------------------------------------------------- */
.vl-wrapper [data-vl-tooltip] {
  position: relative;
}

.vl-wrapper [data-vl-tooltip]::after {
  content: attr(data-vl-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  background: var(--vl-bg-dark);
  color: #FFFFFF;
  font-size: 12px !important;
  font-weight: 500 !important;
  border-radius: var(--vl-radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.vl-wrapper [data-vl-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------------------------------------------------------------------
   16. Screen Reader Only
   --------------------------------------------------------------------- */
.vl-wrapper .vl-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------------------------------------------------------------------
   17. Responsive — Tablet
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .vl-wrapper .vl-container {
    padding: 0 20px;
  }

  .vl-wrapper .vl-section {
    padding: 48px 0;
  }

  .vl-wrapper .vl-section--lg {
    padding: 64px 0;
  }

  .vl-wrapper .vl-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vl-wrapper .vl-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vl-wrapper .vl-section-header__title {
    font-size: 30px !important;
  }

  .vl-wrapper h1 { font-size: 34px !important; }
  .vl-wrapper h2 { font-size: 28px !important; }
}

/* ---------------------------------------------------------------------
   18. Responsive — Mobile
   --------------------------------------------------------------------- */
@media (max-width: 768px) {
  .vl-wrapper .vl-container {
    padding: 0 16px;
  }

  .vl-wrapper .vl-section {
    padding: 40px 0;
  }

  .vl-wrapper .vl-section--lg {
    padding: 48px 0;
  }

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

  .vl-wrapper .vl-grid--auto {
    grid-template-columns: 1fr;
  }

  .vl-wrapper .vl-section-header__title {
    font-size: 26px !important;
  }

  .vl-wrapper .vl-section-header__subtitle {
    font-size: 16px !important;
  }

  .vl-wrapper h1 { font-size: 28px !important; }
  .vl-wrapper h2 { font-size: 24px !important; }
  .vl-wrapper h3 { font-size: 20px !important; }

  .vl-wrapper .vl-btn--lg {
    padding: 14px 24px;
    font-size: 15px !important;
  }
}

/* ══════════════════════════════════════════════════
 * Password visibility toggle — shared across forms
 * ══════════════════════════════════════════════════ */
.vl-password-wrap {
  position: relative !important;
  display: block !important;
}
.vl-password-wrap .vl-password-input,
.vl-password-wrap input[type="password"],
.vl-password-wrap input[type="text"][data-vl-pw="1"] {
  padding-right: 44px !important;
  width: 100% !important;
}
.vl-password-toggle {
  position: absolute !important;
  top: 50% !important;
  right: 8px !important;
  transform: translateY(-50%) !important;
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  color: #6b7280 !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.vl-password-toggle:hover {
  background: rgba(108, 92, 231, 0.08) !important;
  color: #6C5CE7 !important;
}
.vl-password-toggle > * {
  pointer-events: none !important;
}
.vl-password-toggle__icon--eye-off { display: none !important; }
.vl-password-toggle.is-visible .vl-password-toggle__icon--eye { display: none !important; }
.vl-password-toggle.is-visible .vl-password-toggle__icon--eye-off { display: inline-block !important; color: #6C5CE7 !important; }

/* ═══ Instagram/Netflix-style inline verified badge ═══
   Place after the business name via render_verified_check(). */
.vl-verified-check {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    margin-left: 6px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    /* Nudge to sit visually centered with capital letter x-height */
    top: 0 !important;
    transform: translateY(-1px) !important;
}
.vl-verified-check svg {
    display: block !important;
    filter: drop-shadow(0 1px 2px rgba(29, 155, 240, 0.25)) !important;
}
/* Ensure name containers allow the inline SVG to sit beside the text */
.vl-wrapper .vl-vendor-grid__name,
.vl-wrapper .vl-vendor-card__name a,
.vl-wrapper .vl-detail__name,
.vl-wrapper .vl-profile__name,
.vl-wrapper .vl-dashboard__user-name {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: wrap !important;
}
/* On dark hero covers keep the white tick visible with a subtle glow */
.vl-wrapper .vl-detail__name .vl-verified-check svg,
.vl-wrapper .vl-profile__name .vl-verified-check svg {
    filter: drop-shadow(0 2px 6px rgba(29, 155, 240, 0.45)) !important;
}

/* ══════════════════════════════════════════════════
 * Category picker — shared between register + dashboard
 * ══════════════════════════════════════════════════ */
.vl-catpicker {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    background: #fff !important;
    max-height: 340px !important;
    overflow-y: auto !important;
}
.vl-catpicker__limit {
    margin: 0 0 10px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    font-size: 12px !important;
    color: #6b7280 !important;
}
.vl-catpicker__count { font-weight: 700 !important; color: #6C5CE7 !important; }
.vl-catpicker__tree {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
.vl-catpicker__empty {
    margin: 0 !important;
    padding: 12px 0 !important;
    font-size: 13px !important;
    color: #9ca3af !important;
    text-align: center !important;
}
.vl-catpicker__parent-group {
    padding-bottom: 6px !important;
    border-bottom: 1px dashed #f3f4f6 !important;
}
.vl-catpicker__parent-group:last-child { border-bottom: 0 !important; }
.vl-wrapper .vl-catpicker .vl-catpicker__label,
.vl-catpicker__label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 6px 8px !important;
    margin: 0 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    text-align: left !important;
    transition: background 0.15s ease !important;
}
.vl-wrapper .vl-catpicker .vl-catpicker__name,
.vl-catpicker__name {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.vl-catpicker__label:hover { background: #f9fafb !important; }
.vl-catpicker__label--parent {
    font-weight: 600 !important;
}
.vl-catpicker__label--child {
    font-weight: 400 !important;
    color: #374151 !important;
    font-size: 13px !important;
}
.vl-catpicker__children {
    padding-left: 26px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin-top: 2px !important;
}
/* Force tight checkbox size — beats the dashboard's global input rules
   that set width:100% + height:48px + padding. */
.vl-wrapper .vl-catpicker input[type="checkbox"].vl-catpicker__input,
.vl-wrapper .vl-catpicker__input,
.vl-catpicker__input {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 4px !important;
    border: 1px solid #d1d5db !important;
    background: #fff !important;
    box-shadow: none !important;
    accent-color: #6C5CE7 !important;
    cursor: pointer !important;
    flex: 0 0 16px !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}
.vl-catpicker__input:disabled + .vl-catpicker__name {
    color: #9ca3af !important;
}
.vl-catpicker__add {
    margin-top: 12px !important;
    padding-top: 10px !important;
    border-top: 1px solid #f3f4f6 !important;
}
.vl-catpicker__add summary {
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #6C5CE7 !important;
    padding: 6px 2px !important;
    list-style: none !important;
    user-select: none !important;
}
.vl-catpicker__add summary::-webkit-details-marker { display: none !important; }
.vl-catpicker__add summary:hover { text-decoration: underline !important; }
.vl-catpicker__add-form {
    margin-top: 10px !important;
}
.vl-catpicker__add-row {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 8px !important;
}
.vl-wrapper .vl-catpicker input.vl-catpicker__add-name,
.vl-wrapper .vl-catpicker select.vl-catpicker__add-parent,
.vl-catpicker__add-name,
.vl-catpicker__add-parent {
    padding: 8px 12px !important;
    height: 38px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    background: #fff !important;
    color: #1f2937 !important;
    outline: none !important;
    width: auto !important;
    min-width: 0 !important;
}
.vl-catpicker__add-name { width: 100% !important; }
.vl-catpicker__add-name:focus,
.vl-catpicker__add-parent:focus {
    border-color: #6C5CE7 !important;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15) !important;
}
.vl-catpicker__add-btn {
    padding: 8px 18px !important;
    background: #6C5CE7 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}
.vl-catpicker__add-btn:hover { background: #5849d1 !important; }
.vl-catpicker__add-btn:disabled { opacity: 0.6 !important; cursor: wait !important; }
.vl-catpicker__add-msg {
    margin-top: 8px !important;
    font-size: 12px !important;
    color: #6b7280 !important;
    min-height: 18px !important;
}
.vl-catpicker__add-msg.is-error { color: #dc2626 !important; }
.vl-catpicker__add-msg.is-success { color: #059669 !important; }

@media (max-width: 600px) {
    .vl-catpicker__add-row {
        grid-template-columns: 1fr !important;
    }
    .vl-catpicker__children { padding-left: 20px !important; }
}

/* ============================================================
   Favorite (Save Vendor) Button — works on cards + detail
   ============================================================ */
.vl-fav-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    color: #1a1a2e !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    font: inherit !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-shadow: none !important;
}
.vl-fav-btn svg { fill: none; transition: fill 0.2s ease, stroke 0.2s ease; }
.vl-fav-btn:hover,
.vl-fav-btn:focus,
.vl-fav-btn:focus-visible {
    background: #ffffff !important;
    background-image: none !important;
    color: var(--vl-primary, #6C5CE7) !important;
    border-color: var(--vl-primary, #6C5CE7) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(108, 92, 231, 0.18) !important;
    outline: none !important;
}
.vl-fav-btn:hover svg { stroke: var(--vl-primary, #6C5CE7); }
.vl-fav-btn.is-active {
    color: var(--vl-primary, #6C5CE7) !important;
    border-color: var(--vl-primary, #6C5CE7) !important;
    background: #ffffff !important;
    background-image: none !important;
}
.vl-fav-btn.is-active svg { fill: var(--vl-primary, #6C5CE7); stroke: var(--vl-primary, #6C5CE7); }
.vl-fav-btn.is-loading { opacity: 0.6 !important; cursor: wait !important; }

/* Card variant — small floating heart on top-right of card image */
.vl-fav-btn--card {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 5;
}
.vl-vendor-grid__image,
.vl-vendor-card__image { position: relative; }

/* Detail variant — pill button next to Contact/Phone */
.vl-fav-btn--detail {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    height: 46px;
}
.vl-fav-btn--detail.is-active::after { content: ''; }

/* ============================================================
   My Account: Favorites + Inquiries tab content
   ============================================================ */
.vl-account-tab { padding: 4px 0; }
.vl-account-tab__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.vl-account-tab__lead {
    font-size: 14px;
    color: #636E72;
    margin: 0 0 22px;
}

/* Empty state */
.vl-account-tab__empty {
    text-align: center;
    padding: 50px 20px;
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    border-radius: 14px;
}
.vl-account-tab__empty h3 {
    margin: 14px 0 6px;
    font-size: 17px;
    color: #1a1a2e;
}
.vl-account-tab__empty p {
    margin: 0 0 18px;
    color: #636E72;
    font-size: 14px;
}
.vl-account-tab__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vl-account-tab__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
    color: #fff;
}

/* Favorites grid */
.vl-account-tab__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.vl-fav-card {
    position: relative;
    background: #fff;
    border: 1px solid #ECEFF4;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.vl-fav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(108, 92, 231, 0.12);
    border-color: rgba(108, 92, 231, 0.2);
}
.vl-fav-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
    overflow: hidden;
}
.vl-fav-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vl-fav-card__media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #cbd5e1;
}
.vl-fav-card__body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vl-fav-card__title {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.3;
}
.vl-fav-card__title:hover { color: #6C5CE7; }
.vl-fav-card__tagline {
    margin: 0;
    font-size: 13px;
    color: #636E72;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vl-fav-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #636E72;
    margin-top: 4px;
}
.vl-fav-card__loc { display: inline-flex; align-items: center; gap: 4px; }
.vl-fav-card__rating { color: #f59e0b; font-weight: 600; }
.vl-fav-card__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.vl-fav-card__remove:hover { transform: scale(1.08); }

/* Inquiry cards */
.vl-account-tab__inquiries {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vl-inq-card {
    background: #fff;
    border: 1px solid #ECEFF4;
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.25s ease;
}
.vl-inq-card:hover { border-color: rgba(108, 92, 231, 0.25); box-shadow: 0 8px 22px rgba(108, 92, 231, 0.06); }
.vl-inq-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.vl-inq-card__head-l {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.vl-inq-card__vendor {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    text-decoration: none;
}
.vl-inq-card__vendor:hover { color: #6C5CE7; }
.vl-inq-card__event {
    font-size: 13px;
    color: #636E72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.vl-inq-card__status {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.vl-inq-card__status--new { background: #ede9fe; color: #6C5CE7; }
.vl-inq-card__status--contacted { background: #d1fae5; color: #047857; }
.vl-inq-card__status--closed { background: #f3f4f6; color: #6b7280; }
.vl-inq-card__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px 18px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.vl-inq-card__grid > div { display: flex; flex-direction: column; gap: 2px; }
.vl-inq-card__k {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.vl-inq-card__v { font-size: 14px; color: #1a1a2e; font-weight: 500; }
.vl-inq-card__msg {
    margin: 12px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 10px;
    border-left: 3px solid #6C5CE7;
}
.vl-inq-card__foot {
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .vl-account-tab__grid { grid-template-columns: 1fr; }
    .vl-fav-btn--detail .vl-fav-btn__label,
    .vl-share-btn--detail .vl-share-btn__label { display: none; }
    .vl-fav-btn--detail,
    .vl-share-btn--detail { width: 46px; padding: 0; }
}

/* ============================================================
   Share Button (matches favorite button styling)
   ============================================================ */
.vl-share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    color: #1a1a2e !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    font: inherit !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-shadow: none !important;
}
.vl-share-btn:hover,
.vl-share-btn:focus,
.vl-share-btn:focus-visible {
    background: #ffffff !important;
    background-image: none !important;
    color: var(--vl-primary, #6C5CE7) !important;
    border-color: var(--vl-primary, #6C5CE7) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(108, 92, 231, 0.18) !important;
    outline: none !important;
}
.vl-share-btn.is-copied {
    color: #047857 !important;
    border-color: #047857 !important;
}
.vl-share-btn--detail {
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 46px !important;
}

/* ============================================================
   Vendor Dashboard — Business Hours editor
   ============================================================ */
.vl-hours-editor {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #ECEFF4;
    border-radius: 12px;
    padding: 14px;
}
.vl-hours-row {
    display: grid;
    grid-template-columns: 110px 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    transition: opacity 0.2s ease;
}
.vl-hours-row.is-closed { opacity: 0.55; }
.vl-hours-row__label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}
.vl-hours-row__sep {
    color: #94a3b8;
    font-weight: 600;
}
.vl-hours-row input[type="time"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}
.vl-hours-row input[type="time"]:focus {
    outline: none;
    border-color: var(--vl-primary, #6C5CE7);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
.vl-hours-row__closed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.vl-hours-row__closed input { margin: 0; cursor: pointer; }
@media (max-width: 600px) {
    .vl-hours-row {
        grid-template-columns: 1fr 1fr auto 1fr;
        grid-template-areas:
            "label label label label"
            "open sep close closed";
        row-gap: 6px;
    }
    .vl-hours-row__label { grid-area: label; }
    .vl-hours-row__open  { grid-area: open; }
    .vl-hours-row__sep   { grid-area: sep; }
    .vl-hours-row__close { grid-area: close; }
    .vl-hours-row__closed { grid-area: closed; }
}

/* ============================================================
   Vendor Detail — Business Hours card
   ============================================================ */
.vl-hours-card .vl-hours-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    background: #f3f4f6;
    color: #6b7280;
}
.vl-hours-card .vl-hours-card__status.is-open {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}
.vl-hours-card .vl-hours-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    box-shadow: 0 0 0 0 rgba(107, 114, 128, 0.4);
}
.vl-hours-card .vl-hours-card__status.is-open .vl-hours-card__dot {
    background: #10b981;
    animation: vlHoursPulse 2s infinite;
}
@keyframes vlHoursPulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.vl-hours-card__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}
.vl-hours-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    transition: background 0.2s ease;
}
.vl-hours-card__row + .vl-hours-card__row {
    border-top: 1px solid #f1f5f9;
}
.vl-hours-card__row.is-today {
    background: rgba(108, 92, 231, 0.08);
    font-weight: 600;
    border-top-color: transparent !important;
}
.vl-hours-card__row.is-today + .vl-hours-card__row { border-top-color: transparent; }
.vl-hours-card__row.is-closed-day .vl-hours-card__time {
    color: #94a3b8;
    font-style: italic;
}
.vl-hours-card__day { color: #1a1a2e; }
.vl-hours-card__time { color: #475569; font-variant-numeric: tabular-nums; }

/* ============================================================
   Banner Ads (sponsored zones)
   ============================================================ */
.vl-banner-zone {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.vl-banner-zone.is-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.vl-banner-ad {
    position: relative;
    background: #ffffff;
    border: 1px solid #ECEFF4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vl-banner-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.16);
}
.vl-banner-ad__sponsor {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    z-index: 1;
}
.vl-banner-ad__link {
    display: block;
    line-height: 0;
}
.vl-banner-ad img {
    width: 100%;
    height: auto;
    display: block;
}

/* Editor placeholder */
.vl-banner-zone--placeholder .vl-banner-zone__placeholder {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    padding: 28px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    aspect-ratio: 1 / 2;
    justify-content: center;
}
.vl-banner-zone__placeholder strong { color: #1a1a2e; font-size: 14px; }
.vl-banner-zone__placeholder span { font-size: 13px; color: #475569; font-weight: 600; }
.vl-banner-zone__placeholder small { font-size: 12px; color: #94a3b8; max-width: 220px; line-height: 1.4; }

@media (max-width: 768px) {
    .vl-banner-zone { display: none; }
}

/* ============================================================
   Sponsor Banner widget (direct upload)
   ============================================================ */
.vl-sponsor-banner__wrap {
    display: flex;
    width: 100%;
    justify-content: center;
}
.vl-sponsor-banner__wrap.is-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.vl-sponsor-banner {
    position: relative;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid #ECEFF4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vl-sponsor-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.16);
}
.vl-sponsor-banner__pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    z-index: 1;
}
.vl-sponsor-banner__link {
    display: block;
    line-height: 0;
}
.vl-sponsor-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dummy / placeholder state — "Your Ad Here / $150 / month" card */
.vl-sponsor-banner--placeholder {
    border: 2px dashed rgba(108, 92, 231, 0.3);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.06) 0%, rgba(0, 206, 201, 0.06) 100%);
    box-shadow: none;
}
.vl-sponsor-banner--placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(108, 92, 231, 0.18);
    border-color: rgba(108, 92, 231, 0.5);
}
.vl-sponsor-banner__ph {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    aspect-ratio: 1 / 1.6;
    justify-content: center;
}
.vl-sponsor-banner__ph-pill {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.8px;
    font-weight: 700;
    text-transform: uppercase;
}
.vl-sponsor-banner__ph-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}
.vl-sponsor-banner__ph-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}
.vl-sponsor-banner__ph-price strong {
    font-size: 32px;
    font-weight: 800;
    color: #6C5CE7;
}
.vl-sponsor-banner__ph-price em {
    font-style: normal;
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.vl-sponsor-banner__ph-sub {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.4;
    max-width: 240px;
}
.vl-sponsor-banner__ph-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}
.vl-sponsor-banner__ph-btn:hover,
.vl-sponsor-banner__ph-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
    color: #ffffff !important;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
    background-image: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
}

/* "No ad available" empty card — shown to customers + guests */
.vl-sponsor-banner.vl-sponsor-banner--empty {
    border: 1px dashed #e2e8f0;
    background: #f8fafc;
    box-shadow: none;
    color: #64748b;
}
.vl-sponsor-banner.vl-sponsor-banner--empty:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.vl-sponsor-banner__empty {
    padding: 28px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1 / 1.6;
    justify-content: center;
}
.vl-sponsor-banner__empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.08);
    color: #6C5CE7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vl-sponsor-banner__empty-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}
.vl-sponsor-banner__empty-sub {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    max-width: 240px;
}
.vl-sponsor-banner__empty-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12.5px;
    line-height: 1.3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    max-width: 100%;
}
.vl-sponsor-banner__empty-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
    color: #fff !important;
}

/* Force visibility — beats theme/Elementor button resets */
.vl-wrapper .vl-sponsor-banner__ph-btn,
.vl-sponsor-banner--placeholder .vl-sponsor-banner__ph-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 22px !important;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
    background-image: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
    background-color: #6C5CE7 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    text-shadow: none !important;
    margin-top: 4px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: 0 4px 14px rgba(108, 92, 231, 0.25) !important;
}

/* ============================================================
   Banner rotator — cycle multiple ads in same zone
   ============================================================ */
.vl-banner-rotator { position: relative; }
.vl-banner-rotator.is-multi .vl-banner-ad {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.vl-banner-rotator.is-multi .vl-banner-ad.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}
.vl-banner-rotator__dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.vl-banner-rotator__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.vl-banner-rotator__dot.is-active { background: #fff; transform: scale(1.3); }

/* ============================================================
   Public banner ad signup popup
   ============================================================ */
.vl-banner-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vl-banner-popup[hidden] { display: none; }
.vl-banner-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.vl-banner-popup__panel {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px 32px 28px;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.3);
    z-index: 1;
}
.vl-banner-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.vl-banner-popup__close:hover { background: #e2e8f0; transform: scale(1.05); }
.vl-banner-popup__head { text-align: center; margin-bottom: 24px; }
.vl-banner-popup__pill {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 12px;
}
.vl-banner-popup__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}
.vl-banner-popup__sub {
    margin: 0;
    color: #636E72;
    font-size: 14px;
    line-height: 1.5;
}
.vl-banner-popup__form { display: flex; flex-direction: column; gap: 14px; }
.vl-banner-popup__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vl-banner-popup__form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}
.vl-banner-popup__form input[type="text"],
.vl-banner-popup__form input[type="email"],
.vl-banner-popup__form input[type="tel"],
.vl-banner-popup__form input[type="url"],
.vl-banner-popup__form select {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    font-weight: 500;
    color: #1a1a2e;
    width: 100%;
    box-sizing: border-box;
}
.vl-banner-popup__form input:focus,
.vl-banner-popup__form select:focus {
    outline: none;
    border-color: #6C5CE7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
.vl-banner-popup__form select[multiple] {
    padding: 6px;
    min-height: 130px;
}
.vl-banner-popup__field { display: flex; flex-direction: column; gap: 5px; }
.vl-banner-popup__field small { font-size: 11px; color: #94a3b8; font-weight: 500; }
.vl-banner-popup__upload {
    display: flex;
    gap: 10px;
    align-items: center;
}
.vl-banner-popup__preview {
    width: 96px;
    height: 64px;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    overflow: hidden;
    flex-shrink: 0;
}
.vl-banner-popup__preview img { width: 100%; height: 100%; object-fit: cover; }
.vl-banner-popup__preview-empty { font-size: 11px; color: #94a3b8; padding: 4px 8px; text-align: center; }
.vl-banner-popup__btn-ghost {
    padding: 9px 16px;
    background: #f1f5f9;
    color: #1a1a2e;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}
.vl-banner-popup__btn-ghost:hover { background: #e2e8f0; }
.vl-banner-popup__total {
    padding: 10px 14px;
    background: rgba(108,92,231,0.08);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #6C5CE7;
    text-align: center;
}
.vl-banner-popup__submit {
    margin-top: 6px;
    padding: 14px 20px;
    border: 0;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.vl-banner-popup__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
}
.vl-banner-popup__submit:disabled { opacity: 0.7; cursor: wait; }
.vl-banner-popup__msg {
    margin: 0;
    font-size: 13px;
    text-align: center;
}
.vl-banner-popup__msg.is-error { color: #dc2626; }
.vl-banner-popup__msg.is-success { color: #047857; }

@media (max-width: 540px) {
    .vl-banner-popup__panel { padding: 24px 20px; }
    .vl-banner-popup__row { grid-template-columns: 1fr; }
}

/* Gate view (non-vendors) */
.vl-banner-popup__gate {
    text-align: center;
    padding: 8px 4px 4px;
}
.vl-banner-popup__gate-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    color: #6C5CE7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.vl-banner-popup__gate-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}
.vl-banner-popup__gate-text {
    margin: 0 0 20px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}
.vl-banner-popup__gate-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.vl-banner-popup__submit--inline {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    line-height: 1.2;
}

/* ============================================================
   Banner ad return notice (after Stripe redirect)
   ============================================================ */
.vl-banner-return-notice {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 99998;
    width: calc(100% - 32px);
    max-width: 540px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}
.vl-banner-return-notice.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}
.vl-banner-return-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
    border-left: 4px solid #6C5CE7;
}
.vl-banner-return-notice--success .vl-banner-return-notice__inner { border-left-color: #10b981; }
.vl-banner-return-notice--warn .vl-banner-return-notice__inner { border-left-color: #f59e0b; }
.vl-banner-return-notice--info .vl-banner-return-notice__inner { border-left-color: #6C5CE7; }
.vl-banner-return-notice__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #6C5CE7;
}
.vl-banner-return-notice--success .vl-banner-return-notice__icon { background: #10b981; }
.vl-banner-return-notice--warn .vl-banner-return-notice__icon { background: #f59e0b; }
.vl-banner-return-notice--info .vl-banner-return-notice__icon { background: #6C5CE7; }
.vl-banner-return-notice__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vl-banner-return-notice__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}
.vl-banner-return-notice__text {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}
.vl-banner-return-notice__close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.vl-banner-return-notice__close:hover {
    background: #f1f5f9;
    color: #1a1a2e;
}

@media (max-width: 540px) {
    .vl-banner-return-notice { top: 12px; }
    .vl-banner-return-notice__inner { padding: 14px 16px; }
}

/* ============================================================
   Vendor Dashboard — Banner Ads tab
   ============================================================ */
.vl-dashboard__panel-subhead {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 24px 0 14px;
}
.vl-dashboard__notice {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 18px;
}
.vl-dashboard__notice--warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}
.vl-dashboard__banners {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}
.vl-dashboard__banner-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 14px;
    border: 1px solid #ECEFF4;
    border-radius: 12px;
    background: #fff;
}
.vl-dashboard__banner-thumb {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
}
.vl-dashboard__banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vl-dashboard__banner-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.vl-dashboard__banner-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.vl-dashboard__banner-row strong { font-size: 14px; color: #1a1a2e; }
.vl-dashboard__banner-status {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f3f4f6;
    color: #6b7280;
}
.vl-dashboard__banner-status--publish { background: #d1fae5; color: #047857; }
.vl-dashboard__banner-status--pending { background: #fef3c7; color: #92400e; }
.vl-dashboard__banner-zones { margin: 0; font-size: 12px; color: #636E72; }
.vl-dashboard__banner-stats { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: #475569; margin-top: 4px; }
.vl-dashboard__banner-stats strong { color: #1a1a2e; }

.vl-dashboard__banner-card { position: relative; }
.vl-dashboard__banner-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}
.vl-dashboard__banner-delete:hover {
    background: #dc2626;
    color: #fff;
    transform: scale(1.05);
}

/* ============================================================
   Generic delete-confirmation modal
   ============================================================ */
.vl-confirm {
    position: fixed;
    inset: 0;
    z-index: 99997;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.vl-confirm[hidden] { display: none; }
.vl-confirm.is-visible { opacity: 1; }
.vl-confirm__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.vl-confirm__panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.3);
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.vl-confirm.is-visible .vl-confirm__panel { transform: scale(1); }
.vl-confirm__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.vl-confirm__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}
.vl-confirm__text {
    margin: 0 0 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.vl-confirm__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.vl-confirm__btn {
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.vl-confirm__btn--ghost {
    background: #f1f5f9;
    color: #1a1a2e;
}
.vl-confirm__btn--ghost:hover { background: #e2e8f0; }
.vl-confirm__btn--danger {
    background: #dc2626;
    color: #fff;
}
.vl-confirm__btn--danger:hover {
    background: #b91c1c;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
    transform: translateY(-1px);
}
.vl-confirm__btn:disabled { opacity: 0.7; cursor: wait; }

.vl-banner-buy__pricing {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(108,92,231,0.08) 0%, rgba(0,206,201,0.08) 100%);
    border: 1px solid rgba(108,92,231,0.2);
    border-radius: 999px;
    margin-bottom: 18px;
}
.vl-banner-buy__pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.6px; color: #6C5CE7; text-transform: uppercase; }
.vl-banner-buy__pricing-amount { font-size: 18px; font-weight: 800; color: #1a1a2e; }
.vl-banner-buy__pricing-amount em { font-style: normal; font-size: 12px; color: #94a3b8; font-weight: 600; }
.vl-banner-buy__image {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.vl-banner-buy__image-preview {
    width: 120px;
    height: 80px;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    overflow: hidden;
}
.vl-banner-buy__image-preview img { width: 100%; height: 100%; object-fit: cover; }
.vl-banner-buy__image-empty { font-size: 12px; color: #94a3b8; }
.vl-banner-buy__zones { padding: 8px !important; }
.vl-banner-buy__total {
    font-size: 22px;
    font-weight: 800;
    color: #6C5CE7;
    padding: 10px 14px;
    background: rgba(108,92,231,0.08);
    border-radius: 10px;
    text-align: center;
}

/* ============================================================
   Expert Tips — featured + side list widget
   ============================================================ */
.vl-expert-tips {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.vl-expert-tips__head {
    text-align: center;
    margin-bottom: 36px;
}
.vl-expert-tips__eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 10px;
}
.vl-expert-tips__title {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
}
.vl-expert-tips__sub {
    margin: 0 auto;
    max-width: 620px;
    color: #636E72;
    font-size: 15px;
}

.vl-expert-tips__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 32px;
    align-items: start;
}

/* FEATURED card (left) */
.vl-expert-tips__featured {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vl-expert-tips__featured-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f1f5f9;
    text-decoration: none;
}
.vl-expert-tips__featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vl-expert-tips__featured-media:hover img { transform: scale(1.04); }
.vl-expert-tips__featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.vl-expert-tips__featured-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vl-expert-tips__featured-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.25;
}
.vl-expert-tips__featured-title:hover { color: #6C5CE7; }
.vl-expert-tips__featured-excerpt {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}
.vl-expert-tips__featured-link {
    align-self: flex-start;
    font-weight: 600;
    color: #6C5CE7;
    text-decoration: none;
    font-size: 14px;
    margin-top: 4px;
}
.vl-expert-tips__featured-link:hover { color: #5a4bd1; }

/* SIDE list (right) */
.vl-expert-tips__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}
.vl-expert-tips__list-item + .vl-expert-tips__list-item {
    border-top: 1px solid #ECEFF4;
    padding-top: 14px;
    margin-top: 14px;
}
.vl-expert-tips__list-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.vl-expert-tips__list-card:hover { transform: translateX(2px); }
.vl-expert-tips__list-media {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    display: block;
}
.vl-expert-tips__list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vl-expert-tips__list-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.vl-expert-tips__list-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vl-expert-tips__list-card:hover .vl-expert-tips__list-title { color: #6C5CE7; }

/* CTA button */
.vl-expert-tips__cta {
    margin-top: 36px;
    text-align: center;
}
.vl-expert-tips__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vl-expert-tips__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
    color: #ffffff;
}
.vl-expert-tips__empty {
    text-align: center;
    padding: 50px 20px;
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    border-radius: 14px;
    color: #636E72;
}

@media (max-width: 768px) {
    .vl-expert-tips__layout { grid-template-columns: 1fr; gap: 24px; }
    .vl-expert-tips__title { font-size: 26px; }
    .vl-expert-tips__featured-title { font-size: 20px; }
}

/* ============================================================
   Expert Tips — single detail page
   ============================================================ */
.vl-tip-detail {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}
.vl-tip-detail__head { margin-bottom: 24px; }
.vl-tip-detail__eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 14px;
}
.vl-tip-detail__title {
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
}
.vl-tip-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #636E72;
    font-size: 14px;
}
.vl-tip-detail__cats a {
    color: #6C5CE7;
    text-decoration: none;
    font-weight: 600;
}
.vl-tip-detail__hero {
    margin: 0 -20px 32px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
}
.vl-tip-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vl-tip-detail__body {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.75;
}
.vl-tip-detail__body h2 {
    font-size: 24px;
    margin: 32px 0 12px;
    color: #1a1a2e;
    font-weight: 700;
}
.vl-tip-detail__body h3 {
    font-size: 19px;
    margin: 24px 0 10px;
    color: #1a1a2e;
    font-weight: 700;
}
.vl-tip-detail__body p { margin: 0 0 18px; }
.vl-tip-detail__body ul, .vl-tip-detail__body ol {
    margin: 0 0 18px 24px;
    padding: 0;
}
.vl-tip-detail__body li { margin-bottom: 8px; }
.vl-tip-detail__body strong { color: #1a1a2e; }
.vl-tip-detail__body blockquote {
    margin: 22px 0;
    padding: 14px 22px;
    border-left: 4px solid #6C5CE7;
    background: #f8fafc;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #475569;
}

/* Related */
.vl-tip-detail__related {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #ECEFF4;
}
.vl-tip-detail__related-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 18px;
}
.vl-tip-detail__related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.vl-tip-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ECEFF4;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s ease;
}
.vl-tip-related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 14px 28px rgba(108, 92, 231, 0.1);
}
.vl-tip-related-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
    display: block;
}
.vl-tip-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vl-tip-related-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vl-tip-related-card__body strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
}
.vl-tip-related-card__body span {
    font-size: 12px;
    color: #94a3b8;
}

/* ============================================================
   Vendor Success Guide widget
   ============================================================ */
.vl-success-guide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.vl-success-guide__head {
    text-align: center;
    margin-bottom: 40px;
}
.vl-success-guide__eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 12px;
}
.vl-success-guide__title {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
}
.vl-success-guide__sub {
    margin: 0 auto;
    max-width: 620px;
    color: #636E72;
    font-size: 16px;
    line-height: 1.6;
}
.vl-success-guide__grid {
    display: grid;
    gap: 22px;
}
.vl-success-guide--cols-1 .vl-success-guide__grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.vl-success-guide--cols-2 .vl-success-guide__grid { grid-template-columns: repeat(2, 1fr); }
.vl-success-guide--cols-3 .vl-success-guide__grid { grid-template-columns: repeat(3, 1fr); }

.vl-success-tip {
    position: relative;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid #ECEFF4;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.vl-success-tip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,92,231,0.04) 0%, rgba(0,206,201,0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.vl-success-tip:hover {
    transform: translateY(-4px);
    border-color: rgba(108,92,231,0.25);
    box-shadow: 0 18px 40px rgba(108,92,231,0.12);
}
.vl-success-tip:hover::before { opacity: 1; }
.vl-success-tip > * { position: relative; z-index: 1; }

.vl-success-tip__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.vl-success-tip__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(108,92,231,0.12) 0%, rgba(0,206,201,0.12) 100%);
    color: #6C5CE7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.vl-success-tip__icon svg { width: 24px; height: 24px; }
.vl-success-tip:hover .vl-success-tip__icon {
    transform: scale(1.08) rotate(-4deg);
}
.vl-success-tip__num {
    font-size: 32px;
    font-weight: 800;
    color: #ECEFF4;
    line-height: 1;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}
.vl-success-tip:hover .vl-success-tip__num {
    color: #6C5CE7;
}
.vl-success-tip__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}
.vl-success-tip__desc {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}
.vl-success-guide__cta {
    margin-top: 40px;
    text-align: center;
}
.vl-success-guide__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #ffffff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vl-success-guide__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.32);
    color: #ffffff !important;
}

@media (max-width: 900px) {
    .vl-success-guide--cols-3 .vl-success-guide__grid,
    .vl-success-guide--cols-2 .vl-success-guide__grid { grid-template-columns: repeat(2, 1fr); }
    .vl-success-guide__title { font-size: 28px; }
}
@media (max-width: 600px) {
    .vl-success-guide--cols-3 .vl-success-guide__grid,
    .vl-success-guide--cols-2 .vl-success-guide__grid { grid-template-columns: 1fr; }
    .vl-success-guide__title { font-size: 24px; }
}

@media (max-width: 600px) {
    .vl-tip-detail__title { font-size: 28px; }
    .vl-tip-detail__hero { margin: 0 -20px 24px; border-radius: 0; }
}

/* ============================================================
   Pricing — Add-ons block (Banner Ads)
   ============================================================ */
.vl-wrapper .vl-pricing-table__addons { margin-top: 50px; }
.vl-wrapper .vl-pricing-addons {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.06) 0%, rgba(0, 206, 201, 0.06) 100%);
    border: 1px solid rgba(108, 92, 231, 0.18);
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.vl-wrapper .vl-pricing-addons__head {
    text-align: center;
    margin-bottom: 22px;
}
.vl-wrapper .vl-pricing-addons__sub {
    text-align: center;
}
.vl-wrapper .vl-pricing-addons__pill {
    display: inline-block;
    background: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 12px;
}
.vl-wrapper .vl-pricing-addons__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}
.vl-wrapper .vl-pricing-addons__sub {
    margin: 0;
    color: #636E72;
    font-size: 15px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.vl-wrapper .vl-pricing-addons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 22px;
    justify-content: center;
}
/* When there's just 1 card, center it with a sensible max width */
.vl-wrapper .vl-pricing-addons__grid:has(> :only-child) {
    grid-template-columns: minmax(260px, 420px);
    justify-content: center;
}
.vl-wrapper .vl-pricing-addon {
    background: #ffffff;
    border: 1px solid #ECEFF4;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
}
.vl-wrapper .vl-pricing-addon:hover {
    transform: translateY(-2px);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.12);
}
.vl-wrapper .vl-pricing-addon__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.12);
    color: #6C5CE7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vl-wrapper .vl-pricing-addon__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vl-wrapper .vl-pricing-addon__body strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}
.vl-wrapper .vl-pricing-addon__body span {
    font-size: 12px;
    color: #636E72;
}
.vl-wrapper .vl-pricing-addon__price {
    flex-shrink: 0;
    text-align: right;
    line-height: 1.1;
}
.vl-wrapper .vl-pricing-addon__price strong {
    font-size: 22px;
    font-weight: 800;
    color: #6C5CE7;
}
.vl-wrapper .vl-pricing-addon__price em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.vl-wrapper .vl-pricing-addons__foot {
    margin: 22px 0 0;
    text-align: center;
    color: #636E72;
    font-size: 13px;
}
.vl-wrapper .vl-pricing-addons__cta {
    margin-top: 22px;
    text-align: center;
}
.vl-wrapper .vl-pricing-addons__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vl-wrapper .vl-pricing-addons__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(108, 92, 231, 0.3);
    color: #ffffff;
}
