/* ═══════════════════════════════════════════════════════════
   VI Portal – Frontend CSS v1.0 | dev.com.vn
   Font: Inter | Colors: Dark Red + Gold on Cream
══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --r1: #8B0000;
  --r2: #6B0000;
  --r3: #4A0000;
  --gold: #FFD700;
  --gold2: #C8A200;
  --gold3: #FFF8DC;
  --bg: #FDF6F0;
  --white: #fff;
  --text: #1A1A1A;
  --muted: #666;
  --border: #EDD5B3;
  --shadow: 0 4px 20px rgba(139,0,0,.08);
  --shadow-hover: 0 10px 32px rgba(139,0,0,.14);
  --radius: 10px;
  --font: 'Inter', -apple-system, sans-serif;
}

/* ── Reset / Base ── */
.vi-portal-wrap, .vi-portal-wrap * {
  box-sizing: border-box;
  font-family: var(--font);
}
.vi-portal-wrap { color: var(--text); }

/* ── Dong Son Pattern ── */
.vi-dongson {
  background-color: var(--r2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='rgba(255,215,0,0.12)' stroke-width='1.5'/%3E%3Ccircle cx='60' cy='60' r='44' fill='none' stroke='rgba(255,215,0,0.09)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='33' fill='none' stroke='rgba(255,215,0,0.07)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='8' fill='rgba(255,215,0,0.15)'/%3E%3Ccircle cx='60' cy='60' r='4' fill='rgba(255,215,0,0.2)'/%3E%3Cline x1='60' y1='5' x2='60' y2='115' stroke='rgba(255,215,0,0.05)' stroke-width='1'/%3E%3Cline x1='5' y1='60' x2='115' y2='60' stroke='rgba(255,215,0,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* ── Wave Divider ── */
.vi-wave {
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='12'%3E%3Cpath d='M0 6 Q10 0 20 6 Q30 12 40 6 Q50 0 60 6 Q70 12 80 6' fill='none' stroke='%23FFD700' stroke-width='2.5'/%3E%3C/svg%3E") repeat-x center/80px 12px;
}

/* ── Breadcrumb ── */
.vi-breadcrumb { padding: 10px 0; margin-bottom: 20px; }
.vi-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: 13px; color: var(--muted); }
.vi-breadcrumb li + li::before { content: '›'; margin-right: 6px; color: var(--border); }
.vi-breadcrumb a { color: var(--r1); text-decoration: none; font-weight: 500; }
.vi-breadcrumb a:hover { text-decoration: underline; }
.vi-breadcrumb .current { color: var(--text); font-weight: 600; }

/* ════════════════════════════════════
   SECTION HEADER
════════════════════════════════════ */
.vi-sec-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.vi-sec-t {
  font-size: 18px;
  font-weight: 600;
  color: var(--r1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vi-sec-t::before {
  content: '';
  width: 5px;
  height: 22px;
  background: var(--r1);
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}
.vi-sec-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.vi-see-all {
  color: var(--r1);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--r1);
  border-radius: 4px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: all .2s;
}
.vi-see-all:hover { background: var(--r1); color: #fff; }

.vi-sc-section { margin-bottom: 40px; }

/* ════════════════════════════════════
   STATS BAR
════════════════════════════════════ */
.vi-stats-bar {
  background: var(--r3);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.vi-stats-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.vi-stat { text-align: center; }
.vi-stat-num { display: block; font-size: 22px; font-weight: 600; color: var(--gold); }
.vi-stat-lbl { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1.5px; }

/* ════════════════════════════════════
   CATEGORY GRID
════════════════════════════════════ */
.vi-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.vi-cat-c {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  text-align: center;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vi-cat-c::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r1);
  transform: scaleX(0);
  transition: transform .2s;
}
.vi-cat-c:hover {
  border-color: var(--r1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: var(--text);
}
.vi-cat-c:hover::before { transform: scaleX(1); }
.vi-cat-feat {
  background: linear-gradient(135deg, var(--r1), var(--r2));
  border-color: transparent;
  color: #fff !important;
}
.vi-cat-feat .vi-cat-name { color: #fff; }
.vi-cat-feat .vi-cat-count { color: var(--gold); }
.vi-cat-feat::before { display: none; }
.vi-cat-emo { font-size: 34px; display: block; margin-bottom: 10px; }
.vi-cat-name { font-size: 13px; font-weight: 600; }
.vi-cat-count { font-size: 11px; color: var(--muted); margin-top: 3px; }
.vi-cat-feat .vi-cat-count { color: var(--gold); }

/* ════════════════════════════════════
   LISTING CARD GRID
════════════════════════════════════ */
.vi-listing-grid,
.vi-people-grid,
.vi-service-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}
.vi-listing-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.vi-people-grid  { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.vi-service-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* Column overrides */
.vi-cols-2 { grid-template-columns: repeat(2, 1fr); }
.vi-cols-3 { grid-template-columns: repeat(3, 1fr); }
.vi-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Listing Card ─── */
.vi-l-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.vi-l-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.vi-l-img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  position: relative;
  background: linear-gradient(135deg, #FFE0B2, #FFCCBC);
  overflow: hidden;
}
.vi-l-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.vi-l-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--r1);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 2px;
  letter-spacing: .5px;
  z-index: 2;
}
.vi-l-badge.vi-badge-gold { background: var(--gold); color: var(--r2); }
.vi-l-avatar-init {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--r1);
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  letter-spacing: -2px;
}
.vi-l-body { padding: 13px 15px; flex: 1; }
.vi-l-cat  { font-size: 10px; color: var(--r1); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.vi-l-name { font-size: 14px; font-weight: 600; margin-bottom: 7px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vi-l-meta { font-size: 11.5px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; }
.vi-stars  { color: var(--gold); font-size: 12px; }
.vi-l-price { font-size: 12px; font-weight: 600; color: var(--r1); }
.vi-l-foot {
  padding: 9px 15px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.vi-l-loc { font-size: 11.5px; color: var(--muted); }
.vi-btn-view {
  background: var(--r1);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none;
}
.vi-btn-view:hover { background: var(--r2); }

/* ─── Person Card ─── */
.vi-p-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 14px 16px;
  text-align: center;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  box-shadow: var(--shadow);
}
.vi-p-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(200,162,0,.18);
  transform: translateY(-3px);
}
.vi-p-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  border: 3px solid var(--gold3);
  box-shadow: 0 0 0 2px var(--gold2);
  overflow: hidden;
}
.vi-p-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.vi-p-av-init {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--r1), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
}
.vi-p-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.vi-p-role { font-size: 11px; color: var(--r1); font-weight: 600; margin-top: 3px; }
.vi-p-org  { font-size: 10.5px; color: var(--muted); }
.vi-p-view {
  margin-top: 10px;
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--r1);
  text-decoration: none;
  transition: all .2s;
}
.vi-p-view:hover { background: var(--r1); color: #fff; border-color: var(--r1); }

/* ─── Service Card ─── */
.vi-sv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.vi-sv-card:hover {
  border-color: var(--r1);
  box-shadow: 0 4px 20px rgba(139,0,0,.12);
  transform: translateY(-2px);
}
.vi-sv-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--r1), var(--r2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.vi-sv-icon-init {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.vi-sv-name  { font-size: 13.5px; font-weight: 600; }
.vi-sv-price { font-size: 11px; color: var(--r1); font-weight: 600; margin-top: 2px; }
.vi-sv-cat   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════
   PROVINCE GRID
════════════════════════════════════ */
.vi-prov-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.vi-prov-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 7px 15px;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.vi-prov-btn:hover  { background: var(--r1); color: #fff; border-color: var(--r1); }
.vi-prov-hot {
  background: var(--gold3);
  border-color: var(--gold2);
  color: var(--r2);
  font-weight: 600;
}
.vi-prov-hot:hover { background: var(--gold); }

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.vi-banner-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #FFAA00 100%);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.vi-banner-cta::before {
  content: '★';
  position: absolute;
  right: -10px; top: -20px;
  font-size: 160px;
  color: rgba(139,0,0,.08);
  pointer-events: none;
  line-height: 1;
}
.vi-cta-content h2 { font-size: 22px; font-weight: 600; color: var(--r2); }
.vi-cta-content p  { color: rgba(107,0,0,.75); font-size: 13px; margin-top: 5px; }
.vi-btn-cta {
  background: var(--r1);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,0,0,.3);
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.vi-btn-cta:hover { background: var(--r2); transform: scale(1.04); color: #fff; }

/* ════════════════════════════════════
   SEARCH BAR
════════════════════════════════════ */
.vi-search-bar {
  display: flex;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: border-color .2s;
}
.vi-search-bar:focus-within { border-color: var(--r1); }
.vi-search-type {
  background: var(--bg);
  border: none;
  border-right: 1px solid var(--border);
  outline: none;
  padding: 0 14px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  min-width: 110px;
}
.vi-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
}
.vi-search-btn {
  background: var(--r1);
  border: none;
  padding: 0 22px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}
.vi-search-btn:hover { background: var(--r2); }

/* ════════════════════════════════════
   FILTER BAR
════════════════════════════════════ */
.vi-filter-bar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.vi-filter-bar .vi-search-bar { margin-bottom: 0; flex: 1 1 220px; }
.vi-filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1 1 160px; min-width: 140px; }
.vi-filter-group label { font-size: 11px; font-weight: 600; color: var(--r1); }
.vi-filter-select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  width: 100%;
}
.vi-filter-select:focus { border-color: var(--r1); outline: none; }
.vi-filter-reset {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.vi-filter-reset:hover { border-color: var(--r1); color: var(--r1); }

/* ════════════════════════════════════
   SINGLE POST LAYOUT
════════════════════════════════════ */
.vi-single-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px;
  align-items: start;
}
.vi-single-main { min-width: 0; }
.vi-single-sidebar { position: sticky; top: 80px; }

