/* ============================================================
   Vietnam Tours — custom stylesheet
   ============================================================ */

:root {
  --primary:      #1a1a2e;
  --accent:       #e94560;
  --star:         #f5a623;
  --green-tag:    #2e7d32;
  --blue-tag:     #1565c0;
  --card-shadow:  0 2px 12px rgba(0,0,0,.08);
  --card-hover:   0 8px 32px rgba(0,0,0,.14);
  --radius:       12px;
  --text:         #1a1a1a;
  --muted:        #666;
  --light:        #999;
  --bg:           #f5f7fa;
  --white:        #ffffff;
  --border:       #e8e8e8;
  --tag-bg:       #efefef;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.tours-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── HEADER ───────────────────────────────────────────────── */
.vt-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.vt-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.vt-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 36px;
}
.vt-logo__img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}
.vt-logo__img--icon { display: none; }

/* Desktop nav */
.vt-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.vt-nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.vt-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.vt-nav__link:hover {
  color: var(--primary);
  background: var(--bg);
}
.vt-nav__link:hover::after { transform: scaleX(1); }
.vt-nav__link.is-active {
  color: var(--primary);
  font-weight: 600;
}
.vt-nav__link.is-active::after { transform: scaleX(1); }

.vt-nav__link--promo {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
}
.vt-nav__link--promo::after { display: none; }
.vt-nav__link--promo:hover,
.vt-nav__link--promo.is-active {
  background: none;
  color: var(--primary);
  font-weight: 600;
}
.vt-nav__link--promo.is-active::after,
.vt-nav__link--promo:hover::after { display: block; transform: scaleX(1); }
.vt-mobile-nav__link--promo {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 10px 16px;
  margin: 4px 0;
}
.vt-mobile-nav__link--promo:hover,
.vt-mobile-nav__link--promo.is-active { background: none; color: var(--primary); }

/* Right group */
.vt-header__right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Social icon buttons */
.vt-header__social {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
  padding-right: 14px;
  border-right: 1px solid var(--border);
}
.vt-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.vt-social-btn svg { width: 17px; height: 17px; display: block; }
.vt-social-btn:hover {
  background: var(--bg);
  color: var(--primary);
}

/* CTA button */
.vt-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
  margin-left: 6px;
}
.vt-header__cta:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* Hamburger (hidden on desktop) */
.vt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  border-radius: 8px;
  transition: background .15s;
}
.vt-hamburger:hover { background: var(--bg); }
.vt-hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
  transform-origin: center;
}
.vt-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vt-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.vt-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.vt-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.vt-mobile-nav.is-open { display: flex; }
.vt-mobile-nav__link {
  padding: 13px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid var(--bg);
  transition: color .15s;
}
.vt-mobile-nav__link:last-child { border-bottom: none; }
.vt-mobile-nav__link:hover,
.vt-mobile-nav__link.is-active { color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────── */
.vt-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 60%, #1a1a2e 100%);
}
.vt-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/seed/vietnamhero/1600/700') center/cover no-repeat;
  opacity: .28;
}
.vt-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
}
.vt-hero__content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.vt-hero__content p {
  font-size: 17px;
  opacity: .82;
  max-width: 480px;
  margin: 0 auto 28px;
}
.vt-hero__search {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.vt-hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}
.vt-hero__search button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.vt-hero__search button:hover { opacity: .88; }

