﻿/* ══════════════════════════════════════════════════════════════
   Wedimak – Vendors Marketplace & Profile Styles
   Booking.com-inspired layout with filters + grid
═══════════════════════════════════════════════════════════════ */

/* ── Vendors Hero ─────────────────────────────────────────── */
.vendors-hero {
  position: relative;
  padding: 100px 20px 50px;
  text-align: center;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vendors-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4f52d3 0%, #7c3aed 50%, #ec4899 100%);
  z-index: 0;
}
.vendors-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.vendors-hero h1 {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.vendors-hero p {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── Search Bar ───────────────────────────────────────────── */
.vendors-search-bar {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  padding: 6px;
  max-width: 650px;
  margin: 0 auto;
}
.vsb-input-wrap {
  flex: 2;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.vsb-input-wrap i { color: #9ca3af; font-size: 14px; }
.vsb-input-wrap input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  padding: 12px 0;
  font-family: 'Heebo', sans-serif;
}
.vsb-select {
  border: none;
  border-left: 1.5px solid #e5e7eb;
  outline: none;
  font-size: 13px;
  padding: 12px 14px;
  color: #374151;
  background: transparent;
  min-width: 140px;
  cursor: pointer;
}
.vsb-btn {
  background: #4f52d3;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.vsb-btn:hover { background: #3b3eb3; }
.vsb-btn:active { background: #2d2f8f; }

@media (max-width: 640px) {
  .vendors-search-bar { flex-direction: column; gap: 0; border-radius: 12px; }
  .vsb-select { border-left: none; border-top: 1.5px solid #e5e7eb; }
  .vsb-btn { border-radius: 0 0 10px 10px; }
}

/* ── Main Layout ──────────────────────────────────────────── */
.vendors-main {
  padding: 30px 20px 60px;
  background: #f8f9fa;
  min-height: 60vh;
}
.vendors-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 992px) {
  .vendors-container { grid-template-columns: 1fr; }
}

/* ── Sidebar ──────────────────────────────────────────────── */
.vendors-sidebar {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.vendors-sidebar .vs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vendors-sidebar .vs-header h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.vs-clear {
  font-size: 12px;
  color: #ef4444;
  text-decoration: none;
}
.vs-clear:hover { text-decoration: underline; }

.vs-group { margin-bottom: 20px; }
.vs-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #6b7280;
  margin-bottom: 10px;
}

.vs-cat-list, .vs-loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vs-cat-list li a, .vs-loc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  transition: background .15s;
}
.vs-cat-list li a:hover, .vs-loc-list li a:hover { background: #f3f4f6; }
.vs-cat-list li a.active, .vs-loc-list li a.active {
  background: rgba(79,82,211,.08);
    color: #4f52d3;
  font-weight: 600;
}
.vs-cat-list li a i { width: 18px; text-align: center; font-size: 13px; }
.vs-loc-list li a small { color: #9ca3af; margin-left: auto; font-size: 11px; }

.vs-loc-list { max-height: 220px; overflow-y: auto; }

/* Mobile sidebar */
@media (max-width: 992px) {
  .vendors-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  .vendors-sidebar.show { transform: translateX(0); box-shadow: 0 0 40px rgba(0,0,0,.3); }
}

/* ── Vendor Grid ──────────────────────────────────────────── */
.vendors-content { min-width: 0; }

.vc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.vc-count { font-size: 14px; color: #6b7280; }
.vc-count span { font-weight: 700; color: #111827; }
.vc-count strong { color: var(--accent, #4f52d3); }
.vc-sort { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.vc-sort label { font-size: 12px; color: #6b7280; }
.vc-sort select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  outline: none;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  }
.vc-filter-toggle {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) { .vc-filter-toggle { display: inline-flex; } }

.vc-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}
.vc-empty i { margin-bottom: 16px; color: #d1d5db; }
.vc-empty h4 { color: #374151; font-weight: 700; margin-bottom: 8px; }

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ── Vendor Card ──────────────────────────────────────────── */
.vendor-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.vendor-card:hover {
  box-shadow: 0 8px 30px rgba(79,82,211,.12);
  transform: translateY(-3px);
}
.vc-cover {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.vc-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}
.vc-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vc-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.vc-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  margin-top: -30px;
  flex-shrink: 0;
}
.vc-logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent, #4f52d3);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin-top: -30px;
  flex-shrink: 0;
}
.vc-info { min-width: 0; }
.vc-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 2px;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-tagline {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-locations {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}
.vc-locations i { color: #ef4444; margin-right: 4px; font-size: 11px; }
.vc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 11px;
  color: #9ca3af;
}
.vc-meta span { display: flex; align-items: center; gap: 4px; }
.vc-meta i { font-size: 10px; }
.vc-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  gap: 8px;
}
.vc-price { font-size: 13px; color: #6b7280; }
.vc-price strong { color: var(--accent, #4f52d3); font-size: 15px; }
.vc-view-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent, #4f52d3);
    color: #4f52d3;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════════════════════════
   VENDOR PROFILE PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Cover Section ────────────────────────────────────────── */
.vp-cover {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.vp-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.5));
}
.vp-back-btn {
  position: absolute;
  top: 90px;
  left: 30px;
  z-index: 2;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: #374151;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}
.vp-back-btn:hover { background: #fff; }

@media (max-width: 768px) {
  .vp-cover { height: 200px; }
  .vp-back-btn { top: 75px; left: 15px; }
}

/* ── Main ─────────────────────────────────────────────────── */
.vp-main { padding: 0 20px 60px; background: #f8f9fa; }
.vp-container { max-width: 960px; margin: 0 auto; }

/* ── Profile Header ───────────────────────────────────────── */
.vp-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
  flex-wrap: wrap;
}
.vp-avatar { flex-shrink: 0; }
.vp-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.vp-avatar-text {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--accent, #4f52d3);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.vp-header-info { flex: 1; min-width: 0; }
.vp-cat-badge {
  display: inline-block;
  background: rgba(79,82,211,.08);
  color: var(--accent, #4f52d3);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.vp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0 0 4px;
}
.vp-tagline { color: #6b7280; font-size: 14px; margin: 0 0 10px; }
.vp-quick-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #6b7280; }
.vp-quick-meta span { display: flex; align-items: center; gap: 6px; }
.vp-quick-meta i { color: var(--accent, #4f52d3); font-size: 12px; }

.vp-header-actions { display: flex; gap: 10px; flex-wrap: wrap; align-self: center; }
.vp-action-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vp-action-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.vp-action-btn.primary { background: var(--accent, #4f52d3); color: #fff; }
.vp-action-btn.whatsapp { background: #25d366; color: #fff; }

@media (max-width: 640px) {
  .vp-header { flex-direction: column; align-items: center; text-align: center; }
  .vp-quick-meta { justify-content: center; }
  .vp-header-actions { width: 100%; justify-content: center; }
}

/* ── Tabs ─────────────────────────────────────────────────── */
.vp-tabs {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin: 24px 0;
  overflow-x: auto;
}
.vp-tab {
  padding: 14px 22px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.vp-tab:hover { color: #374151; }
.vp-tab.active {
  color: var(--accent, #4f52d3);
  font-weight: 700;
  border-bottom-color: var(--accent, #4f52d3);
}

/* ── Tab Content ──────────────────────────────────────────── */
.vp-tab-content { display: none; }
.vp-tab-content.active { display: block; }

.vp-section { margin-bottom: 28px; }
.vp-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.vp-description { font-size: 14px; color: #4b5563; line-height: 1.7; }

/* Area Tags */
.vp-area-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.vp-area-tag {
  background: #f3f4f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vp-area-tag i { color: #ef4444; font-size: 10px; }

/* Starting Price */
.vp-starting-price { display: flex; align-items: baseline; gap: 6px; }
.vp-sp-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent, #4f52d3);
}
.vp-sp-label { font-size: 14px; color: #6b7280; }

/* ── Packages Grid ────────────────────────────────────────── */
.vp-packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.vp-pkg-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.vp-pkg-card:hover { border-color: var(--accent, #4f52d3); box-shadow: 0 4px 16px rgba(79,82,211,.08); }
.vp-pkg-header { margin-bottom: 12px; }
.vp-pkg-header h4 { font-weight: 700; font-size: 16px; margin: 0 0 4px; font-family: 'Montserrat', sans-serif; }
.vp-pkg-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent, #4f52d3);
}
.vp-pkg-price small { font-size: 12px; font-weight: 400; color: #6b7280; }
.vp-pkg-desc { font-size: 13px; color: #6b7280; margin-bottom: 14px; }

.vp-pkg-items h5, .vp-pkg-addons h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9ca3af;
  margin-bottom: 8px;
}
.vp-pkg-items ul { list-style: none; padding: 0; margin: 0 0 14px; }
.vp-pkg-items li {
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vp-pkg-items li:last-child { border: none; }
.vp-pkg-items li i { color: #16a34a; font-size: 11px; }

.vp-addon-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vp-addon-tag {
  background: rgba(79,82,211,.06);
  color: var(--accent, #4f52d3);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
}
.vp-addon-tag strong { margin-left: 4px; }

.vp-pkg-gallery { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.vp-pkg-gallery img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  transition: transform .15s;
}
.vp-pkg-gallery img:hover { transform: scale(1.1); }
.vp-pkg-gallery-more {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
}

.vp-pkg-footer { 
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.vp-pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent, #4f52d3);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
  border-radius: 0 0 14px 14px;
}
.vp-pkg-btn:hover { background: #3b3eb3; color: #fff; }

/* ── Gallery Grid ─────────────────────────────────────────── */
.vp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.vp-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.vp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.vp-gallery-item:hover img { transform: scale(1.05); }

/* ── Info Grid ────────────────────────────────────────────── */
.vp-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .vp-info-grid { grid-template-columns: 1fr; } }

.vp-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
}
.vp-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}

.vp-hours-table { width: 100%; font-size: 13px; }
.vp-hours-table tr { border-bottom: 1px solid #f3f4f6; }
.vp-hours-table td { padding: 8px 0; }
.vp-hours-table tr.closed td { color: #9ca3af; }

.vp-contact-list { list-style: none; padding: 0; margin: 0; }
.vp-contact-list li {
  padding: 8px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f3f4f6;
}
.vp-contact-list li:last-child { border: none; }
.vp-contact-list li i { width: 16px; color: var(--accent, #4f52d3); font-size: 13px; }
.vp-contact-list li a { color: #374151; text-decoration: none; }
.vp-contact-list li a:hover { color: var(--accent, #4f52d3); }

/* ── Empty state ──────────────────────────────────────────── */
.vp-empty { text-align: center; padding: 40px; color: #9ca3af; }

/* ══════════════════════════════════════════════════════════════
   Dark Mode Overrides
   Applied when <html data-theme="dark"> via main.js / theme init
═══════════════════════════════════════════════════════════════ */

/* ── Search bar ─────────────────────────────────────────── */
[data-theme="dark"] .vendors-search-bar {
  background: #1a1a2e;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
[data-theme="dark"] .vsb-input-wrap input {
  background: transparent;
  color: #e8e8f8;
}
[data-theme="dark"] .vsb-select {
  background: transparent;
  color: #c9c9e0;
  border-left-color: rgba(255,255,255,.10);
}

/* ── Main layout ────────────────────────────────────────── */
[data-theme="dark"] .vendors-main { background: #0d0d1c; }

/* ── Sidebar ────────────────────────────────────────────── */
[data-theme="dark"] .vendors-sidebar {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .vs-group-title { color: #6060a0; }
[data-theme="dark"] .vs-cat-list li a,
[data-theme="dark"] .vs-loc-list li a { color: #c9c9e0; }
[data-theme="dark"] .vs-cat-list li a:hover,
[data-theme="dark"] .vs-loc-list li a:hover { background: #1f1f38; }

/* ── Grid header ─────────────────────────────────────────── */
[data-theme="dark"] .vc-count { color: #8585a8; }
[data-theme="dark"] .vc-count span { color: #e8e8f8; }
[data-theme="dark"] .vc-sort label { color: #8585a8; }
[data-theme="dark"] .vc-sort select {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.10);
  color: #c9c9e0;
}
[data-theme="dark"] .vc-filter-toggle {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.10);
  color: #c9c9e0;
}

/* ── Vendor cards ────────────────────────────────────────── */
[data-theme="dark"] .vendor-card {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
  color: #e8e8f8;
}
[data-theme="dark"] .vc-tagline,
[data-theme="dark"] .vc-locations,
[data-theme="dark"] .vc-meta { color: #8585a8; }
[data-theme="dark"] .vc-footer { border-top-color: rgba(255,255,255,.06); }
[data-theme="dark"] .vc-price { color: #8585a8; }

/* ── Empty state ─────────────────────────────────────────── */
[data-theme="dark"] .vc-empty { color: #6060a0; }
[data-theme="dark"] .vc-empty i { color: #1f1f3a; }
[data-theme="dark"] .vc-empty h4 { color: #8585a8; }

/* ══════════════════════════════════════════════════════════
   Vendor Profile Page – Dark Mode
══════════════════════════════════════════════════════════ */
[data-theme="dark"] .vp-main { background: #0d0d1c; }

[data-theme="dark"] .vp-back-btn {
  background: rgba(26,26,46,.92);
  color: #c9c9e0;
}
[data-theme="dark"] .vp-back-btn:hover { background: #1a1a2e; color: #fff; }

/* Profile header card */
[data-theme="dark"] .vp-header {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
[data-theme="dark"] .vp-tagline,
[data-theme="dark"] .vp-quick-meta { color: #8585a8; }
[data-theme="dark"] .vp-title { color: #e8e8f8; }

/* Tabs */
[data-theme="dark"] .vp-tabs {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .vp-tab { color: #8585a8; }
[data-theme="dark"] .vp-tab:hover { color: #c9c9e0; }

/* Tab content */
[data-theme="dark"] .vp-description { color: #9090c0; }
[data-theme="dark"] .vp-section h3 { color: #e8e8f8; }
[data-theme="dark"] .vp-sp-label { color: #8585a8; }

/* Area tags */
[data-theme="dark"] .vp-area-tag {
  background: #1f1f38;
  color: #c9c9e0;
}

/* Package cards */
[data-theme="dark"] .vp-pkg-card {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .vp-pkg-header h4 { color: #e8e8f8; }
[data-theme="dark"] .vp-pkg-price small,
[data-theme="dark"] .vp-pkg-desc { color: #8585a8; }
[data-theme="dark"] .vp-pkg-items h5,
[data-theme="dark"] .vp-pkg-addons h5 { color: #6060a0; }
[data-theme="dark"] .vp-pkg-items li { border-bottom-color: rgba(255,255,255,.05); color: #c9c9e0; }
[data-theme="dark"] .vp-pkg-gallery img { border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .vp-pkg-gallery-more {
  background: #1f1f38;
  color: #8585a8;
}
[data-theme="dark"] .vp-pkg-footer { border-top-color: rgba(255,255,255,.06); }

/* Info cards (hours, contact) */
[data-theme="dark"] .vp-info-card {
  background: #1a1a2e;
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .vp-info-card h4 { color: #e8e8f8; }
[data-theme="dark"] .vp-hours-table { color: #c9c9e0; }
[data-theme="dark"] .vp-hours-table tr { border-bottom-color: rgba(255,255,255,.05); }
[data-theme="dark"] .vp-hours-table tr.closed td { color: #3a3a6a; }
[data-theme="dark"] .vp-contact-list li { border-bottom-color: rgba(255,255,255,.05); color: #c9c9e0; }
[data-theme="dark"] .vp-contact-list li a { color: #c9c9e0; }
[data-theme="dark"] .vp-contact-list li a:hover { color: var(--accent); }

/* Empty */
[data-theme="dark"] .vp-empty { color: #6060a0; }