/* Hero section */
.vi-single-hero {
  background: var(--r2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.vi-single-cover {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.vi-single-cover-ph {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--r1), var(--r3));
}
.vi-single-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vi-single-av {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255,215,0,.3);
  background: linear-gradient(135deg, var(--r1), var(--gold));
  color: #fff;
}
.vi-single-av img { width: 100%; height: 100%; object-fit: cover; }
.vi-single-av-init { font-size: 28px; font-weight: 600; color: #fff; }
.vi-single-title h1 { font-size: 24px; font-weight: 600; color: #fff; line-height: 1.3; margin: 0; }
.vi-single-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.vi-single-cats a {
  background: rgba(255,215,0,.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,215,0,.3);
}
.vi-single-cats a:hover { background: var(--gold); color: var(--r2); }

/* Section cards */
.vi-section-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vi-sc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.vi-sc-header h2 { font-size: 15px; font-weight: 600; color: var(--r1); margin: 0; }
.vi-sc-icon { font-size: 18px; }
.vi-sc-body { padding: 20px; }
.vi-sc-body p, .vi-sc-body .entry-content { font-size: 14px; line-height: 1.8; color: var(--text); }

/* Meta grid in single */
.vi-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.vi-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.vi-meta-icon { font-size: 20px; flex-shrink: 0; }
.vi-meta-label { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.vi-meta-val { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 2px; }
.vi-meta-val a { color: var(--r1); text-decoration: none; }
.vi-meta-val a:hover { text-decoration: underline; }

/* Rating display */
.vi-rating-display { display: flex; align-items: center; gap: 8px; }
.vi-rating-num { font-size: 28px; font-weight: 600; color: var(--r1); }
.vi-rating-stars { font-size: 16px; color: var(--gold); }
.vi-rating-count { font-size: 12px; color: var(--muted); }

/* Gallery */
.vi-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.vi-gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
}
.vi-gallery-grid img:hover { opacity: .85; }

/* Video embed */
.vi-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.vi-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* FAQ accordion */
.vi-faq-item { border-bottom: 1px solid var(--border); }
.vi-faq-item:last-child { border-bottom: none; }
.vi-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.vi-faq-q:hover { color: var(--r1); }
.vi-faq-q::after { content: '+'; font-size: 20px; color: var(--r1); transition: transform .2s; font-weight: 400; }
.vi-faq-item.open .vi-faq-q::after { transform: rotate(45deg); }
.vi-faq-a { display: none; padding: 0 0 14px; font-size: 13.5px; line-height: 1.7; color: var(--muted); }
.vi-faq-item.open .vi-faq-a { display: block; }

/* Price packages */
.vi-packages-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.vi-packages-table th {
  background: var(--r1);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.vi-packages-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.vi-packages-table tr:last-child td { border-bottom: none; }
.vi-packages-table tr:nth-child(even) td { background: var(--bg); }
.vi-pkg-price { font-weight: 600; color: var(--r1); white-space: nowrap; }

/* Achievements */
.vi-ach-list { list-style: none; padding: 0; margin: 0; }
.vi-ach-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.vi-ach-item:last-child { border-bottom: none; }
.vi-ach-year {
  background: var(--r1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.vi-ach-title { font-size: 13.5px; font-weight: 500; padding-top: 2px; }

/* ════════════════════════════════════
   SINGLE SIDEBAR
════════════════════════════════════ */
.vi-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vi-sidebar-head {
  background: var(--r1);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
}
.vi-sidebar-body { padding: 14px 16px; }

/* Contact sidebar */
.vi-sb-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.vi-sb-contact-item:last-child { border-bottom: none; }
.vi-sb-contact-item a { color: var(--text); text-decoration: none; font-weight: 500; }
.vi-sb-contact-item a:hover { color: var(--r1); }
.vi-sb-icon { font-size: 16px; flex-shrink: 0; }

/* Action buttons in sidebar */
.vi-sb-actions { display: flex; flex-direction: column; gap: 8px; }
.vi-sb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}
.vi-sb-btn-primary   { background: var(--r1); color: #fff; }
.vi-sb-btn-primary:hover { background: var(--r2); color: #fff; }
.vi-sb-btn-gold      { background: var(--gold); color: var(--r2); }
.vi-sb-btn-gold:hover { background: #FFC500; }
.vi-sb-btn-outline   { background: transparent; color: var(--r1); border: 1.5px solid var(--r1); }
.vi-sb-btn-outline:hover { background: var(--r1); color: #fff; }
.vi-sb-btn-green     { background: #25D366; color: #fff; }
.vi-sb-btn-green:hover { background: #128C7E; }

/* Social in sidebar */
.vi-sb-social { display: flex; flex-wrap: wrap; gap: 8px; }
.vi-sb-soc-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s;
}
.vi-sb-soc-btn:hover { opacity: .88; }
.vi-soc-fb { background: #1877F2; }
.vi-soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.vi-soc-zl { background: #0068FF; }
.vi-soc-yt { background: #FF0000; }
.vi-soc-tt { background: #010101; }

/* Related posts */
.vi-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

/* ════════════════════════════════════
   ARCHIVE / CATEGORY PAGE
════════════════════════════════════ */
.vi-archive-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.vi-archive-sidebar {
  position: sticky;
  top: 80px;
}
.vi-archive-main { min-width: 0; }

/* Sidebar widget */
.vi-sw { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow); }
.vi-sw-head { background: var(--r1); color: #fff; padding: 11px 16px; font-size: 13px; font-weight: 600; }
.vi-sw-body { padding: 14px; }
.vi-sw-list { list-style: none; padding: 0; margin: 0; }
.vi-sw-list li + li { border-top: 1px solid var(--border); }
.vi-sw-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  transition: color .15s;
}
.vi-sw-list li a:hover { color: var(--r1); }
.vi-sw-list li.active a { color: var(--r1); font-weight: 600; }
.vi-sw-count { background: var(--bg); border-radius: 10px; padding: 1px 7px; font-size: 11px; color: var(--muted); }

/* Archive header */
.vi-archive-header {
  background: linear-gradient(135deg, var(--r1), var(--r2));
  border-radius: var(--radius);
  padding: 24px 28px;
  color: #fff;
  margin-bottom: 24px;
}
.vi-archive-header h1 { font-size: 22px; font-weight: 600; margin: 0 0 4px; }
.vi-archive-header p  { font-size: 13px; color: rgba(255,255,255,.75); margin: 0; }

/* Pagination */
.vi-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.vi-pagination a, .vi-pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  transition: all .2s;
}
.vi-pagination a:hover { border-color: var(--r1); color: var(--r1); }
.vi-pagination .current { background: var(--r1); color: #fff; border-color: var(--r1); }

/* Empty state */
.vi-empty { text-align: center; padding: 48px 20px; color: var(--muted); font-size: 15px; }

/* ════════════════════════════════════
   CONTACT FORM
════════════════════════════════════ */
.vi-contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.vi-form-title { font-size: 18px; font-weight: 600; color: var(--r1); margin: 0 0 20px; }
.vi-contact-form .vi-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.vi-contact-form .vi-form-col { display: flex; flex-direction: column; gap: 6px; }
.vi-contact-form .vi-form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.vi-contact-form label { font-size: 12px; font-weight: 600; color: var(--text); }
.vi-contact-form input,
.vi-contact-form select,
.vi-contact-form textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color .2s;
  width: 100%;
}
.vi-contact-form input:focus,
.vi-contact-form select:focus,
.vi-contact-form textarea:focus {
  border-color: var(--r1);
  outline: none;
  background: var(--white);
}
.vi-btn-submit {
  background: var(--r1);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
}
.vi-btn-submit:hover { background: var(--r2); }
.vi-form-msg { margin-top: 12px; padding: 10px 14px; border-radius: 6px; font-size: 13.5px; }
.vi-form-msg.success { background: #d4edda; color: #155724; }
.vi-form-msg.error   { background: #f8d7da; color: #721c24; }

/* Contact info block */
.vi-contact-info-block { font-size: 14px; }
.vi-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.vi-ci-item:last-of-type { border-bottom: none; }
.vi-ci-icon { font-size: 18px; flex-shrink: 0; }
.vi-ci-item a { color: var(--r1); text-decoration: none; font-weight: 500; }
.vi-ci-item a:hover { text-decoration: underline; }
.vi-ci-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.vi-soc-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

/* ════════════════════════════════════
   MOBILE BOTTOM NAV
════════════════════════════════════ */
.vi-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--border);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.vi-mobile-nav ul {
  list-style: none;
  display: flex;
  margin: 0; padding: 0;
}
.vi-mobile-nav li { flex: 1; }
.vi-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 4px 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  transition: color .2s;
}
.vi-mobile-nav a:hover,
.vi-mobile-nav .current a { color: var(--r1); }
.vi-mobile-nav .vi-nav-icon { font-size: 20px; }

/* Chat float button */
.vi-chat-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.vi-chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s;
}
.vi-chat-btn:hover { transform: scale(1.1); }
.vi-chat-btn-zalo  { background: #0068FF; }
.vi-chat-btn-phone { background: var(--r1); }

/* Mobile filter toggle */
.vi-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--r1);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  margin-bottom: 16px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1200px) {
  .vi-single-wrap  { grid-template-columns: 1fr 280px; }
  .vi-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
  .vi-archive-wrap { grid-template-columns: 1fr; }
  .vi-archive-sidebar { position: static; display: none; }
  .vi-archive-sidebar.open { display: block; }
  .vi-filter-toggle { display: flex; }
  .vi-single-wrap  { grid-template-columns: 1fr; }
  .vi-single-sidebar { position: static; }
  .vi-related-grid { grid-template-columns: repeat(3, 1fr); }
  .vi-cols-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .vi-mobile-nav { display: block; }
  .vi-chat-float { bottom: 80px; }
  body.vi-has-mobile-nav { padding-bottom: 64px; }

  .vi-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .vi-people-grid  { grid-template-columns: repeat(2, 1fr); }
  .vi-service-grid { grid-template-columns: repeat(2, 1fr); }
  .vi-cols-3, .vi-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .vi-cols-2 { grid-template-columns: repeat(2, 1fr); }

  .vi-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .vi-related-grid { grid-template-columns: repeat(2, 1fr); }
  .vi-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vi-meta-grid    { grid-template-columns: 1fr; }
  .vi-banner-cta   { flex-direction: column; text-align: center; }
  .vi-contact-form .vi-form-row { grid-template-columns: 1fr; }
  .vi-stats-inner  { gap: 16px; }
  .vi-single-info  { flex-wrap: wrap; }
  .vi-filter-bar   { flex-direction: column; }
}

@media (max-width: 480px) {
  .vi-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.vi-footer {
  background: var(--r3);
  color: rgba(255,255,255,.75);
  padding: 44px 20px 0;
  margin-top: 48px;
}
.vi-footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
}
.vi-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,215,0,.2);
}
.vi-footer ul { list-style: none; padding: 0; margin: 0; }
.vi-footer li + li { margin-top: 8px; }
.vi-footer a {
  color: rgba(255,255,255,.6);
  font-size: 12.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.vi-footer a:hover { color: var(--gold); }
.vi-footer-brand .nm { font-size: 26px; font-weight: 600; color: var(--gold); letter-spacing: 2px; }
.vi-footer-brand p   { font-size: 12.5px; line-height: 1.75; margin-top: 8px; }
.vi-footer-soc {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.vi-footer-soc a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
  color: #fff;
}
.vi-footer-soc a:hover { background: var(--gold); }
.vi-footer-btm {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.vi-footer-btm a { color: rgba(255,215,0,.7); text-decoration: none; }

@media (max-width: 1023px) { .vi-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .vi-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .vi-footer-grid { grid-template-columns: 1fr; } }

/* ── Loading skeleton ── */
.vi-skeleton { animation: vi-shimmer 1.5s infinite; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; border-radius: 6px; }
@keyframes vi-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── Print ── */
@media print {
  .vi-mobile-nav, .vi-chat-float, .vi-single-sidebar, .vi-filter-bar { display: none !important; }
  .vi-single-wrap { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ── */
#vi-lightbox { position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center; }
#vi-lightbox.active { display:flex; }
.vi-lb-overlay { position:absolute;inset:0;background:rgba(0,0,0,.88); }
.vi-lb-inner { position:relative;z-index:1;max-width:92vw;max-height:90vh;display:flex;flex-direction:column;align-items:center;gap:10px; }
.vi-lb-img { max-width:90vw;max-height:80vh;object-fit:contain;border-radius:6px;box-shadow:0 8px 40px rgba(0,0,0,.6); }
.vi-lb-caption { color:#fff;font-size:14px;max-width:80vw;text-align:center; }
.vi-lb-prev,.vi-lb-next,.vi-lb-close { position:fixed;background:rgba(255,255,255,.15);border:none;color:#fff;border-radius:50%;width:44px;height:44px;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;z-index:2; }
.vi-lb-close { top:20px;right:20px; }
.vi-lb-prev  { left:20px;top:50%;transform:translateY(-50%); }
.vi-lb-next  { right:20px;top:50%;transform:translateY(-50%); }
.vi-lb-prev:hover,.vi-lb-next:hover,.vi-lb-close:hover { background:rgba(255,255,255,.3); }
body.vi-no-scroll { overflow:hidden; }

/* ── MOBILE DRAWER ── */
.vi-mobile-drawer { position:fixed;top:0;left:-300px;width:280px;height:100vh;background:#fff;z-index:9999;transition:left .3s;overflow-y:auto;box-shadow:4px 0 20px rgba(0,0,0,.15); }
.vi-mobile-drawer.open { left:0; }
.vi-mobile-drawer-header { background:var(--r1,#8B0000);color:var(--gold,#FFD700);display:flex;justify-content:space-between;align-items:center;padding:14px 16px; }
.vi-mobile-drawer-title { font-weight:600;font-size:15px; }
.vi-mobile-drawer-close { background:none;border:none;color:var(--gold,#FFD700);font-size:20px;cursor:pointer; }
.vi-mobile-menu { list-style:none;margin:0;padding:0; }
.vi-mobile-menu li a { display:block;padding:12px 20px;border-bottom:1px solid #f0f0f0;color:#333;text-decoration:none;font-size:15px; }
.vi-mobile-menu li a:hover { background:#fff8f0;color:var(--r1,#8B0000); }
.vi-overlay { position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:9990;display:none; }
.vi-overlay.show { display:block; }

/* ── HEADER MOBILE SEARCH ── */
.vi-header-search-toggle { background:none;border:none;font-size:18px;cursor:pointer;padding:6px; }
.vi-mobile-menu-btn { background:none;border:none;font-size:22px;cursor:pointer;padding:6px;color:var(--r1,#8B0000); }
.vi-header-search-box { display:none;background:var(--r1,#8B0000);padding:12px 0; }
.vi-header-search-box.open { display:block; }
.vi-header-mobile-ctrl { display:none;gap:4px;align-items:center; }
.vi-header-search-desktop { flex:1;max-width:600px; }
@media(max-width:767px) {
  .vi-header-mobile-ctrl { display:flex; }
  .vi-header-search-desktop { display:none; }
}

/* ── TOPBAR SOCIAL ── */
.vi-topbar-social { color:rgba(255,255,255,.8);text-decoration:none;padding:3px 6px;border-radius:3px;font-size:13px; }
.vi-topbar-social:hover { color:#fff; }

/* ── FOOTER SOCIALS ── */
.vi-footer-socials { display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px; }
.vi-footer-socials a { background:rgba(255,255,255,.1);color:#fff;padding:6px 12px;border-radius:4px;text-decoration:none;font-size:13px;font-weight:600; }
.vi-footer-socials a:hover { background:var(--gold,#FFD700);color:#222; }
.vi-footer-hours { font-size:13px;color:rgba(255,255,255,.7);margin-bottom:12px; }
.vi-mt-8 { margin-top:8px; }

/* ── SIDEBAR CONTACT BOX ── */
.vi-sidebar-contact-box { background:#fff;border:1.5px solid #EDD5B3;border-radius:10px;padding:20px;display:flex;flex-direction:column;gap:14px; }
.vi-sidebar-rating { display:flex;align-items:center;gap:8px;font-size:14px; }
.vi-sidebar-price { font-size:15px;color:#555; }
.vi-sidebar-actions { display:flex;flex-direction:column;gap:8px; }
.vi-action-btn { display:block;padding:11px 16px;border-radius:6px;text-align:center;font-weight:600;font-size:14px;text-decoration:none;transition:opacity .2s; }
.vi-action-btn:hover { opacity:.85; }
.vi-btn-primary { background:var(--r1,#8B0000);color:#fff; }
.vi-btn-green   { background:#27ae60;color:#fff; }
.vi-btn-outline { background:#fff;color:var(--r1,#8B0000);border:2px solid var(--r1,#8B0000); }
.vi-btn-gold    { background:var(--gold,#FFD700);color:#222; }
.vi-btn-sm      { padding:7px 14px;font-size:13px; }
.vi-sidebar-info .vi-si-item { font-size:13px;color:#555;padding:4px 0;border-bottom:1px solid #f5f5f5; }
.vi-sidebar-social { display:flex;gap:8px;flex-wrap:wrap; }
.vi-ss-btn { width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:13px;text-decoration:none;color:#fff; }
.vi-ss-fb   { background:#1877f2; }
.vi-ss-ig   { background:linear-gradient(135deg,#e1306c,#833ab4); }
.vi-ss-yt   { background:#ff0000; }
.vi-ss-tt   { background:#000; }
.vi-ss-zalo { background:#0068ff; }
.vi-sidebar-packages .vi-sw-title { font-size:13px;font-weight:600;color:var(--r1,#8B0000);margin-bottom:8px; }
.vi-sidebar-pkg-list { list-style:none;margin:0;padding:0; }
.vi-sidebar-pkg-list li { display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid #f5f5f5;font-size:13px; }
.vi-pkg-p { font-weight:600;color:var(--r1,#8B0000); }
.vi-pkg-more a { font-size:12px;color:var(--r1,#8B0000);text-decoration:underline; }
.vi-sidebar-share { display:flex;align-items:center;gap:8px;font-size:13px;color:#777; }
.vi-share-fb,.vi-share-tw { background:#f0f0f0;padding:4px 10px;border-radius:4px;text-decoration:none;color:#333;font-size:12px;font-weight:600; }
.vi-share-fb:hover { background:#1877f2;color:#fff; }
.vi-share-tw:hover { background:#1da1f2;color:#fff; }

/* ── PAGE LAYOUT ── */
.vi-page-layout { display:grid;grid-template-columns:1fr 300px;gap:32px;padding:40px 0; }
.vi-page-title { font-size:28px;color:var(--r1,#8B0000);margin:0 0 20px; }
.vi-page-body { line-height:1.8; }
@media(max-width:900px) { .vi-page-layout { grid-template-columns:1fr; } }

/* ── ARCHIVE PAGE ── */
.vi-archive-sidebar-inner { padding:0 16px 20px; }
.vi-sw-search { display:flex;gap:8px; }
.vi-sw-search input { flex:1;padding:8px 10px;border:1px solid #ddd;border-radius:4px;font-size:14px; }
.vi-sw-search button { background:var(--r1,#8B0000);color:var(--gold,#FFD700);border:none;padding:8px 12px;border-radius:4px;cursor:pointer;font-size:14px; }
.vi-sw-select { width:100%;padding:8px;border:1px solid #ddd;border-radius:4px;font-size:14px; }
.vi-sw-check { display:flex;align-items:center;gap:6px;padding:5px 8px;border-radius:4px;cursor:pointer;font-size:13px;transition:background .15s; }
.vi-sw-check:hover,.vi-sw-check.active { background:#fff5f0;color:var(--r1,#8B0000); }
.vi-sw-check input[type="radio"] { margin:0; }
.vi-sw-count { margin-left:auto;background:#eee;border-radius:10px;padding:1px 7px;font-size:11px;color:#777; }
.vi-no-results { grid-column:1/-1;text-align:center;padding:60px 0;color:#777;font-size:16px; }
.vi-found-count { font-size:14px;color:#777; }

/* ── NAVBAR CTA ── */
.vi-navbar-cta { margin-left:auto; }

/* ── SINGLE SECTIONS ── */
.vi-section-related { margin-top:40px; }
.vi-section-related .vi-section-title { font-size:20px; }

/* ── ACHIEVEMENTS ── */
.vi-achievements-list { list-style:none;margin:0;padding:0; }
.vi-achievement-item { display:flex;gap:16px;padding:10px 0;border-bottom:1px solid #f0f0f0;font-size:14px; }
.vi-ach-year { font-weight:600;color:var(--r1,#8B0000);min-width:50px; }

/* ── CARD PERSON CENTERED ── */
.vi-card-body-center { text-align:center; }
.vi-card-thumb-round-wrap { display:flex;justify-content:center;padding:20px 0 10px; }
.vi-card-thumb-round { border-radius:50%;width:100px;height:100px;object-fit:cover; }
.vi-card-thumb-fallback.vi-card-thumb-round { border-radius:50%; }
.vi-hero-person { display:flex;justify-content:center;padding:32px 0; }
.vi-single-thumb-placeholder.vi-placeholder-round { border-radius:50%;width:160px;height:160px; }

/* ── META TAG ── */
.vi-meta-tag { display:inline-flex;align-items:center;gap:4px;background:#f5f5f5;border-radius:4px;padding:3px 8px;font-size:13px;color:#555;text-decoration:none; }
.vi-meta-tag:hover { background:#fff0e8;color:var(--r1,#8B0000); }
.vi-meta-cat,.vi-meta-prov { color:var(--r1,#8B0000); }
.vi-single-meta { display:flex;flex-wrap:wrap;gap:8px;margin-top:10px; }

/* ── BADGES ── */
.vi-badge { position:absolute;top:10px;right:10px;padding:4px 10px;border-radius:4px;font-size:12px;font-weight:600;z-index:2; }
.vi-badge + .vi-badge { right:auto;left:10px; }
.vi-badge-gold { background:var(--gold,#FFD700);color:#333; }
.vi-badge-red  { background:var(--r1,#8B0000);color:#fff; }
.vi-card-badge { position:absolute;top:10px;right:10px;padding:3px 8px;border-radius:4px;font-size:11px;font-weight:600;z-index:2; }
.vi-card-rating { position:absolute;bottom:8px;right:8px;background:rgba(0,0,0,.65);color:#FFD700;font-size:12px;font-weight:600;padding:3px 8px;border-radius:4px; }

/* ── FOOTER LOGO ── */
.vi-footer-logo { font-size:20px;font-weight:600;color:var(--gold,#FFD700);margin-bottom:10px;display:flex;align-items:center;gap:6px; }
.vi-footer-desc { font-size:13px;color:rgba(255,255,255,.7);line-height:1.6;margin-bottom:10px; }
.vi-footer-col p { font-size:13px;color:rgba(255,255,255,.75);margin:4px 0; }
.vi-footer-col p a { color:rgba(255,255,255,.9);text-decoration:none; }
.vi-footer-col-title { color:var(--gold,#FFD700);font-size:15px;font-weight:600;margin:0 0 12px;padding-bottom:8px;border-bottom:1px solid rgba(255,215,0,.2); }
.vi-footer-menu { list-style:none;margin:0;padding:0; }
.vi-footer-menu li { margin-bottom:6px; }
.vi-footer-menu a { color:rgba(255,255,255,.75);text-decoration:none;font-size:13px; }
.vi-footer-menu a:hover { color:var(--gold,#FFD700); }
.vi-footer-bottom { border-top:1px solid rgba(255,215,0,.15);margin-top:24px;padding-top:16px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px; }
.vi-footer-bottom p { font-size:12px;color:rgba(255,255,255,.5);margin:0; }
.vi-footer-bottom a { color:var(--gold,#FFD700);text-decoration:none; }

/* ── MISC ── */
.vi-header-wave svg,.vi-footer-wave svg { display:block; }
.vi-logo-text { text-decoration:none;color:var(--r1,#8B0000);font-weight:600;font-size:20px;display:flex;align-items:center;gap:6px; }
.vi-logo-icon { font-size:24px; }

/* ── FILTER TOGGLE ── */
.vi-filter-toggle { display:none;background:var(--r1,#8B0000);color:var(--gold,#FFD700);border:none;padding:9px 18px;border-radius:6px;font-weight:600;font-size:14px;cursor:pointer;margin-bottom:12px; }
@media(max-width:767px) { .vi-filter-toggle { display:block; } }