/* ── FILTER BAR ───────────────────────────────────────────── */
.vt-filters {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 190;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.vt-filters__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tag pills */
.vt-tag-bar {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.vt-tag-bar::-webkit-scrollbar { display: none; }

.vt-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--tag-bg);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
}
.vt-tag:hover { background: #e0e0e0; }
.vt-tag.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.vt-tag__icon { font-size: 14px; }

/* Dropdown row — single line */
.vt-filter-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0 12px;
  flex-wrap: nowrap;
}
.vt-filter-row select,
.vt-filter-row input[type="text"] {
  height: 36px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
  /* override any theme width: 100% */
  width: auto !important;
  flex-shrink: 0;
  box-sizing: border-box;
}
.vt-filter-row select {
  padding-right: 32px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  min-width: 150px;
}
.vt-filter-row select:focus,
.vt-filter-row input:focus { border-color: var(--primary); }
.vt-filter-row input[type="text"] {
  flex: 1 1 auto;
  min-width: 120px;
  max-width: 240px;
  flex-shrink: 1;
}
.vt-filter-row input[type="text"]::placeholder { color: var(--light); }
.vt-filter-row .vt-search-btn {
  height: 36px;
  padding: 0 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.vt-filter-row .vt-search-btn:hover { opacity: .85; }
.vt-results-info {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── TOUR GRID ────────────────────────────────────────────── */
.vt-tours-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}

.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* ── TOUR CARD ────────────────────────────────────────────── */
.vt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.vt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover);
}
.vt-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Card image + thumbnails */
.vt-card__images {
  position: relative;
  flex-shrink: 0;
}
.vt-card__main-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #ddd;
  transition: transform .4s;
}
.vt-card:hover .vt-card__main-img { transform: scale(1.04); }
.vt-card__images-overflow { overflow: hidden; aspect-ratio: 16/10; }

.vt-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.vt-card__thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #ddd;
}

/* Card body */
.vt-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vt-card__meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.vt-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--text);
}
.vt-card__rating::before {
  content: '★';
  color: var(--star);
  font-size: 13px;
}
.vt-card__pax {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vt-card__pax::before { content: '👥'; font-size: 12px; }

.vt-card__price {
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vt-card__price-was {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1px;
}
.vt-card__price-from {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.vt-card__price-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.vt-card__price-amount.is-discounted {
  color: #c0001a;
}
.vt-card__price-duration {
  font-size: 12px;
  color: var(--muted);
}
.vt-card__price-sep {
  color: var(--border);
  font-weight: 300;
}

.vt-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #c0001a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.vt-card__ribbon--bestseller {
  background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
  color: #3b2800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.vt-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0 4px;
}

.vt-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 6px;
}
.vt-tag-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.5;
}
.vt-tag-pill--type {
  background: #e8f5e9;
  color: var(--green-tag);
}
.vt-tag-pill--lang {
  background: #e3f2fd;
  color: var(--blue-tag);
}
.vt-tag-pill--bay {
  background: #e0f4ff;
  color: #0077a8;
}
.vt-tag-pill--cabins {
  background: #f3f0ff;
  color: #6b48c8;
}

/* ── TRIP TAG FILTER BAR (second row) ─────────────────────── */
.vt-tag-bar--trip-tags,
.vt-tag-bar--format {
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.vt-tag--small {
  font-size: 12px;
  padding: 4px 12px;
}
.vt-tag--small.is-active {
  background: #c0001a;
  border-color: #c0001a;
}

/* ── DESTINATION DROPDOWN ─────────────────────────────────── */
.vt-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white);
  /* chevron via inline SVG background-image */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 30px 4px 14px;
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  line-height: 1.4;
  transition: border-color .15s, box-shadow .15s;
}
.vt-filter-select:hover { border-color: #bbb; }
.vt-filter-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(233,69,96,.15); }

/* Active state — destination selected */
.vt-filter-select.is-active {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  border-color: var(--accent);
  color: #fff;
}

/* Dropdown options list */
.vt-filter-select option {
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  padding: 6px 12px;
}

.vt-tag-bar__sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

@media (prefers-color-scheme: dark) {
  .vt-filter-select {
    background-color: #1e1e2e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
    border-color: #333;
    color: #e0e0e0;
  }
  .vt-filter-select:hover { border-color: #555; }
  .vt-filter-select option { background: #1e1e2e; color: #e0e0e0; }
  .vt-tag-bar__sep { background: #333; }
}

/* ── FORMAT BADGES ────────────────────────────────────────── */
.vt-tag-pill--private {
  background: #fff3e0;
  color: #e65100;
  font-weight: 700;
  letter-spacing: .02em;
}
.vt-tag-pill--small-group {
  background: #e8f4fd;
  color: #0e6fa8;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ── TRIP TAG PILLS ON CARD ───────────────────────────────── */
.vt-card__trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.vt-trip-tag-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .15s;
  background: #fff3f3;
  color: #c0001a;
  border: 1px solid #ffc5c5;
}
.vt-trip-tag-pill:hover { opacity: .75; }
.vt-trip-tag-pill--luxury-cruises       { background: #fff8e1; color: #b8860b; border-color: #ffe082; }
.vt-trip-tag-pill--mid-range-cruises    { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; }
.vt-trip-tag-pill--budget-cruises       { background: #e3f2fd; color: #1565c0; border-color: #90caf9; }
.vt-trip-tag-pill--new-cruises-2026     { background: #fce4ec; color: #c62828; border-color: #f48fb1; }
.vt-trip-tag-pill--family-cruises       { background: #e8eaf6; color: #3949ab; border-color: #9fa8da; }
.vt-trip-tag-pill--honeymoon-cruises    { background: #fce4ec; color: #ad1457; border-color: #f48fb1; }
.vt-trip-tag-pill--small-boat-cruises   { background: #e0f4ff; color: #0077a8; border-color: #90caf9; }

/* ── LOAD MORE ────────────────────────────────────────────── */
.vt-load-more {
  text-align: center;
  padding: 40px 0 0;
}
.vt-load-more a {
  display: inline-block;
  padding: 13px 44px;
  border: 2px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.vt-load-more a:hover {
  background: var(--primary);
  color: #fff;
}

/* ── NO RESULTS ───────────────────────────────────────────── */
.vt-no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}
.vt-no-results a { color: var(--accent); text-decoration: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
.vt-footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 56px 24px 20px;
}
.vt-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vt-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.vt-footer__col p,
.vt-footer__col li {
  font-size: 13px;
  line-height: 2;
  opacity: .75;
}
.vt-footer__col ul { list-style: none; }
.vt-footer__col a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}
.vt-footer__col a:hover { color: #fff; }
.vt-footer__logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.vt-footer__logo span { color: var(--accent); }
.vt-footer__social {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}
.vt-footer__social .vt-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.vt-footer__social .vt-social-btn svg { width: 16px; height: 16px; }
.vt-footer__social .vt-social-btn:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.vt-footer__bottom {
  max-width: 1280px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 12px;
  opacity: .4;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vt-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vt-header__inner { padding: 0 16px; }
  .vt-logo { margin-right: auto; }
  .vt-nav { display: none; }
  .vt-header__social { display: none; }
  .vt-header__cta { display: none; }
  .vt-hamburger { display: flex; }
  .vt-logo__img--wide { display: none; }
  .vt-logo__img--icon { display: block; height: 36px; }
  .vt-hero__content { padding: 44px 16px; }
  .vt-filters__inner { padding: 0 16px; }
  .vt-tours-section { padding: 24px 16px 48px; }
  .vt-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .vt-filter-row { flex-wrap: wrap; overflow-x: auto; }
  .vt-filter-row select { min-width: 130px; }
  .vt-filter-row input[type="text"] { min-width: 0; max-width: 100%; flex: 1 1 100px; }
  .vt-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .vt-grid { grid-template-columns: 1fr; }
  .vt-card__thumbs { display: none; }
}

/* ── CRUISE VARIANT BADGES ────────────────────────────────── */
.vt-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.vt-variant-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, color .15s, background .15s;
}

.vt-variant-badge span {
  font-weight: 600;
  color: var(--accent);
}

.vt-variant-badge.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.vt-variant-badge.is-active span {
  color: rgba(255,255,255,.9);
}

.vt-variant-badge:not(.is-active):hover {
  border-color: var(--accent);
  color: var(--accent);
}
