/*
Theme Name: CampervanDeal
Theme URI: https://campervandeal.com
Author: CampervanDeal
Author URI: https://campervandeal.com
Description: Content-first campervan travel theme for itineraries, road-trip guides and coupons across Australia and New Zealand. Fully editable in WordPress with Classic Editor and structured CMS sections.
Version: 6.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: campervandeal
Tags: custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — controlled by Customizer
   ============================================================ */
:root {
  --cvd-brand:        #6548e8;
  --cvd-brand-dark:   #563bd5;
  --cvd-brand-light:  #8b78ef;
  --cvd-accent:       #f97316;
  --cvd-accent-dark:  #ea6d0a;
  --cvd-black:        #202126;
  --cvd-white:        #ffffff;
  --cvd-gray-50:      #f9fafb;
  --cvd-gray-100:     #f3f4f6;
  --cvd-gray-200:     #e5e7eb;
  --cvd-gray-400:     #9ca3af;
  --cvd-gray-600:     #4b5563;
  --cvd-gray-800:     #202126;
  --cvd-radius:       12px;
  --cvd-radius-sm:    8px;
  --cvd-radius-lg:    20px;
  --cvd-radius-full:  9999px;
  --cvd-shadow:       0 4px 24px rgba(0,0,0,0.08);
  --cvd-shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --cvd-transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --cvd-font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --cvd-font-body:    'DM Sans', 'Segoe UI', sans-serif;
  --cvd-max-width:    1280px;
  --cvd-header-h:     72px;
  --cvd-text:         #202126;
  --cvd-text-soft:    #666b72;
  --cvd-text-muted:   #85888d;
  --cvd-surface-soft: #f7f7f8;
  --cvd-purple-soft:  #f3f0ff;
  --cvd-purple-line:  #e4defc;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--cvd-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cvd-gray-800);
  background: var(--cvd-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--cvd-brand); text-decoration: none; transition: color var(--cvd-transition); }
a:hover { color: var(--cvd-brand-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--cvd-font-body);
  font-size: 1rem;
  border: 1.5px solid var(--cvd-gray-200);
  border-radius: var(--cvd-radius-sm);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--cvd-transition), box-shadow var(--cvd-transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cvd-brand);
  box-shadow: 0 0 0 3px rgba(135,48,250,0.12);
}

/* ============================================================
   TYPOGRAPHY — REFINED SCALE
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cvd-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cvd-gray-800);
}

h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  line-height: 1.25;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: var(--cvd-gray-400);
}

.text-center {
  text-align: center;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.cvd-container {
  max-width: var(--cvd-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) { .cvd-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .cvd-container { padding-left: 2rem; padding-right: 2rem; } }

.cvd-section { padding: 4rem 0; }
.cvd-section-sm { padding: 2.5rem 0; }
.cvd-section-lg { padding: 6rem 0; }

.cvd-grid-2 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.cvd-grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.cvd-grid-4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .cvd-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .cvd-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cvd-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cvd-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cvd-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.cvd-flex { display: flex; }
.cvd-flex-center { display: flex; align-items: center; justify-content: center; }
.cvd-flex-between { display: flex; align-items: center; justify-content: space-between; }
.cvd-gap-2 { gap: 0.5rem; }
.cvd-gap-4 { gap: 1rem; }
.cvd-gap-6 { gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.cvd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--cvd-radius-full);
  font-family: var(--cvd-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--cvd-transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.cvd-btn-primary {
  background: var(--cvd-brand);
  color: var(--cvd-white);
  border-color: var(--cvd-brand);
}
.cvd-btn-primary:hover {
  background: var(--cvd-brand-dark);
  border-color: var(--cvd-brand-dark);
  color: var(--cvd-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(135,48,250,0.35);
}
.cvd-btn-secondary {
  background: var(--cvd-white);
  color: var(--cvd-gray-800);
  border-color: var(--cvd-gray-200);
}
.cvd-btn-secondary:hover {
  background: var(--cvd-gray-50);
  color: var(--cvd-gray-800);
  border-color: #cfd2d7;
  transform: translateY(-1px);
}
.cvd-btn-accent {
  background: var(--cvd-accent);
  color: var(--cvd-white);
  border-color: var(--cvd-accent);
}
.cvd-btn-accent:hover {
  background: var(--cvd-accent-dark);
  border-color: var(--cvd-accent-dark);
  color: var(--cvd-white);
  transform: translateY(-1px);
}
.cvd-btn-ghost {
  background: transparent;
  color: var(--cvd-brand);
  border-color: transparent;
}
.cvd-btn-ghost:hover { background: rgba(135,48,250,0.08); color: var(--cvd-brand); }
.cvd-btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.cvd-btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.cvd-btn-white {
  background: var(--cvd-white);
  color: var(--cvd-brand);
  border-color: var(--cvd-white);
}
.cvd-btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--cvd-brand-dark);
  transform: translateY(-1px);
}

/* ============================================================
   CARDS
   ============================================================ */
.cvd-card {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  box-shadow: var(--cvd-shadow);
  overflow: hidden;
  transition: transform var(--cvd-transition), box-shadow var(--cvd-transition);
  border: 1px solid var(--cvd-gray-100);
}
.cvd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cvd-shadow-lg);
}
.cvd-card-body { padding: 1.25rem; }
.cvd-card-img { width: 100%; height: 200px; object-fit: cover; }
.cvd-card-img-lg { height: 260px; }

/* ============================================================
   BADGES
   ============================================================ */
.cvd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--cvd-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--cvd-font-heading);
}
.cvd-badge-brand { background: rgba(135,48,250,0.1); color: var(--cvd-brand); }
.cvd-badge-orange { background: rgba(249,115,22,0.1); color: var(--cvd-accent); }
.cvd-badge-green { background: rgba(16,185,129,0.1); color: #059669; }
.cvd-badge-white { background: rgba(255,255,255,0.9); color: var(--cvd-gray-800); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.cvd-section-header { margin-bottom: 2.5rem; }
.cvd-section-header.text-center { text-align: center; }
.cvd-section-header h2 { margin-bottom: 0.625rem; }
.cvd-section-header p { color: var(--cvd-gray-600); font-size: 1.0625rem; }
.cvd-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--cvd-purple-soft);
  color: var(--cvd-gray-800);
  padding: 0.3rem 0.875rem;
  border-radius: var(--cvd-radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--cvd-font-heading);
  margin-bottom: 0.875rem;
}

/* ============================================================
   STARS / RATINGS
   ============================================================ */
.cvd-stars { display: flex; gap: 2px; color: #f59e0b; }
.cvd-stars svg { width: 14px; height: 14px; fill: currentColor; }
.cvd-rating-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.cvd-rating-count { color: var(--cvd-gray-400); }

/* ============================================================
   FORMS
   ============================================================ */
.cvd-form-group { margin-bottom: 1.25rem; }
.cvd-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--cvd-gray-800);
  font-family: var(--cvd-font-heading);
}
.cvd-input-icon { position: relative; }
.cvd-input-icon svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--cvd-gray-400); pointer-events: none; }
.cvd-input-icon input { padding-left: 2.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
#cvd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cvd-gray-100);
  height: var(--cvd-header-h);
  transition: box-shadow var(--cvd-transition);
}
#cvd-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.09); }
.cvd-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cvd-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.cvd-logo-mark {
  width: 36px; height: 36px;
  background: var(--cvd-brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.875rem;
  font-family: var(--cvd-font-heading);
  letter-spacing: -0.5px;
}
.cvd-logo-text {
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--cvd-gray-800);
  letter-spacing: -0.3px;
}
.cvd-logo-text span { color: var(--cvd-brand); }

/* Primary nav */
.cvd-nav { display: none; }
@media (min-width: 1024px) {
  .cvd-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    margin-left: 1.5rem;
  }
}
.cvd-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--cvd-radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--cvd-gray-600);
  transition: color var(--cvd-transition), background var(--cvd-transition);
  text-decoration: none;
  font-family: var(--cvd-font-body);
}
.cvd-nav-item:hover, .cvd-nav-item.active {
  color: var(--cvd-brand);
  background: rgba(135,48,250,0.07);
}
.cvd-nav-item svg { width: 15px; height: 15px; transition: transform var(--cvd-transition); }
.cvd-nav-item:hover svg { transform: rotate(180deg); }

/* Dropdown */
.cvd-dropdown {
  position: relative;
}
.cvd-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  box-shadow: var(--cvd-shadow-lg);
  border: 1px solid var(--cvd-gray-100);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 100;
}
.cvd-dropdown:hover .cvd-dropdown-menu,
.cvd-dropdown-menu:hover { display: block; }
.cvd-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--cvd-radius-sm);
  font-size: 0.9rem;
  color: var(--cvd-gray-600);
  text-decoration: none;
  transition: background var(--cvd-transition), color var(--cvd-transition);
}
.cvd-dropdown-item:hover {
  background: rgba(135,48,250,0.07);
  color: var(--cvd-brand);
}
.cvd-dropdown-divider {
  height: 1px;
  background: var(--cvd-gray-100);
  margin: 0.375rem 0;
}

/* Header actions */
.cvd-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.cvd-currency-select {
  border: 1.5px solid var(--cvd-gray-200);
  border-radius: var(--cvd-radius-sm);
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cvd-gray-600);
  background: var(--cvd-white);
  width: auto;
}

/* Mobile toggle */
.cvd-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--cvd-radius-sm);
  color: var(--cvd-gray-600);
  transition: background var(--cvd-transition);
}
.cvd-mobile-toggle:hover { background: var(--cvd-gray-100); }
@media (min-width: 1024px) { .cvd-mobile-toggle { display: none; } }

/* Mobile menu */
.cvd-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--cvd-header-h);
  background: var(--cvd-white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--cvd-gray-100);
}
.cvd-mobile-menu.open { display: block; }
.cvd-mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--cvd-radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cvd-gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--cvd-gray-100);
  transition: background var(--cvd-transition), color var(--cvd-transition);
}
.cvd-mobile-nav-item:hover { background: rgba(135,48,250,0.06); color: var(--cvd-brand); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.cvd-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cvd-gray-800);
}
.cvd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.cvd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(135,48,250,0.28) 100%);
}
.cvd-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 4rem;
  text-align: center;
}
.cvd-hero-title {
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cvd-white);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cvd-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.cvd-search-bar {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius-full);
  padding: 0.625rem 0.625rem 0.625rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.cvd-search-field {
  flex: 1;
  min-width: 140px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--cvd-gray-800);
  box-shadow: none;
}
.cvd-search-field:focus { box-shadow: none; border-color: transparent; }
.cvd-search-divider {
  width: 1px;
  height: 28px;
  background: var(--cvd-gray-200);
  flex-shrink: 0;
}
.cvd-search-btn {
  background: var(--cvd-brand);
  color: white;
  border: none;
  border-radius: var(--cvd-radius-full);
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-family: var(--cvd-font-heading);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background var(--cvd-transition), transform var(--cvd-transition), box-shadow var(--cvd-transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.cvd-search-btn:hover {
  background: var(--cvd-brand-dark);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(135,48,250,0.35);
}
.cvd-search-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cvd-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
  font-family: var(--cvd-font-heading);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.cvd-stats-bar {
  background: var(--cvd-white);
  border-bottom: 1px solid var(--cvd-gray-100);
  padding: 1.25rem 0;
}
.cvd-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .cvd-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.cvd-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--cvd-radius-sm);
  transition: background var(--cvd-transition);
}
.cvd-stat:hover { background: rgba(135,48,250,0.05); }
.cvd-stat-icon {
  width: 38px; height: 38px;
  background: rgba(135,48,250,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cvd-brand);
  flex-shrink: 0;
}
.cvd-stat-icon svg { width: 18px; height: 18px; }
.cvd-stat-value {
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--cvd-gray-800);
  line-height: 1;
}
.cvd-stat-label { font-size: 0.8125rem; color: var(--cvd-gray-400); margin-top: 2px; }

/* ============================================================
   DEAL CARD
   ============================================================ */
.cvd-deal-card {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  box-shadow: var(--cvd-shadow);
  overflow: hidden;
  transition: transform var(--cvd-transition), box-shadow var(--cvd-transition);
  border: 1px solid var(--cvd-gray-100);
  display: flex;
  flex-direction: column;
}
.cvd-deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cvd-shadow-lg);
  border-color: rgba(135,48,250,0.2);
}
.cvd-deal-card-img-wrap { position: relative; overflow: hidden; }
.cvd-deal-card-img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cvd-deal-card:hover .cvd-deal-card-img { transform: scale(1.05); }
.cvd-deal-card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.cvd-deal-card-badge-right { position: absolute; top: 12px; right: 12px; }
.cvd-deal-card-body { padding: 1.125rem; flex: 1; display: flex; flex-direction: column; }
.cvd-deal-card-title {
  font-family: var(--cvd-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cvd-gray-800);
  margin-bottom: 0.375rem;
  transition: color var(--cvd-transition);
}
.cvd-deal-card:hover .cvd-deal-card-title { color: var(--cvd-brand); }
.cvd-deal-card-location {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; color: var(--cvd-gray-400);
  margin-bottom: 0.625rem;
}
.cvd-deal-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.cvd-deal-amenities { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }
.cvd-amenity-tag {
  padding: 0.2rem 0.5rem;
  border-radius: var(--cvd-radius-full);
  border: 1px solid var(--cvd-gray-200);
  font-size: 0.75rem;
  color: var(--cvd-gray-600);
}
.cvd-deal-card-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--cvd-gray-100);
  padding-top: 0.75rem;
  margin-top: auto;
}
.cvd-deal-price-current {
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--cvd-accent);
}
.cvd-deal-price-original {
  font-size: 0.875rem;
  color: var(--cvd-gray-400);
  text-decoration: line-through;
  margin-left: 0.375rem;
}
.cvd-deal-period { font-size: 0.75rem; color: var(--cvd-gray-400); }
.cvd-deal-urgency { font-size: 0.75rem; color: var(--cvd-accent); font-weight: 600; }

/* Deal card horizontal (listing page) */
.cvd-deal-card-h {
  display: flex;
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  box-shadow: var(--cvd-shadow);
  overflow: hidden;
  border: 1px solid var(--cvd-gray-100);
  transition: transform var(--cvd-transition), box-shadow var(--cvd-transition);
  margin-bottom: 1.25rem;
}
.cvd-deal-card-h:hover {
  transform: translateY(-2px);
  box-shadow: var(--cvd-shadow-lg);
  border-color: rgba(135,48,250,0.2);
}
.cvd-deal-card-h-img {
  width: 260px; min-height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}
.cvd-deal-card-h-body { flex: 1; padding: 1.375rem; display: flex; flex-direction: column; }
.cvd-deal-card-h-actions { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
@media (max-width: 640px) {
  .cvd-deal-card-h { flex-direction: column; }
  .cvd-deal-card-h-img { width: 100%; height: 200px; }
}

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.cvd-filter-sidebar {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  box-shadow: var(--cvd-shadow);
  border: 1px solid var(--cvd-gray-100);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--cvd-header-h) + 1rem);
  max-height: calc(100vh - var(--cvd-header-h) - 2rem);
  overflow-y: auto;
}
.cvd-filter-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--cvd-gray-100); }
.cvd-filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cvd-filter-title {
  font-family: var(--cvd-font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cvd-gray-800);
  margin-bottom: 0.875rem;
}
.cvd-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--cvd-gray-700);
  cursor: pointer;
  padding: 0.375rem 0;
}
.cvd-checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 2px solid var(--cvd-gray-300);
  accent-color: var(--cvd-brand);
  cursor: pointer;
  flex-shrink: 0;
}
.cvd-price-range { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--cvd-brand); font-weight: 600; margin-top: 0.5rem; }
.cvd-range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--cvd-gray-200);
  border-radius: 2px;
  outline: none;
  border: none;
  padding: 0;
}
.cvd-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--cvd-brand);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(135,48,250,0.35);
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.cvd-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  border-radius: var(--cvd-radius);
  border: 2px solid var(--cvd-gray-100);
  background: var(--cvd-white);
  cursor: pointer;
  transition: all var(--cvd-transition);
  text-align: center;
  text-decoration: none;
  color: var(--cvd-gray-700);
}
.cvd-category-btn:hover, .cvd-category-btn.active {
  border-color: var(--cvd-brand);
  background: rgba(135,48,250,0.05);
  color: var(--cvd-brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(135,48,250,0.15);
}
.cvd-category-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  transition: transform var(--cvd-transition);
}
.cvd-category-btn:hover .cvd-category-icon { transform: scale(1.1); }
.cvd-category-label { font-size: 0.875rem; font-weight: 600; font-family: var(--cvd-font-heading); line-height: 1.3; }

/* ============================================================
   ITINERARY CARD
   ============================================================ */
.cvd-itin-card {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius-lg);
  box-shadow: var(--cvd-shadow);
  overflow: hidden;
  border: 2px solid var(--cvd-gray-100);
  transition: all var(--cvd-transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.cvd-itin-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cvd-shadow-lg);
  border-color: rgba(135,48,250,0.25);
}
.cvd-itin-card-img-wrap { position: relative; overflow: hidden; }
.cvd-itin-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.cvd-itin-card:hover .cvd-itin-card-img { transform: scale(1.06); }
.cvd-itin-card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.cvd-itin-card-tags { position: absolute; bottom: 14px; left: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.cvd-itin-card-body { padding: 1.375rem; flex: 1; display: flex; flex-direction: column; }
.cvd-itin-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; margin: 0.875rem 0; font-size: 0.875rem; color: var(--cvd-gray-600); }
.cvd-itin-meta-item { display: flex; align-items: center; gap: 0.375rem; }
.cvd-itin-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.cvd-highlights { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1rem; }
.cvd-highlight-tag {
  background: var(--cvd-gray-50);
  border: 1px solid var(--cvd-gray-200);
  border-radius: var(--cvd-radius-sm);
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: var(--cvd-gray-600);
}

/* ============================================================
   FEATURES / WHY CHOOSE
   ============================================================ */
.cvd-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--cvd-radius-lg);
  background: var(--cvd-white);
  border: 1.5px solid var(--cvd-gray-100);
  transition: all var(--cvd-transition);
}
.cvd-feature-card:hover {
  border-color: rgba(135,48,250,0.25);
  box-shadow: var(--cvd-shadow);
  transform: translateY(-3px);
}
.cvd-feature-icon {
  width: 64px; height: 64px;
  background: rgba(135,48,250,0.08);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--cvd-transition);
}
.cvd-feature-card:hover .cvd-feature-icon { background: rgba(135,48,250,0.14); }
.cvd-feature-icon svg { width: 28px; height: 28px; color: var(--cvd-brand); }
.cvd-feature-title {
  font-family: var(--cvd-font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}
.cvd-feature-desc { font-size: 0.9rem; color: var(--cvd-gray-600); line-height: 1.6; }

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.cvd-testimonial {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius);
  padding: 1.5rem;
  box-shadow: var(--cvd-shadow);
  border: 1px solid var(--cvd-gray-100);
}
.cvd-testimonial-header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.875rem; }
.cvd-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cvd-testimonial-name { font-weight: 700; font-family: var(--cvd-font-heading); font-size: 0.9375rem; }
.cvd-testimonial-location { font-size: 0.8125rem; color: var(--cvd-gray-400); }
.cvd-testimonial-text { font-size: 0.9rem; color: var(--cvd-gray-600); line-height: 1.7; font-style: italic; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.cvd-steps { display: grid; gap: 2rem; }
@media (min-width: 768px) { .cvd-steps { grid-template-columns: repeat(3, 1fr); } }
.cvd-step { text-align: center; position: relative; }
.cvd-step-number {
  width: 52px; height: 52px;
  background: var(--cvd-brand);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(135,48,250,0.35);
}
.cvd-step-title { font-family: var(--cvd-font-heading); font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.5rem; }
.cvd-step-desc { font-size: 0.9rem; color: var(--cvd-gray-600); }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.cvd-newsletter { background: var(--cvd-brand); padding: 3.5rem 0; }
.cvd-newsletter h2 { color: var(--cvd-white); margin-bottom: 0.625rem; }
.cvd-newsletter p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.cvd-newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; flex-wrap: wrap; }
.cvd-newsletter-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--cvd-radius-full);
  padding: 0.75rem 1.25rem;
  color: var(--cvd-white);
  font-size: 0.9375rem;
}
.cvd-newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.cvd-newsletter-input:focus { border-color: rgba(255,255,255,0.7); box-shadow: none; }
.cvd-newsletter-note { color: rgba(255,255,255,0.55); font-size: 0.8125rem; margin-top: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.cvd-footer {
  background: var(--cvd-black);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 1.5rem;
}
.cvd-footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .cvd-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cvd-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.cvd-footer-brand { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.625rem; }
.cvd-footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.cvd-footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.375rem;
  text-decoration: none;
  transition: color var(--cvd-transition);
}
.cvd-footer-contact a:hover { color: var(--cvd-white); }
.cvd-footer-col-title { color: var(--cvd-white); font-family: var(--cvd-font-heading); font-weight: 700; font-size: 0.9375rem; margin-bottom: 1.125rem; }
.cvd-footer-link {
  display: block; color: rgba(255,255,255,0.6); font-size: 0.875rem;
  text-decoration: none; margin-bottom: 0.5rem;
  transition: color var(--cvd-transition);
}
.cvd-footer-link:hover { color: var(--cvd-white); }
.cvd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8125rem;
}
.cvd-footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cvd-footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--cvd-transition); }
.cvd-footer-bottom-links a:hover { color: var(--cvd-white); }
.cvd-social { display: flex; gap: 0.75rem; margin-top: 1.125rem; }
.cvd-social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--cvd-transition);
}
.cvd-social-btn:hover { background: var(--cvd-brand); color: white; }
.cvd-social-btn svg { width: 16px; height: 16px; }

/* ============================================================
   BLOG
   ============================================================ */
.cvd-blog-card .cvd-card-img { height: 220px; }
.cvd-blog-cat {
  display: inline-block;
  background: rgba(135,48,250,0.1);
  color: var(--cvd-brand);
  padding: 0.2rem 0.625rem;
  border-radius: var(--cvd-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--cvd-font-heading);
}
.cvd-blog-date { font-size: 0.8125rem; color: var(--cvd-gray-400); display: flex; align-items: center; gap: 0.375rem; }

/* ============================================================
   PAGINATION
   ============================================================ */
.cvd-pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 2rem 0; }
.cvd-page-btn {
  width: 40px; height: 40px;
  border-radius: var(--cvd-radius-sm);
  border: 1.5px solid var(--cvd-gray-200);
  background: var(--cvd-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--cvd-gray-600);
  cursor: pointer;
  transition: all var(--cvd-transition);
  text-decoration: none;
  font-family: var(--cvd-font-heading);
  font-weight: 600;
}
.cvd-page-btn:hover, .cvd-page-btn.active {
  background: var(--cvd-brand);
  border-color: var(--cvd-brand);
  color: white;
}

/* ============================================================
   DEAL LISTING LAYOUT
   ============================================================ */
.cvd-deals-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cvd-deals-layout {
    grid-template-columns: 300px 1fr;
    align-items: start;
  }
}
.cvd-deals-main {}
.cvd-results-bar {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius) var(--cvd-radius) 0 0;
  border: 1px solid var(--cvd-gray-100);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid var(--cvd-gray-100);
}
.cvd-results-count { font-size: 0.9rem; color: var(--cvd-gray-600); }
.cvd-results-count strong { color: var(--cvd-gray-800); font-family: var(--cvd-font-heading); }
.cvd-sort-select {
  border: 1.5px solid var(--cvd-gray-200);
  border-radius: var(--cvd-radius-sm);
  padding: 0.4rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cvd-gray-700);
  background: var(--cvd-white);
  cursor: pointer;
  width: auto;
}
.cvd-results-list {
  border: 1px solid var(--cvd-gray-100);
  border-top: none;
  border-radius: 0 0 var(--cvd-radius) var(--cvd-radius);
  overflow: hidden;
}
.cvd-results-list .cvd-deal-card-h { border-radius: 0; border: none; border-bottom: 1px solid var(--cvd-gray-100); margin: 0; }
.cvd-results-list .cvd-deal-card-h:last-child { border-bottom: none; }

/* ============================================================
   SINGLE DEAL PAGE
   ============================================================ */
.cvd-single-deal-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cvd-single-deal-layout { grid-template-columns: 1fr 360px; align-items: start; } }
.cvd-single-deal-sticky {
  position: sticky;
  top: calc(var(--cvd-header-h) + 1rem);
}
.cvd-booking-box {
  background: var(--cvd-white);
  border-radius: var(--cvd-radius-lg);
  box-shadow: var(--cvd-shadow-lg);
  border: 1.5px solid var(--cvd-gray-100);
  padding: 1.75rem;
}
.cvd-price-display {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cvd-price-big {
  font-family: var(--cvd-font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--cvd-accent);
}
.cvd-price-orig { font-size: 1rem; color: var(--cvd-gray-400); text-decoration: line-through; }
.cvd-price-period { font-size: 0.875rem; color: var(--cvd-gray-400); }
.cvd-deal-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--cvd-gray-100); margin-bottom: 1.5rem; }
.cvd-deal-tab {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--cvd-font-heading);
  color: var(--cvd-gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--cvd-transition);
  background: none;
}
.cvd-deal-tab.active, .cvd-deal-tab:hover {
  color: var(--cvd-brand);
  border-bottom-color: var(--cvd-brand);
}
.cvd-amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.cvd-amenity-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--cvd-gray-700); }
.cvd-amenity-item svg { width: 16px; height: 16px; color: var(--cvd-brand); flex-shrink: 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.cvd-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--cvd-gray-400);
  padding: 1rem 0;
  flex-wrap: wrap;
}
.cvd-breadcrumb a { color: var(--cvd-gray-400); text-decoration: none; transition: color var(--cvd-transition); }
.cvd-breadcrumb a:hover { color: var(--cvd-brand); }
.cvd-breadcrumb-sep { color: var(--cvd-gray-300); }
.cvd-breadcrumb-current { color: var(--cvd-gray-700); font-weight: 500; }

/* ============================================================
   ALERT/NOTICE
   ============================================================ */
.cvd-alert {
  padding: 0.875rem 1.125rem;
  border-radius: var(--cvd-radius-sm);
  font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 0.625rem;
  margin-bottom: 1rem;
}
.cvd-alert-info { background: rgba(135,48,250,0.08); color: var(--cvd-brand); border-left: 3px solid var(--cvd-brand); }
.cvd-alert-success { background: rgba(16,185,129,0.08); color: #059669; border-left: 3px solid #059669; }
.cvd-alert-warning { background: rgba(249,115,22,0.08); color: var(--cvd-accent); border-left: 3px solid var(--cvd-accent); }

/* ============================================================
   DESTINATION CARD
   ============================================================ */
.cvd-dest-card {
  position: relative;
  border-radius: var(--cvd-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.cvd-dest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cvd-dest-card:hover .cvd-dest-card-img { transform: scale(1.08); }
.cvd-dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 60%);
  display: flex; align-items: flex-end;
  padding: 1.125rem;
  transition: background var(--cvd-transition);
}
.cvd-dest-card:hover .cvd-dest-card-overlay { background: linear-gradient(to top, rgba(135,48,250,0.7) 0%, rgba(0,0,0,0.1) 60%); }
.cvd-dest-card-title { color: white; font-family: var(--cvd-font-heading); font-weight: 700; font-size: 1.0625rem; }
.cvd-dest-card-count { color: rgba(255,255,255,0.75); font-size: 0.8125rem; margin-top: 2px; }

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.cvd-bg-gray { background: var(--cvd-gray-50); }
.cvd-bg-white { background: var(--cvd-white); }
.cvd-bg-brand { background: var(--cvd-brand); }
.cvd-bg-dark { background: var(--cvd-gray-800); }

/* ============================================================
   UTILITIES
   ============================================================ */
.cvd-mb-0 { margin-bottom: 0; }
.cvd-mt-2 { margin-top: 0.5rem; }
.cvd-mt-4 { margin-top: 1rem; }
.cvd-mt-6 { margin-top: 1.5rem; }
.cvd-hidden { display: none; }
@media (min-width: 1024px) { .cvd-hidden-desktop { display: none; } }
@media (max-width: 1023px) { .cvd-hidden-mobile { display: none; } }
.cvd-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Load more button */
.cvd-load-more {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

/* ============================================================
   ITINERARY GUTENBERG CONTENT BLOCKS
   ============================================================ */
.cvd-itinerary-block {
    border: 1px solid var(--cvd-gray-100);
    border-radius: var(--cvd-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #fff;
}
.cvd-itinerary-block > :first-child { margin-top: 0; }
.cvd-itinerary-block > :last-child { margin-bottom: 0; }
.cvd-itinerary-block h2,
.cvd-itinerary-block h3,
.cvd-itinerary-block h4 { margin-top: 0; }
.cvd-itinerary-highlights,
.cvd-itinerary-tips { background: #faf8ff; }
.cvd-itinerary-day {
    border-left: 4px solid var(--cvd-brand);
    box-shadow: 0 3px 14px rgba(10,10,10,.035);
}
.cvd-itinerary-day h3 { color: var(--cvd-black); }
.cvd-itinerary-day h4 {
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--cvd-gray-500);
    margin-top: 1.25rem;
}
.cvd-itinerary-day ul,
.cvd-itinerary-tips ul { padding-left: 1.25rem; }
.cvd-itinerary-day li,
.cvd-itinerary-tips li { margin-bottom: .4rem; }
.cvd-itinerary-before-you-go { background: var(--cvd-gray-50); }
.cvd-itinerary-cta {
    background: #f6efff;
    border-color: rgba(135,48,250,.2);
}
.cvd-itinerary-section-title { margin-top: 2.25rem; }
@media (max-width: 640px) {
    .cvd-itinerary-block { padding: 1.1rem; }
}

/* Generic editable Gutenberg sections for Deals, Destinations and Vehicles */
.cvd-content-block {
    border: 1px solid var(--cvd-gray-100);
    border-radius: var(--cvd-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #fff;
}
.cvd-content-block > :first-child { margin-top: 0; }
.cvd-content-block > :last-child { margin-bottom: 0; }
.cvd-deal-included,
.cvd-destination-tips,
.cvd-vehicle-highlights { background: #faf8ff; }

/* ============================================================
   CONTENT-FIRST LAUNCH (Itineraries + Blog + Coupons)
   ============================================================ */
.cvd-content-header{background:#fff;border-bottom:1px solid var(--cvd-gray-100);position:sticky;top:0;z-index:90}
.cvd-content-header .cvd-header-inner{min-height:72px}
.cvd-content-header .cvd-nav{gap:.2rem}
.cvd-content-header .cvd-nav-item{padding:.55rem .75rem;border-radius:10px}
.cvd-content-header .cvd-nav-item.active{color:var(--cvd-brand);background:rgba(135,48,250,.07)}

.cvd-editorial-hero{position:relative;min-height:610px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,#17233f 0%,#5637a9 55%,#8f7df4 100%)}
.cvd-editorial-hero-bg,.cvd-itinerary-archive-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.cvd-editorial-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,15,31,.82),rgba(52,31,112,.62),rgba(120,98,236,.48))}
.cvd-editorial-hero-inner{position:relative;z-index:2;color:#fff;padding-top:5rem;padding-bottom:5rem;text-align:center}
.cvd-editorial-hero-inner h1{color:#fff;font-size:clamp(2.5rem,5.7vw,5.2rem);max-width:1000px;margin:.5rem auto 1rem;line-height:1.02;letter-spacing:-.045em}
.cvd-editorial-hero-inner>p{font-size:1.15rem;max-width:760px;margin:0 auto 2rem;color:rgba(255,255,255,.88);line-height:1.7}
.cvd-eyebrow{display:inline-block;text-transform:uppercase;letter-spacing:.12em;font-size:.76rem;font-weight:800;color:#bcb2ff}
.cvd-itinerary-searchbar{max-width:950px;margin:0 auto;background:#fff;border-radius:18px;padding:.6rem;display:flex;align-items:center;gap:.75rem;box-shadow:0 22px 60px rgba(9,15,31,.26)}
.cvd-itinerary-searchbar svg{color:var(--cvd-gray-500);margin-left:.65rem;flex:0 0 auto}
.cvd-itinerary-searchbar input{flex:1;border:0;outline:0;font-size:1rem;min-width:0;padding:.7rem .25rem;background:transparent}
.cvd-editorial-stats,.cvd-archive-stats{display:flex;justify-content:center;gap:4rem;margin-top:2.25rem}
.cvd-editorial-stats div,.cvd-archive-stats div{display:flex;flex-direction:column;gap:.2rem}
.cvd-editorial-stats strong,.cvd-archive-stats strong{font:800 1.7rem var(--cvd-font-heading);color:#fff}
.cvd-editorial-stats span,.cvd-archive-stats span{font-size:.86rem;color:rgba(255,255,255,.76)}

.cvd-category-section{padding-top:4rem;padding-bottom:4rem}
.cvd-editorial-category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1rem}
.cvd-editorial-category-card{min-height:156px;background:#fff;border:1px solid var(--cvd-gray-200);border-radius:18px;padding:1.25rem;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;text-decoration:none;color:var(--cvd-gray-800);transition:.2s ease;box-shadow:0 4px 14px rgba(15,23,42,.035)}
.cvd-editorial-category-card:hover{transform:translateY(-4px);border-color:rgba(135,48,250,.35);box-shadow:0 15px 35px rgba(15,23,42,.09)}
.cvd-editorial-category-icon{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:rgba(135,48,250,.09);font-size:1.5rem;margin-bottom:.85rem}
.cvd-editorial-category-card strong{font-family:var(--cvd-font-heading);font-size:.94rem}
.cvd-editorial-category-card small{margin-top:.25rem;color:var(--cvd-gray-500)}
.cvd-home-section-heading{align-items:flex-end;gap:2rem}
.cvd-home-section-heading>div{max-width:760px}
.cvd-home-section-heading h2{margin:.3rem 0 .45rem}
.cvd-home-section-heading p{margin:0}
.cvd-empty-state{border:1px dashed var(--cvd-gray-300);border-radius:18px;padding:3rem;text-align:center;background:#fff}
.cvd-empty-state h3{margin-bottom:.5rem}.cvd-empty-state p{color:var(--cvd-gray-600);max-width:650px;margin:.5rem auto 1.25rem}

.cvd-editorial-blog-card h3{font-size:1.05rem;margin:.5rem 0}.cvd-editorial-blog-card h3 a{text-decoration:none;color:var(--cvd-gray-800)}
.cvd-editorial-blog-card p{font-size:.9rem;color:var(--cvd-gray-600);line-height:1.65}
.cvd-editorial-blog-image{height:210px;background:linear-gradient(135deg,#edf0f7,#ded8ff);display:grid;place-items:center;overflow:hidden;text-decoration:none}
.cvd-editorial-blog-image img{width:100%;height:100%;object-fit:cover}.cvd-editorial-blog-image span{font-size:2rem;color:var(--cvd-brand)}
.cvd-blog-card-meta{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--cvd-gray-100);padding-top:.9rem;margin-top:.9rem;font-size:.8rem;color:var(--cvd-gray-500)}
.cvd-blog-card-meta a{font-weight:700;text-decoration:none;color:var(--cvd-brand)}

.cvd-coupon-card{background:#fff;border:1px solid var(--cvd-gray-200);border-radius:18px;padding:1.5rem;box-shadow:0 8px 24px rgba(15,23,42,.05);display:flex;flex-direction:column;min-height:280px}
.cvd-coupon-partner{font-size:.75rem;font-weight:800;color:var(--cvd-brand);text-transform:uppercase;letter-spacing:.08em}
.cvd-coupon-card h2,.cvd-coupon-card h3{font-size:1.1rem;margin:.55rem 0}.cvd-coupon-card h2 a,.cvd-coupon-card h3 a{text-decoration:none;color:var(--cvd-gray-800)}
.cvd-coupon-card p{color:var(--cvd-gray-600);font-size:.9rem;line-height:1.6;flex:1}
.cvd-coupon-code{display:flex;align-items:center;justify-content:space-between;background:var(--cvd-gray-50);border:1px dashed var(--cvd-gray-300);border-radius:12px;padding:.7rem .85rem;margin:.9rem 0}
.cvd-coupon-code span{font-size:.72rem;text-transform:uppercase;color:var(--cvd-gray-500);font-weight:700}.cvd-coupon-code strong{font-family:monospace;font-size:1rem;letter-spacing:.04em;color:var(--cvd-brand)}
.cvd-coupon-link{font-size:.85rem;font-weight:800;color:var(--cvd-brand);text-decoration:none}.cvd-coupon-card small{color:var(--cvd-gray-500);margin-bottom:.65rem}

.cvd-content-cta{background:linear-gradient(135deg,#7c6df3,#a89cff);padding:5rem 0;color:#fff}
.cvd-content-cta h2{color:#fff;font-size:clamp(2rem,4vw,3.2rem);margin:.5rem 0 1rem}.cvd-content-cta p{max-width:780px;margin:0 auto 1.6rem;color:rgba(255,255,255,.88);font-size:1.05rem}
.cvd-content-cta .cvd-btn-secondary{color:#fff;border-color:rgba(255,255,255,.6);background:transparent}.cvd-content-cta .cvd-btn-secondary:hover{background:rgba(255,255,255,.1)}
.cvd-cta-buttons{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}

.cvd-itinerary-archive-hero{position:relative;min-height:455px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,#30356d,#8d7bf3)}
.cvd-itinerary-archive-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(65,48,151,.58),rgba(126,106,232,.78))}
.cvd-itinerary-archive-inner{position:relative;z-index:2;text-align:center;color:#fff;padding:4rem 0}
.cvd-itinerary-archive-inner h1{color:#fff;font-size:clamp(2.5rem,5vw,4.6rem);margin:.45rem 0 1rem}.cvd-itinerary-archive-inner>p{max-width:780px;margin:auto;color:rgba(255,255,255,.9);font-size:1.1rem}
.cvd-itinerary-filter-wrap{background:#fff;border-bottom:1px solid var(--cvd-gray-100);padding:1.7rem 0}
.cvd-itinerary-filter{display:grid;grid-template-columns:minmax(280px,1fr) 170px 170px 190px auto;gap:.8rem;align-items:end}
.cvd-itinerary-filter label>span{display:block;font-size:.76rem;font-weight:700;color:var(--cvd-gray-600);margin-bottom:.4rem}
.cvd-itinerary-filter select,.cvd-itinerary-search-field>div{height:52px;border:1px solid var(--cvd-gray-200);border-radius:12px;background:#fff}
.cvd-itinerary-filter select{width:100%;padding:0 .75rem;font:inherit;color:var(--cvd-gray-800)}
.cvd-itinerary-search-field>div{display:flex;align-items:center;padding:0 .8rem;gap:.65rem}.cvd-itinerary-search-field svg{color:var(--cvd-gray-500)}.cvd-itinerary-search-field input{border:0;outline:0;width:100%;font:inherit}
.cvd-itinerary-filter .cvd-btn{height:52px}

.cvd-simple-hero{background:linear-gradient(135deg,#17233f,#604ab7);color:#fff;padding:4.5rem 0}.cvd-simple-hero h1{color:#fff;font-size:clamp(2.4rem,5vw,4rem);margin:.45rem 0 1rem}.cvd-simple-hero p{max-width:720px;color:rgba(255,255,255,.83);font-size:1.05rem}
.cvd-coupon-search{display:flex;max-width:620px;gap:.6rem;margin-top:1.5rem}.cvd-coupon-search input{flex:1;border:0;border-radius:12px;padding:0 1rem;min-height:48px}
.cvd-coupon-single-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:3rem;padding-top:3rem;padding-bottom:5rem}.cvd-coupon-article{font-size:1rem;line-height:1.8}.cvd-coupon-redeem{position:sticky;top:95px;border:1px solid var(--cvd-gray-200);border-radius:18px;padding:1.5rem;background:#fff;display:flex;flex-direction:column;gap:.8rem}.cvd-coupon-redeem>span{font-size:.75rem;text-transform:uppercase;color:var(--cvd-gray-500);font-weight:800}.cvd-coupon-redeem>strong{font-family:monospace;font-size:1.5rem;color:var(--cvd-brand);background:var(--cvd-gray-50);padding:.8rem;border-radius:10px;text-align:center}.cvd-coupon-redeem p{font-size:.78rem;color:var(--cvd-gray-500);line-height:1.5;margin:0}

.cvd-editorial-footer{background:#081327;color:#aeb6c6;padding:4.5rem 0 1.5rem}.cvd-editorial-footer-grid{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:4rem}.cvd-editorial-footer h3{color:#8e98aa;text-transform:uppercase;letter-spacing:.06em;font-size:.78rem;margin-bottom:1.1rem}.cvd-editorial-footer a{display:block;color:#c0c7d4;text-decoration:none;margin:.75rem 0;font-size:.9rem}.cvd-editorial-footer a:hover{color:#fff}.cvd-editorial-footer-brand p{max-width:390px;line-height:1.7}.cvd-footer-logo{display:flex!important;align-items:center;gap:.7rem;margin:0 0 1.15rem!important}.cvd-footer-logo .cvd-logo-text{color:#fff}.cvd-editorial-footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:3.5rem;padding-top:1.4rem;display:flex;justify-content:space-between;font-size:.82rem;color:#7f8999}

@media (max-width:1100px){.cvd-editorial-category-grid{grid-template-columns:repeat(3,1fr)}.cvd-itinerary-filter{grid-template-columns:1fr 1fr 1fr}.cvd-itinerary-search-field{grid-column:span 2}.cvd-editorial-footer-grid{grid-template-columns:1.4fr 1fr 1fr}.cvd-editorial-footer-grid>div:last-child{display:none}}
@media (max-width:760px){.cvd-editorial-hero{min-height:560px}.cvd-editorial-hero-inner{padding:3.5rem 0}.cvd-itinerary-searchbar{flex-wrap:wrap;border-radius:16px}.cvd-itinerary-searchbar input{width:calc(100% - 45px);flex:none}.cvd-itinerary-searchbar .cvd-btn{width:100%}.cvd-editorial-stats,.cvd-archive-stats{gap:1.4rem}.cvd-editorial-stats strong,.cvd-archive-stats strong{font-size:1.35rem}.cvd-editorial-stats span,.cvd-archive-stats span{font-size:.72rem}.cvd-editorial-category-grid{grid-template-columns:repeat(2,1fr)}.cvd-home-section-heading{display:block}.cvd-itinerary-filter{grid-template-columns:1fr}.cvd-itinerary-search-field{grid-column:auto}.cvd-itinerary-filter .cvd-btn{width:100%}.cvd-coupon-single-layout{grid-template-columns:1fr}.cvd-editorial-footer-grid{grid-template-columns:1fr 1fr;gap:2rem}.cvd-editorial-footer-brand{grid-column:1/-1}.cvd-editorial-footer-bottom{display:block}.cvd-editorial-footer-bottom span{display:block;margin:.35rem 0}.cvd-coupon-search{flex-direction:column}.cvd-coupon-search .cvd-btn{width:100%}}
@media (max-width:480px){.cvd-editorial-category-grid{grid-template-columns:1fr 1fr}.cvd-editorial-category-card{min-height:135px;padding:1rem}.cvd-editorial-stats,.cvd-archive-stats{justify-content:space-between;gap:.5rem}.cvd-editorial-stats>div,.cvd-archive-stats>div{width:32%}.cvd-editorial-footer-grid{grid-template-columns:1fr}}

/* Content-first editorial refinements */
.cvd-itinerary-article-layout{max-width:920px;margin:0 auto}
.cvd-itinerary-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:var(--cvd-gray-100);border:1px solid var(--cvd-gray-100);border-radius:18px;overflow:hidden;margin:0 0 2.25rem}
.cvd-itinerary-fact{background:#fff;padding:1rem 1.1rem;min-width:0}
.cvd-itinerary-fact span{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.07em;font-weight:700;color:var(--cvd-gray-400);margin-bottom:.3rem}
.cvd-itinerary-fact strong{font-family:var(--cvd-font-heading);font-size:1rem;color:var(--cvd-gray-900)}
.cvd-editorial-page{max-width:860px;padding-top:3rem;padding-bottom:5rem;line-height:1.8;color:var(--cvd-gray-700)}
.cvd-editorial-page h1,.cvd-editorial-page h2,.cvd-editorial-page h3{color:var(--cvd-gray-900)}
.cvd-editorial-page h2{margin-top:2.5rem;margin-bottom:.8rem;font-size:1.65rem}
.cvd-editorial-page h3{margin-top:1.8rem;margin-bottom:.65rem;font-size:1.2rem}
.cvd-editorial-page p,.cvd-editorial-page ul,.cvd-editorial-page ol{margin-bottom:1rem}
.cvd-about-hero,.cvd-legal-header,.cvd-simple-page-hero{background:linear-gradient(180deg,#f8f7ff 0%,#fff 100%);border-bottom:1px solid var(--cvd-gray-100)}
.cvd-about-hero-inner,.cvd-legal-header .cvd-container,.cvd-simple-page-hero .cvd-container{max-width:1000px;padding-top:5rem;padding-bottom:4rem}
.cvd-about-hero h1,.cvd-legal-header h1,.cvd-simple-page-hero h1{font-size:clamp(2.4rem,6vw,4.7rem);letter-spacing:-.04em;margin:.5rem 0 1rem;max-width:850px}
.cvd-about-hero p{font-size:1.2rem;line-height:1.65;max-width:720px;color:var(--cvd-gray-600)}
.cvd-kicker{display:inline-block;text-transform:uppercase;letter-spacing:.13em;font-size:.75rem;font-weight:800;color:var(--cvd-brand)}
.cvd-about-content{font-size:1.04rem}
.cvd-about-content .cvd-about-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin:2.25rem 0}
.cvd-about-content .cvd-about-card{padding:1.5rem;border:1px solid var(--cvd-gray-100);border-radius:18px;background:#fff}
.cvd-about-content .cvd-about-card h3{margin-top:0}
.cvd-legal-updated{color:var(--cvd-gray-500);margin:0}
.cvd-legal-content{font-size:1rem}
.cvd-legal-content h2{padding-top:.25rem}
.cvd-coupon-archive .cvd-coupon-card,.cvd-coupon-redeem{box-shadow:none!important}
.cvd-coupon-redeem{border:1px solid var(--cvd-gray-100)!important}
@media(max-width:760px){.cvd-itinerary-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.cvd-about-content .cvd-about-grid{grid-template-columns:1fr}.cvd-about-hero-inner,.cvd-legal-header .cvd-container,.cvd-simple-page-hero .cvd-container{padding-top:3.5rem;padding-bottom:3rem}}

/* Reviews + enhanced destinations */
.cvd-review-hero,.cvd-destination-hero{padding:72px 0;background:#0b2f27;color:#fff;background-size:cover;background-position:center}.cvd-review-hero h1,.cvd-destination-hero h1{color:#fff;font-size:clamp(2.25rem,5vw,4rem);max-width:900px;margin:.35rem 0 .75rem}.cvd-review-hero p,.cvd-destination-hero p{font-size:1.1rem;max-width:720px;color:rgba(255,255,255,.88)}.cvd-kicker{display:block;text-transform:uppercase;letter-spacing:.11em;font-size:.75rem;font-weight:800;color:var(--cvd-brand)}.cvd-review-hero .cvd-kicker,.cvd-destination-hero .cvd-kicker{color:#fff}.cvd-review-directory,.cvd-company-page,.cvd-destination-page{padding-top:38px;padding-bottom:70px}.cvd-review-search{max-width:760px;margin:0 auto 32px}.cvd-review-search>div{display:flex;gap:10px}.cvd-review-search input{flex:1;min-height:48px;border:1px solid #d6d9dc;border-radius:10px;padding:0 14px}.cvd-review-company-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.cvd-company-card{background:#fff;border:1px solid #e6e8ea;border-radius:16px;overflow:hidden;box-shadow:0 8px 28px rgba(10,25,20,.05)}.cvd-company-card-media{height:160px;display:flex;align-items:center;justify-content:center;background:#f6f8f7}.cvd-company-card-media img{width:100%;height:100%;object-fit:contain;padding:24px}.cvd-company-monogram{width:74px;height:74px;border-radius:18px;background:#e8f4ef;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:2rem;color:var(--cvd-brand)}.cvd-company-card-body{padding:20px}.cvd-company-card h2{font-size:1.3rem;margin:.25rem 0 .65rem}.cvd-company-card h2 a,.cvd-simple-card a{text-decoration:none;color:inherit}.cvd-company-country{font-size:.78rem;font-weight:700;color:#66736e}.cvd-company-rating{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:.9rem}.cvd-stars{letter-spacing:1px;color:#efb429;white-space:nowrap}.cvd-stars .is-empty{color:#d5d9d7}.cvd-text-link{font-weight:700;color:var(--cvd-brand);text-decoration:none}.cvd-company-profile-head{display:flex;gap:24px;align-items:center;margin:20px 0 28px}.cvd-company-logo{width:120px;height:120px;border:1px solid #e6e8ea;border-radius:20px;display:flex;align-items:center;justify-content:center;background:#fff;overflow:hidden}.cvd-company-logo img{width:100%;height:100%;object-fit:cover;object-position:center;padding:0;margin:0;display:block}.cvd-company-profile-head h1{font-size:clamp(2rem,4vw,3.2rem);margin:.2rem 0 .5rem}.cvd-company-layout,.cvd-destination-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:34px;align-items:start}.cvd-content-card,.cvd-rating-summary,.cvd-review-form-wrap{background:#fff;border:1px solid #e6e8ea;border-radius:16px;padding:26px;margin-bottom:28px}.cvd-rating-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.cvd-rating-grid>div,.cvd-review-insights>div{display:flex;justify-content:space-between;gap:16px;background:#f7f9f8;padding:12px 14px;border-radius:10px}.cvd-review-insights{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px}.cvd-review-insights>div{display:block;text-align:center}.cvd-review-insights strong{display:block;font-size:1.5rem}.cvd-review-insights span{font-size:.82rem;color:#69736f}.cvd-section-heading{display:flex;justify-content:space-between;align-items:end;gap:16px;margin:32px 0 14px}.cvd-review-card{border-top:1px solid #e6e8ea;padding:22px 0}.cvd-review-card-head{display:flex;justify-content:space-between;gap:20px}.cvd-review-card-head>div:first-child span{display:block;color:#6d7672;font-size:.85rem;margin-top:2px}.cvd-review-card h3{font-size:1.15rem;margin:.75rem 0 .45rem}.cvd-review-meta{font-size:.84rem;color:#65716c}.cvd-company-response{margin-top:14px;background:#f3f8f6;border-left:3px solid var(--cvd-brand);padding:14px 16px;border-radius:8px}.cvd-company-facts,.cvd-destination-facts{position:sticky;top:96px;border:1px solid #e6e8ea;border-radius:16px;padding:22px;background:#fff}.cvd-company-facts>div,.cvd-destination-facts>div{padding:11px 0;border-bottom:1px solid #edf0ef}.cvd-company-facts span,.cvd-destination-facts span{display:block;color:#6a746f;font-size:.8rem}.cvd-company-facts strong,.cvd-destination-facts strong{display:block;margin-top:2px}.cvd-company-facts .cvd-btn,.cvd-destination-facts .cvd-btn{width:100%;justify-content:center;margin-top:16px}.cvd-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cvd-review-form label,.cvd-review-form legend{font-weight:700;font-size:.9rem}.cvd-review-form input,.cvd-review-form select,.cvd-review-form textarea{width:100%;margin-top:6px;border:1px solid #cfd5d2;border-radius:9px;padding:11px;background:#fff}.cvd-review-form small{display:block;color:#6d7672;font-weight:400;margin-top:4px}.cvd-rating-inputs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:18px 0}.cvd-rating-inputs fieldset{border:1px solid #e1e5e3;border-radius:10px;padding:12px}.cvd-star-select{display:flex;flex-direction:row-reverse;justify-content:flex-end;margin-top:7px}.cvd-star-select input{position:absolute;opacity:0;pointer-events:none}.cvd-star-select label{font-size:1.7rem;color:#ccd2cf;cursor:pointer;margin-right:3px}.cvd-star-select label:hover,.cvd-star-select label:hover~label,.cvd-star-select input:checked~label{color:#efb429}.cvd-notice-success,.cvd-notice-error{padding:12px 14px;border-radius:9px;margin:12px 0}.cvd-notice-success{background:#eaf7f0;color:#145f3d}.cvd-notice-error{background:#fff0f0;color:#922}.cvd-destination-page section{margin:34px 0}.cvd-highlight-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.cvd-highlight-item{padding:14px 16px;border:1px solid #e5e8e6;border-radius:10px;background:#fff}.cvd-simple-card{border:1px solid #e6e8ea;border-radius:14px;overflow:hidden;background:#fff}.cvd-simple-card img{width:100%;height:160px;object-fit:cover}.cvd-simple-card h3,.cvd-simple-card p{margin:14px 16px}.cvd-destination-faq details{border-top:1px solid #e3e7e5;padding:14px 0}.cvd-destination-faq summary{font-weight:750;cursor:pointer}.cvd-destination-faq details div{padding-top:8px;color:#5e6964}
@media(max-width:980px){.cvd-review-company-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cvd-company-layout,.cvd-destination-layout{grid-template-columns:1fr}.cvd-company-facts,.cvd-destination-facts{position:static}.cvd-review-insights{grid-template-columns:1fr}}
@media(max-width:640px){.cvd-review-hero,.cvd-destination-hero{padding:48px 0}.cvd-review-hero h1,.cvd-destination-hero h1{font-size:2.15rem}.cvd-review-company-grid,.cvd-form-grid,.cvd-rating-inputs,.cvd-rating-grid,.cvd-highlight-grid{grid-template-columns:1fr}.cvd-review-search>div{display:grid}.cvd-review-search .cvd-btn{width:100%;justify-content:center}.cvd-company-profile-head{align-items:flex-start}.cvd-company-logo{width:84px;height:84px;flex:0 0 84px}.cvd-company-profile-head h1{font-size:1.85rem}.cvd-section-heading,.cvd-review-card-head{align-items:flex-start;flex-direction:column}.cvd-section-heading .cvd-btn{width:100%;justify-content:center}.cvd-content-card,.cvd-rating-summary,.cvd-review-form-wrap{padding:18px}.cvd-review-directory,.cvd-company-page,.cvd-destination-page{padding-top:24px}}


/* ============================================================
   HOMEPAGE — CAMPERVAN COMPANY REVIEWS
   Charcoal + purple, full-bleed imagery
   ============================================================ */

.home .cvd-platform-company-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 12px;
}

.home .cvd-platform-company-slider::-webkit-scrollbar {
    display: none;
}

.home .cvd-platform-company-card {
    min-width: 0;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e3e4e7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: transform var(--cvd-transition), box-shadow var(--cvd-transition), border-color var(--cvd-transition);
}

.home .cvd-platform-company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(32,33,38,.07);
    border-color: #d7d3e8;
}

/* Full-width company media */
.home .cvd-platform-company-brand {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f6f6f7 !important;
    overflow: hidden !important;
    color: inherit;
}

.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.home .cvd-platform-company-brand .cvd-company-monogram {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    background: var(--cvd-purple-soft) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--cvd-brand);
}

.home .cvd-platform-company-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

/* Country badge should only hug its text */
.home .cvd-platform-company-body .cvd-company-country {
    display: inline-flex !important;
    align-self: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    padding: 4px 9px !important;
    margin: 0 0 10px !important;
    border-radius: 999px !important;
    background: var(--cvd-purple-soft) !important;
    color: var(--cvd-brand) !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.home .cvd-platform-company-body h3 {
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 9px;
}

.home .cvd-platform-company-body h3 a {
    color: var(--cvd-gray-800);
    text-decoration: none;
}

.home .cvd-platform-company-body h3 a:hover {
    color: var(--cvd-brand);
}

.home .cvd-platform-company-score {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    min-height: 0;
    margin-bottom: 11px;
    font-size: .88rem;
}

.home .cvd-platform-company-score .cvd-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #efb429;
}

.home .cvd-platform-company-score strong {
    color: var(--cvd-gray-800);
    font-size: .95rem;
}

.home .cvd-platform-company-score small {
    color: var(--cvd-text-muted);
    font-size: .82rem;
}

.home .cvd-platform-company-body > p {
    margin: 0 0 16px;
    color: var(--cvd-text-soft);
    font-size: .9rem;
    line-height: 1.55;
}

.home .cvd-platform-company-body .cvd-platform-text-link {
    margin-top: auto;
    color: var(--cvd-brand);
    font-size: .88rem;
    font-weight: 700;
}

.home .cvd-platform-slider-wrap {
    position: relative;
}

.home .cvd-platform-company-slider + .cvd-platform-slider-next {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e3e4e7;
    box-shadow: 0 6px 20px rgba(32,33,38,.10);
    color: var(--cvd-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 3;
    transition: transform var(--cvd-transition), box-shadow var(--cvd-transition), color var(--cvd-transition);
}

.home .cvd-platform-company-slider + .cvd-platform-slider-next:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 24px rgba(32,33,38,.14);
    color: var(--cvd-brand);
}

.home .cvd-platform-heading-row > div > p {
    margin: 6px 0 0;
    color: var(--cvd-text-soft);
    font-size: .95rem;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .home .cvd-platform-company-slider {
        grid-auto-columns: minmax(250px, 48%);
    }

    .home .cvd-platform-company-slider + .cvd-platform-slider-next {
        right: -6px;
    }
}

@media (max-width: 640px) {
    .home .cvd-platform-company-slider {
        grid-auto-columns: 84%;
        gap: 14px;
        padding-bottom: 10px;
    }

    .home .cvd-platform-company-brand {
        height: 155px !important;
        min-height: 155px !important;
    }

    .home .cvd-platform-company-body {
        padding: 16px;
    }

    .home .cvd-platform-company-slider + .cvd-platform-slider-next {
        display: none;
    }

    .home .cvd-platform-heading-row {
        align-items: flex-start;
    }
}


/* =========================================================
   HOMEPAGE PLANNER LAYOUT — KEEP TITLE ON ONE LINE
   ========================================================= */

.home .cvd-platform-planner {
    display: grid !important;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 2.4fr) !important;
    gap: 34px !important;
    align-items: end !important;
}

.home .cvd-platform-planner-copy {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    min-width: 0;
}

.home .cvd-platform-planner-copy > div {
    min-width: 0;
}

.home .cvd-platform-planner-copy h2 {
    font-size: 1.5rem !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    margin: 0 0 8px !important;
}

.home .cvd-platform-planner-copy p {
    max-width: 460px !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.home .cvd-platform-planner-form {
    min-width: 0;
    gap: 12px !important;
}

.home .cvd-platform-planner-form label > span {
    font-size: 15px !important;
}

.home .cvd-platform-planner-form input,
.home .cvd-platform-planner-form select {
    font-size: 16px !important;
}

.home .cvd-platform-planner-form .cvd-btn {
    font-size: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Tablet — allow title to wrap only when necessary */
@media (max-width: 1100px) {
    .home .cvd-platform-planner {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .home .cvd-platform-planner-copy h2 {
        white-space: normal !important;
    }

    .home .cvd-platform-planner-copy p {
        max-width: 700px !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .home .cvd-platform-planner-copy {
        gap: 12px !important;
    }

    .home .cvd-platform-planner-copy h2 {
        font-size: 1.6rem !important;
    }
}


/* =========================================================
   HOMEPAGE HERO — COMPACT LAYOUT
   ========================================================= */

.home .cvd-platform-hero-grid {
    align-items: center !important;
}

.home .cvd-platform-hero-copy {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.home .cvd-platform-kicker {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.home .cvd-platform-hero-copy h1 {
    font-size: 2.6rem !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
    max-width: 620px !important;
}

.home .cvd-platform-hero-copy > p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    max-width: 590px !important;
}

.home .cvd-platform-search {
    margin-bottom: 14px !important;
}

.home .cvd-platform-popular-links {
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/* Single desktop hero height rule — removes earlier 480/380 conflict */
.home .cvd-platform-hero-media {
    height: 400px !important;
    min-height: 400px !important;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .home .cvd-platform-hero-copy h1 {
        font-size: 1.5rem !important;
        line-height: 1.1 !important;
    }

    .home .cvd-platform-hero-copy > p {
        font-size: 0.95rem !important;
    }

    .home .cvd-platform-hero-media {
        height: 260px !important;
        min-height: 260px !important;
    }
}

/* ============================================================
   CAMPERVANDEAL — CHARCOAL + PURPLE REFINEMENT
   Purple = action/accent. Charcoal = content/title.
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.cvd-platform-company-body h3 a,
.cvd-company-card h2 a,
.cvd-company-page h1,
.cvd-company-page h2,
.cvd-company-page h3 {
    color: var(--cvd-gray-800);
}

.cvd-kicker,
.cvd-platform-kicker {
    color: var(--cvd-text-muted);
}

.cvd-text-link,
.cvd-platform-text-link {
    color: var(--cvd-brand);
}

.cvd-text-link:hover,
.cvd-platform-text-link:hover {
    color: var(--cvd-brand-dark);
}

.cvd-company-rating strong,
.cvd-rating-grid strong,
.cvd-review-insights strong,
.cvd-company-facts strong {
    color: var(--cvd-gray-800);
}

.cvd-company-rating span,
.cvd-review-meta,
.cvd-company-facts span {
    color: var(--cvd-text-muted);
}

/* Review archive: titles neutral, country/action accents purple */
.cvd-company-card h2,
.cvd-company-card h2 a {
    color: var(--cvd-gray-800);
}

.cvd-company-card h2 a:hover,
.cvd-company-card .cvd-text-link {
    color: var(--cvd-brand);
}

.cvd-company-card .cvd-company-country {
    color: var(--cvd-brand);
}

/* Single company page logo image can fill its frame */
.cvd-company-logo {
    overflow: hidden;
}

.cvd-company-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Itinerary: neutral values/headings, purple interaction only */
.single-cvd_itinerary .cvd-itinerary-fact strong,
.single-cvd_itinerary h1,
.single-cvd_itinerary h2,
.single-cvd_itinerary h3 {
    color: var(--cvd-gray-800) !important;
}

.single-cvd_itinerary .cvd-itinerary-fact span {
    color: var(--cvd-text-muted) !important;
}

.single-cvd_itinerary details summary > div {
    background: var(--cvd-brand) !important;
    color: #fff !important;
}

/* Forms: neutral normally, purple on focus */
input, textarea, select {
    color: var(--cvd-gray-800);
    background: #fff;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--cvd-brand);
    box-shadow: 0 0 0 3px rgba(101,72,232,.10);
}


/* ========================================================================
   MERGED FROM WORDPRESS ADDITIONAL CSS
   ======================================================================== */
/* =========================================================
   PLANNER LAYOUT FIX — KEEP TITLE ON ONE LINE
   ========================================================= */

.cvd-platform-planner {
    display: grid !important;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 2.4fr) !important;
    gap: 34px !important;
    align-items: end !important;
}

.cvd-platform-planner-copy {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    min-width: 0;
}

.cvd-platform-planner-copy > div {
    min-width: 0;
}

.cvd-platform-planner-copy h2 {
    font-size: 1rem !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    margin: 0 0 8px !important;
}

.cvd-platform-planner-copy p {
    max-width: 460px !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.cvd-platform-planner-form {
    min-width: 0;
}

/* Slightly tighten the form so it fits comfortably */
.cvd-platform-planner-form {
    gap: 12px !important;
}

.cvd-platform-planner-form label > span {
    font-size: 15px !important;
}

.cvd-platform-planner-form input,
.cvd-platform-planner-form select {
    font-size: 16px !important;
}

.cvd-platform-planner-form .cvd-btn {
    font-size: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* Tablet — allow title to wrap only when genuinely necessary */
@media (max-width: 1100px) {

    .cvd-platform-planner {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .cvd-platform-planner-copy h2 {
        white-space: normal !important;
    }

    .cvd-platform-planner-copy p {
        max-width: 700px !important;
    }

}


/* Mobile */
@media (max-width: 600px) {

    .cvd-platform-planner-copy {
        gap: 12px !important;
    }

    .cvd-platform-planner-copy h2 {
        font-size: 1.6rem !important;
    }

}


/* ================================
   HOMEPAGE HERO — COMPACT LAYOUT
   ================================ */

.home .cvd-platform-hero-grid {
    align-items: center !important;
}

.home .cvd-platform-hero-copy {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.home .cvd-platform-kicker {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.home .cvd-platform-hero-copy h1 {
    font-size: 2.2rem !important;
    line-height: 1.35 !important;
    margin-bottom: 15px !important;
    max-width: 420px !important;
}

.home .cvd-platform-hero-copy > p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    max-width: 590px !important;
}

.home .cvd-platform-search {
    margin-bottom: 14px !important;
}

.home .cvd-platform-popular-links {
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/* Hero image — single source of truth (duplicate block removed) */
.home .cvd-platform-hero-media {
    display: block !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    background-size: cover !important;
    background-position: right center !important; /* Anchors the image to the right edge */
    border-radius: 20px !important; /* Forces all four corners to round evenly */
}

@media (max-width: 768px) {

    .home .cvd-platform-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .home .cvd-platform-hero-copy h1 {
        font-size: 1.5rem !important;
        line-height: 1.1 !important;
    }

    .home .cvd-platform-hero-copy > p {
        font-size: 0.95rem !important;
    }

    .home .cvd-platform-hero-media {
        display: block !important;
        width: 100% !important;
        height: 260px !important;
        min-height: 260px !important;
        order: -1 !important;
    }

}


/* =========================================================
   HOMEPAGE — CAMPERVAN RENTAL REVIEWS
   ========================================================= */

.home .cvd-platform-company-slider {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(235px, 1fr) !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 10px !important;
}

.home .cvd-platform-company-slider::-webkit-scrollbar {
    display: none;
}

.home .cvd-platform-company-card {
    min-height: 300px !important;
    height: auto !important;
    background: #fff !important;
    border: 1px solid #e3e7e5 !important;
    border-radius: 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    scroll-snap-align: start;
}

.home .cvd-platform-company-card:hover {
    transform: translateY(-2px);
    border-color: #cfd6d2 !important;
    box-shadow: 0 8px 24px rgba(10, 25, 20, 0.06) !important;
}


/* Logo / monogram area */
.home .cvd-platform-company-brand {
    height: 120px !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f6f8f7 !important;
    padding: 18px !important;
    overflow: hidden !important;
}

.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-height: 80px !important;
    object-fit: contain !important;
    padding: 0 !important;
}

.home .cvd-platform-company-brand .cvd-company-monogram {
    width: 68px !important;
    height: 68px !important;
    border-radius: 18px !important;
    background: #e8f4ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--cvd-brand) !important;
}


/* Card body */
.home .cvd-platform-company-body {
    padding: 16px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}


/* Country */
.home .cvd-platform-company-body .cvd-company-country {
    display: block !important;
    margin: 0 0 5px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #66736e !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}


/* Company name */
.home .cvd-platform-company-body h3 {
    margin: 0 0 8px !important;
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
}

.home .cvd-platform-company-body h3 a {
    color: #1f2937 !important;
    text-decoration: none !important;
}

.home .cvd-platform-company-body h3 a:hover {
    color: var(--cvd-brand) !important;
}


/* Rating row */
.home .cvd-platform-company-score {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0 0 10px !important;
    min-height: 20px !important;
    font-size: 13px !important;
}

.home .cvd-platform-company-score .cvd-stars {
    display: inline-flex !important;
    gap: 2px !important;
    color: #efb429 !important;
}

.home .cvd-platform-company-score strong {
    font-size: 14px !important;
    color: #1f2937 !important;
}

.home .cvd-platform-company-score small {
    font-size: 13px !important;
    color: #7b817f !important;
}


/* Excerpt */
.home .cvd-platform-company-body > p {
    margin: 0 0 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #5f6965 !important;
}


/* CTA */
.home .cvd-platform-company-body .cvd-platform-text-link {
    margin-top: auto !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}


/* Heading area */
.home .cvd-platform-heading-row {
    align-items: flex-end !important;
}

.home .cvd-platform-heading-row > div > h2 {
    margin-bottom: 6px !important;
}

.home .cvd-platform-heading-row > div > p {
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    color: #667085 !important;
}


/* Slider arrow */
.home .cvd-platform-slider-wrap {
    position: relative !important;
}

.home .cvd-platform-company-slider + .cvd-platform-slider-next {
    position: absolute !important;
    top: 50% !important;
    right: -20px !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e1e5e3 !important;
    box-shadow: 0 5px 18px rgba(10,25,20,.10) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    z-index: 5 !important;
}


/* Tablet */
@media (max-width: 980px) {

    .home .cvd-platform-company-slider {
        grid-auto-columns: minmax(240px, 46%) !important;
    }

}


/* Mobile */
@media (max-width: 640px) {

    .home .cvd-platform-company-slider {
        grid-auto-columns: 84% !important;
        gap: 14px !important;
    }

    .home .cvd-platform-company-card {
        min-height: 285px !important;
    }

    .home .cvd-platform-company-brand {
        height: 110px !important;
        min-height: 110px !important;
    }

    .home .cvd-platform-company-slider + .cvd-platform-slider-next {
        display: none !important;
    }

    .home .cvd-platform-heading-row {
        align-items: flex-start !important;
    }

}

.cvd-itinerary-article-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:2.5rem;
  align-items:start;
}
.cvd-itinerary-sidebar{ position:sticky; top:calc(var(--cvd-header-h) + 1rem); }
.cvd-itinerary-author-box{
  border:1px solid var(--cvd-gray-100);
  border-radius:var(--cvd-radius);
  padding:1.25rem;
  background:#fff;
  box-shadow:var(--cvd-shadow);
  margin-bottom:1.25rem;
}
.cvd-itinerary-author-row{ display:flex; align-items:center; gap:.75rem; margin-bottom:.85rem; }
.cvd-itinerary-author-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.cvd-itinerary-author-name{ font-family:var(--cvd-font-heading); font-weight:700; font-size:.95rem; color:var(--cvd-gray-800); }
.cvd-itinerary-author-role{ font-size:.8rem; color:var(--cvd-gray-500); }
.cvd-itinerary-updated{
  font-size:.82rem; color:var(--cvd-gray-500);
  border-top:1px solid var(--cvd-gray-100);
  padding-top:.75rem;
}
.cvd-itinerary-updated strong{ color:var(--cvd-gray-800); }

@media (max-width:1023px){
  .cvd-itinerary-article-layout{ grid-template-columns:1fr; max-width:920px; }
}
/* Itinerary sidebar (author + last updated) */
.cvd-itinerary-article-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:2.5rem;
  align-items:start;
}
.cvd-itinerary-sidebar{
  position:sticky;
  top:calc(var(--cvd-header-h) + 1rem);
}
.cvd-itinerary-author-box{
  border:1px solid var(--cvd-gray-100);
  border-radius:var(--cvd-radius);
  padding:1.25rem;
  background:#fff;
  box-shadow:var(--cvd-shadow);
  margin-bottom:1.25rem;
}
.cvd-itinerary-author-row{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.85rem;
}
.cvd-itinerary-author-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.cvd-itinerary-author-name{
  font-family:var(--cvd-font-heading);
  font-weight:700;
  font-size:.95rem;
  color:var(--cvd-gray-800);
}
.cvd-itinerary-author-role{
  font-size:.8rem;
  color:var(--cvd-gray-500);
}
.cvd-itinerary-updated{
  font-size:.82rem;
  color:var(--cvd-gray-500);
  border-top:1px solid var(--cvd-gray-100);
  padding-top:.75rem;
}
.cvd-itinerary-updated strong{
  color:var(--cvd-gray-800);
}

@media (max-width:1023px){
  .cvd-itinerary-article-layout{
    grid-template-columns:1fr;
    max-width:920px;
  }
}

/* =======================================================
   Campervan Deal - Destination Page Layout & Typography 
========================================================== */

/* --- 1. Typography Adjustments (Fixing oversized text) --- */

.cvd-destination-hero h1 {
    font-size: 1.5rem; 
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.cvd-destination-page h1 {
    font-size: 1.5rem !important;
    line-height: 1.2;
}

/* Fix heading alignments and sizing */
.cvd-destination-page h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 0.5rem; /* Tightens gap between kicker and heading */
    margin-bottom: 1.25rem;
    text-align: left; /* Ensures all H2s are left-aligned */
}

.cvd-destination-page h3 {
    font-size: 1rem;
    line-height: 0.3;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Standardize body text size for readability */
.cvd-destination-page p,
.cvd-destination-page li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* --- 2. Spacing & Gaps (Sections & Elements) --- */

/* Ensures consistent vertical rhythm between sections */
.cvd-destination-layout main section {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

/* Kicker styling (e.g., "Why go", "Highlights") */
.cvd-kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555; 
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* --- 3. Grid Alignments --- */

/* Highlights grid layout */
.cvd-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.cvd-highlight-item {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border-left: 3px solid #2c3e50; /* Adds a nice visual anchor */
}

/* Itineraries and Guides 3-column grid */
.cvd-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* --- 4. Sidebar / Practical Info Box --- */

.cvd-destination-facts {
    background: #f4f6f8;
    padding: 2rem;
    border-radius: 8px;
}

.cvd-destination-facts h2 {
    margin-top: 0;
    font-size: 1.0rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Formats the Country/Region/Climate data */
.cvd-destination-facts div {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.cvd-destination-facts div span {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.cvd-destination-facts div strong {
    font-size: 1.1rem;
    color: #222;
}

/* Make the explore button span the full width of the sidebar */
.cvd-destination-facts .cvd-btn {
    display: block;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* --- 5. Main Layout Structure (Desktop vs Mobile) --- */

@media (min-width: 992px) {
    .cvd-destination-layout {
        display: grid;
        grid-template-columns: 2fr 1fr; /* 2/3 width for main, 1/3 for sidebar */
        gap: 4rem; /* Gap between main content and sidebar */
        align-items: start;
    }
}
/* ============================================================
   COMPANY REVIEW PAGE LAYOUT FIXES
   ============================================================ */

/* Main layout container (Side-by-side columns) */
.cvd-company-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Make main content take up 2/3 of the space */
.cvd-company-layout main {
    flex: 1 1 65%;
    min-width: 320px;
}

/* Make sidebar take up 1/3 of the space */
.cvd-company-layout aside {
    flex: 1 1 30%;
    min-width: 280px;
    position: sticky;
    top: calc(var(--cvd-header-h) + 1.5rem); /* Keeps sidebar visible while scrolling */
}

/* Header styling */
.cvd-company-profile-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--cvd-gray-100);
    margin-bottom: 1rem;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .cvd-company-layout {
        flex-direction: column;
    }
    
    .cvd-company-profile-head {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* ============================================================
   REVIEWS & FILTERS LAYOUT FIXES
   ============================================================ */

/* 1. Reduce overall heading sizes specifically for the company page */
.cvd-company-page h1 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.cvd-company-page h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin-bottom: 0.5rem;
}

/* 2. Style the Section Heading to sit next to the button */
.cvd-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cvd-gray-200); /* Adds visual separation */
}

/* 3. Transform the Filter Form into a horizontal bar */
.cvd-review-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: var(--cvd-gray-50); /* Adds depth to reduce flatness */
    padding: 1.25rem;
    border-radius: var(--cvd-radius-sm);
    border: 1px solid var(--cvd-gray-200);
    margin-bottom: 2.5rem; /* Creates breathing room below the filters */
}

/* Make inputs sit side-by-side but grow to fill space */
.cvd-review-filters select,
.cvd-review-filters input:not([type="checkbox"]) {
    flex: 1 1 140px; 
    margin-bottom: 0;
    min-width: 140px;
    height: 42px; /* Uniform height */
}

/* Properly align the checkbox */
.cvd-review-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}

.cvd-review-filters input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--cvd-brand);
}

/* Lock the button size so it doesn't stretch */
.cvd-review-filters button {
    flex: 0 0 auto;
    height: 42px;
}

/* 4. Improve the "Write a Review" Container */
.cvd-review-form-wrap {
    margin-top: 4rem; /* Big gap to separate reading reviews from writing one */
    padding: 2.5rem;
    background: var(--cvd-white);
    border-radius: var(--cvd-radius-lg);
    box-shadow: var(--cvd-shadow); /* Elevates the form off the background */
    border: 1px solid var(--cvd-gray-100);
}

.cvd-review-form-wrap .cvd-kicker {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvd-brand);
    margin-bottom: 0.5rem;
}
/* ==========================================================================
   1. Header Alignment Fixes
   ========================================================================== */

/* Aligns the "View all" link with the main heading on the same baseline */
.cvd-platform-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Keeps text aligned at the bottom */
    margin-bottom: 2rem;
    gap: 1rem;
}

/* Ensures the heading doesn't stretch weirdly and keeps line height tight */
.cvd-platform-heading-row h2 {
    margin: 0;
    line-height: 1.2;
}

/* ==========================================================================
   2. Column Layout (Grid)
   ========================================================================== */

/* Creates an equal two-column layout for desktop */
.cvd-platform-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .cvd-platform-editorial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* ==========================================================================
   3. Standardize Article Layout (Fixing the Top Card Inconsistency)
   ========================================================================== */

/* Give the lists a consistent vertical gap */
.cvd-platform-guide-list,
.cvd-platform-deal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 
 * Force all cards (including the 'is-featured' one) to behave exactly 
 * the same: no white background, no padding, horizontal flex layout. 
 */
.cvd-platform-guide-card,
.cvd-platform-deal-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: transparent !important; /* Overrides the white box on top card */
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Lock the thumbnail sizes so the text columns align perfectly */
.cvd-platform-guide-image,
.cvd-platform-deal-image {
    flex: 0 0 120px; /* Prevents image from shrinking or growing */
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0; /* Fallback color */
    display: block;
}

.cvd-platform-guide-image img,
.cvd-platform-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without stretching */
}

/* ==========================================================================
   4. Typography and Contrast Fixes (Solving the Micro-text)
   ========================================================================== */

/* Title sizing */
.cvd-platform-guide-card h3,
.cvd-platform-deal-card h3 {
    margin: 0 0 0.35rem 0;
    font-size: 1.125rem;
    line-height: 1.3;
    color: #111827; /* Very dark grey for strong contrast */
}

.cvd-platform-guide-card h3 a,
.cvd-platform-deal-card h3 a {
    text-decoration: none;
    color: inherit;
}

/* Increase description size and darken color */
.cvd-platform-guide-card p,
.cvd-platform-deal-card p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem; /* Bumped up for readability */
    line-height: 1.4;
    color: #4b5563; /* Darker charcoal grey */
}

/* Increase date size and weight */
.cvd-platform-guide-card small,
.cvd-platform-deal-card small {
    display: block;
    font-size: 0.875rem; 
    color: #6b7280; 
    font-weight: 500; /* slightly heavier to ensure legibility when small */
}
/* =========================================================
   Single Post - Main Title (H1)
   ========================================================= */
.type-post h1[itemprop="headline"] {
    font-size: 34px !important;
    line-height: 1.2;
    font-weight: 700;
}

/* Optional: Scale down slightly for mobile screens */
@media (max-width: 768px) {
    .type-post h1[itemprop="headline"] {
        font-size: 28px !important;
    }
}

/* =========================================================
   Single Post - Body Content Styles (the_content)
   ========================================================= */
/* Headings inside the article body */
.type-post [itemprop="articleBody"] h2 {
    font-size: 26px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.type-post [itemprop="articleBody"] h3 {
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs and spacing */
.type-post [itemprop="articleBody"] p {
    margin-bottom: 1.5rem;
}

/* Lists */
.type-post [itemprop="articleBody"] ul, 
.type-post [itemprop="articleBody"] ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.type-post [itemprop="articleBody"] li {
    margin-bottom: 0.5rem;
}

/* Images inside the content */
.type-post [itemprop="articleBody"] img {
    max-width: 100%;
    height: auto;
    border-radius: var(--cvd-radius-lg, 8px);
    margin: 1.5rem 0;
    display: block;
}

/* Blockquotes */
.type-post [itemprop="articleBody"] blockquote {
    border-left: 4px solid var(--cvd-brand, #2271b1);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: var(--cvd-gray-100, #f6f7f7);
}

/* =========================================================
   Post Meta Data (Categories & Dates)
   ========================================================= */
.cvd-blog-cat {
    background-color: var(--cvd-brand, #2271b1);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cvd-blog-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--cvd-gray-500, #646970);
    font-size: 0.875rem;
}
/* =========================================================
   Post Content CTA Section
   ========================================================= */

/* Main wrapper */
.cvd-content-cta {
    background-color: var(--cvd-gray-100, #f6f7f7); /* Light gray background */
    padding: 3rem 2rem;
    border-radius: var(--cvd-radius-lg, 12px); /* Rounded corners */
    border: 1px solid var(--cvd-gray-200, #dcdcde);
}

/* Centering utility */
.cvd-content-cta .text-center {
    text-align: center;
}

/* Eyebrow text (Small label above heading) */
.cvd-content-cta .cvd-eyebrow {
    display: block;
    color: var(--cvd-brand, #2271b1); /* Brand color */
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* Heading */
.cvd-content-cta h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1d2327;
}

/* Description paragraph */
.cvd-content-cta p {
    font-size: 1.0625rem;
    color: var(--cvd-gray-700, #50575e);
    max-width: 600px;
    margin: 0 auto 2rem auto; /* Centers the text block and adds space below */
    line-height: 1.6;
}

/* =========================================================
   CTA Buttons
   ========================================================= */

/* Button container */
.cvd-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Space between buttons */
    flex-wrap: wrap; /* Allows buttons to stack on small screens */
}

/* Base button styles */
.cvd-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Primary Button */
.cvd-btn-primary {
    background-color: var(--cvd-brand, #2271b1);
    color: #ffffff !important;
    border-color: var(--cvd-brand, #2271b1);
}

.cvd-btn-primary:hover,
.cvd-btn-primary:focus {
    background-color: #000000; /* Changed to black */
    border-color: #000000;     /* Changed to black */
    color: #ffffff !important;
}

/* Secondary Button */
.cvd-btn-secondary {
    background-color: transparent;
    color: var(--cvd-brand, #2271b1) !important;
    border-color: var(--cvd-brand, #2271b1);
}

.cvd-btn-secondary:hover,
.cvd-btn-secondary:focus {
    background-color: #000000; /* Changed to black */
    border-color: #000000;     /* Changed to black */
    color: #ffffff !important;
}

/* =========================================================
   Mobile Responsiveness
   ========================================================= */
@media (max-width: 600px) {
    .cvd-content-cta {
        padding: 2rem 1.5rem;
    }
    
    .cvd-cta-buttons {
        flex-direction: column; /* Stacks buttons vertically */
        gap: 0.75rem;
    }
    
    .cvd-cta-buttons .cvd-btn {
        width: 100%; /* Makes buttons full-width on mobile */
    }
}

/* =========================================
   ITINERARY PAGE — HEADING SIZES
   ========================================= */

/* H1 — Main itinerary title */
.single-cvd_itinerary h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
}

/* H2 — Main sections */
.single-cvd_itinerary h2 {
    font-size: 24px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.01em !important;
}

/* H3 — Subsections / day titles */
.single-cvd_itinerary h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}


/* Tablet */
@media (max-width: 900px) {

    .single-cvd_itinerary h1 {
        font-size: 36px !important;
    }

    .single-cvd_itinerary h2 {
        font-size: 25px !important;
    }

    .single-cvd_itinerary h3 {
        font-size: 20px !important;
    }
}


/* Mobile */
@media (max-width: 600px) {

    .single-cvd_itinerary h1 {
        font-size: 30px !important;
        line-height: 1.15 !important;
    }

    .single-cvd_itinerary h2 {
        font-size: 23px !important;
        line-height: 1.25 !important;
    }

    .single-cvd_itinerary h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
}
/* =========================================================
   CAMPERVANDEAL — SINGLE ITINERARY PAGE
   Consolidated styling
   ========================================================= */


/* =========================================================
   1. PAGE WIDTH / GENERAL SPACING
   ========================================================= */

.single-cvd_itinerary .cvd-container {
    max-width: 1240px;
}

.single-cvd_itinerary .cvd-itinerary-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
}

.single-cvd_itinerary .cvd-itinerary-article-layout > div {
    min-width: 0;
}


/* =========================================================
   2. HERO
   ========================================================= */

.single-cvd_itinerary .cvd-container > div:first-of-type {
    border-radius: 18px !important;
}

.single-cvd_itinerary .cvd-container > div:first-of-type img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
}


/* Main title */
.single-cvd_itinerary h1 {
    font-size: 42px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    font-weight: 750 !important;
}


/* H2 */
.single-cvd_itinerary h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    margin-top: 32px;
    margin-bottom: 14px;
}


/* H3 */
.single-cvd_itinerary h3 {
    font-size: 21px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}


/* =========================================================
   3. QUICK ROUTE FACTS
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    background:
        linear-gradient(
            135deg,
            #fbfdfc 0%,
            #f3faf7 100%
        ) !important;

    border: 1px solid #dce9e3 !important;
    border-radius: 18px !important;

    overflow: hidden !important;

    margin: 0 0 28px !important;

    box-shadow:
        0 6px 22px rgba(20, 60, 45, 0.045) !important;
}


/* Individual fact */
.single-cvd_itinerary .cvd-itinerary-fact {
    position: relative !important;

    padding: 22px 24px !important;

    min-height: 135px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    min-width: 0 !important;
}


/* Divider */
.single-cvd_itinerary .cvd-itinerary-fact:not(:last-child) {
    border-right: 1px solid #dfe9e5 !important;
}


/* Icon */
.single-cvd_itinerary .cvd-itinerary-fact::before {
    content: "" !important;

    display: block !important;

    width: 34px !important;
    height: 34px !important;

    margin-bottom: 12px !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 27px 27px !important;
}


/* Duration — calendar */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(1)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b7a53' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
}


/* Distance — route */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(2)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f8fa6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M7 5h3a4 4 0 0 1 4 4v6a4 4 0 0 0 4 4'/%3E%3C/svg%3E") !important;
}


/* Difficulty — mountain */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(3)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d49a38' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 20 6-10 4 6 2-3 6 7H3Z'/%3E%3Cpath d='m8 12 1-2 1.5 2.2'/%3E%3C/svg%3E") !important;
}


/* Best time — sun */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(4)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2370936d' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.42 1.42M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.42-1.42M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") !important;
}


/* Fact label */
.single-cvd_itinerary .cvd-itinerary-fact span {
    display: block !important;

    margin: 0 0 6px !important;

    color: #75817c !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;

    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
}


/* Fact value */
.single-cvd_itinerary .cvd-itinerary-fact strong {
    display: block !important;

    color: #17221e !important;

    font-size: 20px !important;
    line-height: 1.25 !important;

    font-weight: 750 !important;
}


/* =========================================================
   4. ROUTE CONTEXT / START + END
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-route-context {
    position: relative !important;

    margin: 0 0 30px !important;

    padding: 22px 26px 22px 78px !important;

    min-height: 95px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    background:
        linear-gradient(
            90deg,
            #edf8f3 0%,
            #f7fbf9 58%,
            #ffffff 100%
        ) !important;

    border: 1px solid #dce9e3 !important;

    border-radius: 18px !important;

    box-shadow:
        0 5px 20px rgba(20, 60, 45, 0.035) !important;
}


/* Location icon */
.single-cvd_itinerary .cvd-itinerary-route-context::before {
    content: "" !important;

    position: absolute !important;

    left: 24px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 38px !important;
    height: 38px !important;

    background:
        #dcefe6
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328774f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E")
        center / 22px 22px
        no-repeat !important;

    border-radius: 50% !important;
}


/* Region line */
.single-cvd_itinerary .cvd-itinerary-route-context p:first-child {
    margin: 0 0 4px !important;

    color: #718078 !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;

    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}


/* Route/start-end line */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(2) {
    margin: 0 !important;

    color: #17221e !important;

    font-size: 19px !important;
    line-height: 1.3 !important;

    font-weight: 750 !important;
}


/* Summary */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(3) {
    margin: 6px 0 0 !important;

    color: #65716c !important;

    font-size: 14px !important;
    line-height: 1.55 !important;
}


/* =========================================================
   5. MAIN CONTENT
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-article-layout p {
    color: #47524e;
}

.single-cvd_itinerary .cvd-itinerary-article-layout > div > div[style*="line-height:1.8"] {
    font-size: 16px !important;
    line-height: 1.75 !important;
}


/* Main content headings */
.single-cvd_itinerary .cvd-itinerary-article-layout h2 {
    color: #17221e !important;
}


/* =========================================================
   6. HIGHLIGHT CARDS
   ========================================================= */

.single-cvd_itinerary .cvd-dest-card {
    border-radius: 14px !important;
    overflow: hidden !important;

    min-height: 210px !important;

    box-shadow:
        0 6px 22px rgba(10, 30, 22, 0.06) !important;
}

.single-cvd_itinerary .cvd-dest-card-img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}

.single-cvd_itinerary .cvd-dest-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(5, 18, 14, 0.74) 0%,
            rgba(5, 18, 14, 0.08) 70%
        ) !important;
}

.single-cvd_itinerary .cvd-dest-card-title {
    font-size: 17px !important;
    line-height: 1.25 !important;

    font-weight: 750 !important;

    color: #fff !important;
}


/* Fallback highlight */
.single-cvd_itinerary .cvd-highlight-card {
    border: 1px solid #dde7e2 !important;
    border-radius: 14px !important;

    background: #f8fbf9 !important;

    padding: 18px !important;
}


/* =========================================================
   7. TAGS
   ========================================================= */

.single-cvd_itinerary .cvd-badge-brand {
    background: #edf7f2 !important;
    color: #28744f !important;

    border: 1px solid #dcece4 !important;

    font-size: 12px !important;

    padding: 6px 11px !important;
}


/* =========================================================
   CAMPERVANDEAL — ITINERARY FACTS
   THEME-MATCHED + COMPACT
   ========================================================= */

/* Main facts card */
.single-cvd_itinerary .cvd-itinerary-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    background: #ffffff !important;

    border: 1px solid #e7e5ef !important;
    border-radius: 16px !important;

    overflow: hidden !important;

    margin: 0 0 22px !important;

    box-shadow: 0 4px 16px rgba(32, 27, 45, 0.035) !important;
}


/* Individual stat */
.single-cvd_itinerary .cvd-itinerary-fact {
    position: relative !important;

    padding: 17px 20px !important;

    min-height: 0 !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}


/* Dividers */
.single-cvd_itinerary .cvd-itinerary-fact:not(:last-child) {
    border-right: 1px solid #eceaf2 !important;
}


/* =========================================================
   ICONS
   All use CampervanDeal purple
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-fact::before {
    content: "" !important;

    display: block !important;

    width: 27px !important;
    height: 27px !important;

    margin-bottom: 9px !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 23px 23px !important;
}


/* Duration — calendar */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(1)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
}


/* Distance — route */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(2)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M7 5h3a4 4 0 0 1 4 4v6a4 4 0 0 0 4 4'/%3E%3C/svg%3E") !important;
}


/* Difficulty — mountain */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(3)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 20 6-10 4 6 2-3 6 7H3Z'/%3E%3Cpath d='m8 12 1-2 1.5 2.2'/%3E%3C/svg%3E") !important;
}


/* Best Time — sun */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(4)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.42 1.42M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.42-1.42M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") !important;
}


/* Labels */
.single-cvd_itinerary .cvd-itinerary-fact span {
    display: block !important;

    margin: 0 0 4px !important;

    color: #7b7b86 !important;

    font-size: 11px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;
    letter-spacing: .065em !important;
}


/* Values */
.single-cvd_itinerary .cvd-itinerary-fact strong {
    display: block !important;

    color: #202126 !important;

    font-size: 18px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;
}


/* =========================================================
   START / ROUTE BOX
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-route-context {
    position: relative !important;

    margin: 0 0 28px !important;

    padding: 17px 22px 17px 67px !important;

    min-height: 74px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    background:
        linear-gradient(
            90deg,
            #f7f5ff 0%,
            #fbfaff 55%,
            #ffffff 100%
        ) !important;

    border: 1px solid #e7e3f6 !important;
    border-radius: 16px !important;

    box-shadow: 0 4px 14px rgba(55, 40, 100, 0.025) !important;
}


/* Location icon circle */
.single-cvd_itinerary .cvd-itinerary-route-context::before {
    content: "" !important;

    position: absolute !important;

    left: 20px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 32px !important;
    height: 32px !important;

    border-radius: 50% !important;

    background:
        #eeeaff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E")
        center / 18px 18px
        no-repeat !important;
}


/* Small route/region label */
.single-cvd_itinerary .cvd-itinerary-route-context p:first-child {
    margin: 0 0 3px !important;

    color: #777681 !important;

    font-size: 11px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}


/* Main location */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(2) {
    margin: 0 !important;

    color: #202126 !important;

    font-size: 17px !important;
    line-height: 1.3 !important;

    font-weight: 750 !important;
}


/* Route description */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(3) {
    margin: 4px 0 0 !important;

    color: #6f6e78 !important;

    font-size: 13px !important;
    line-height: 1.45 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .single-cvd_itinerary .cvd-itinerary-facts {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact {
        padding: 15px !important;
        border-bottom: 0 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact strong {
        font-size: 16px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .single-cvd_itinerary .cvd-itinerary-facts {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact {
        padding: 14px 15px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(1),
    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-bottom: 1px solid #eceaf2 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-right: 0 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact::before {
        width: 24px !important;
        height: 24px !important;

        background-size: 20px 20px !important;

        margin-bottom: 7px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact strong {
        font-size: 16px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-route-context {
        padding: 15px 15px 15px 59px !important;
        min-height: 68px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-route-context::before {
        left: 15px !important;

        width: 30px !important;
        height: 30px !important;

        background-size: 17px 17px !important;
    }

}
.cvd-company-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
/* Homepage company image area */
.home .cvd-platform-company-brand {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f6f6f7 !important;
    overflow: hidden !important;
}

/* Fill entire image area */
.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* ========================================================================
   FINAL RECONCILIATION — CHARCOAL + PURPLE + REVIEW CARD FIXES
   Keep this LAST so older Additional CSS cannot undo the intended design.
   ======================================================================== */

:root {
    --cvd-brand:        #6548e8;
    --cvd-brand-dark:   #563bd5;
    --cvd-brand-light:  #8b78ef;
    --cvd-black:        #202126;
    --cvd-gray-800:     #202126;

    --cvd-text:         #202126;
    --cvd-text-soft:    #666b72;
    --cvd-text-muted:   #85888d;
    --cvd-surface-soft: #f7f7f8;
    --cvd-purple-soft:  #f3f0ff;
    --cvd-purple-line:  #e4defc;
}

/* Headings/content stay charcoal */
h1, h2, h3, h4, h5, h6 {
    color: var(--cvd-gray-800);
}

/* Purple is reserved for actions/links */
a {
    color: var(--cvd-brand);
}

a:hover {
    color: var(--cvd-brand-dark);
}

/* Neutral secondary button */
.cvd-btn-secondary {
    background: #fff !important;
    color: var(--cvd-gray-800) !important;
    border-color: #e3e4e7 !important;
}

.cvd-btn-secondary:hover,
.cvd-btn-secondary:focus {
    background: #f7f7f8 !important;
    color: var(--cvd-gray-800) !important;
    border-color: #cfd2d7 !important;
}

/* Primary button stays purple; hover becomes deeper purple, not black */
.cvd-btn-primary {
    background: var(--cvd-brand) !important;
    border-color: var(--cvd-brand) !important;
    color: #fff !important;
}

.cvd-btn-primary:hover,
.cvd-btn-primary:focus {
    background: var(--cvd-brand-dark) !important;
    border-color: var(--cvd-brand-dark) !important;
    color: #fff !important;
}

/* Kickers are neutral unless they are intentionally interactive */
.cvd-kicker,
.cvd-platform-kicker {
    color: var(--cvd-text-muted) !important;
}

/* =========================================================
   HOMEPAGE COMPANY / REVIEW CARDS — FINAL
   ========================================================= */

.home .cvd-platform-company-card {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid #e3e4e7 !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
}

.home .cvd-platform-company-card:hover {
    transform: translateY(-2px) !important;
    border-color: #d7d3e8 !important;
    box-shadow: 0 8px 24px rgba(32,33,38,.06) !important;
}

/* Full-bleed top image */
.home .cvd-platform-company-brand {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f6f6f7 !important;
    overflow: hidden !important;
}

.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.home .cvd-platform-company-brand .cvd-company-monogram {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    background: var(--cvd-purple-soft) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    color: var(--cvd-brand) !important;
}

.home .cvd-platform-company-body {
    padding: 16px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    background: #fff !important;
}

/* Country badge hugs its text instead of spanning the whole card */
.home .cvd-platform-company-body .cvd-company-country {
    display: inline-flex !important;
    align-self: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    padding: 4px 9px !important;
    margin: 0 0 9px !important;
    background: var(--cvd-purple-soft) !important;
    color: var(--cvd-brand) !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}

.home .cvd-platform-company-body h3,
.home .cvd-platform-company-body h3 a {
    color: var(--cvd-gray-800) !important;
}

.home .cvd-platform-company-body h3 a:hover {
    color: var(--cvd-brand) !important;
}

.home .cvd-platform-company-score small {
    color: var(--cvd-text-muted) !important;
}

.home .cvd-platform-company-body > p {
    color: var(--cvd-text-soft) !important;
}

.home .cvd-platform-company-body .cvd-platform-text-link {
    color: var(--cvd-brand) !important;
}

/* Single company profile image */
.cvd-company-logo {
    overflow: hidden !important;
}

.cvd-company-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* =========================================================
   ITINERARY FACTS — COMPACT + THEME MATCH
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    background: #fff !important;
    border: 1px solid #e7e5ef !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin: 0 0 22px !important;
    box-shadow: 0 4px 16px rgba(32,27,45,.035) !important;
}

.single-cvd_itinerary .cvd-itinerary-fact {
    position: relative !important;
    padding: 17px 20px !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.single-cvd_itinerary .cvd-itinerary-fact:not(:last-child) {
    border-right: 1px solid #eceaf2 !important;
}

.single-cvd_itinerary .cvd-itinerary-fact::before {
    content: "" !important;
    display: block !important;
    width: 27px !important;
    height: 27px !important;
    margin-bottom: 9px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 23px 23px !important;
}

/* Duration */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236548E8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
}

/* Distance */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236548E8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M7 5h3a4 4 0 0 1 4 4v6a4 4 0 0 0 4 4'/%3E%3C/svg%3E") !important;
}

/* Difficulty */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236548E8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 20 6-10 4 6 2-3 6 7H3Z'/%3E%3C/svg%3E") !important;
}

/* Best time */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236548E8' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.42 1.42M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.42-1.42M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") !important;
}

.single-cvd_itinerary .cvd-itinerary-fact span {
    color: var(--cvd-text-muted) !important;
    font-size: 11px !important;
    margin-bottom: 4px !important;
}

.single-cvd_itinerary .cvd-itinerary-fact strong {
    color: var(--cvd-gray-800) !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
}

/* Neutral route card with purple accent */
.single-cvd_itinerary .cvd-itinerary-route-context {
    background: linear-gradient(90deg, #f7f5ff 0%, #fbfaff 55%, #fff 100%) !important;
    border-color: #e7e3f6 !important;
}

.single-cvd_itinerary .cvd-itinerary-route-context p:first-child {
    color: var(--cvd-text-muted) !important;
}

.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(2) {
    color: var(--cvd-gray-800) !important;
}

.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(3) {
    color: var(--cvd-text-soft) !important;
}

/* Form focus uses brand purple only when active */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--cvd-brand) !important;
    box-shadow: 0 0 0 3px rgba(101,72,232,.10) !important;
}

/* Mobile review image */
@media (max-width: 640px) {
    .home .cvd-platform-company-brand {
        height: 155px !important;
        min-height: 155px !important;
    }
}

/* Mobile itinerary facts */
@media (max-width: 600px) {
    .single-cvd_itinerary .cvd-itinerary-facts {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact {
        padding: 14px 15px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(1),
    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-bottom: 1px solid #eceaf2 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-right: 0 !important;
    }
}

/* ========================================================================
   AUTHORITATIVE WORDPRESS ADDITIONAL CSS — LOADS AFTER LEGACY THEME RULES
   ======================================================================== */
/* =========================================================
   PLANNER LAYOUT FIX — KEEP TITLE ON ONE LINE
   ========================================================= */

.cvd-platform-planner {
    display: grid !important;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 2.4fr) !important;
    gap: 34px !important;
    align-items: end !important;
}

.cvd-platform-planner-copy {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    min-width: 0;
}

.cvd-platform-planner-copy > div {
    min-width: 0;
}

.cvd-platform-planner-copy h2 {
    font-size: 1rem !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    margin: 0 0 8px !important;
}

.cvd-platform-planner-copy p {
    max-width: 460px !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.cvd-platform-planner-form {
    min-width: 0;
}

/* Slightly tighten the form so it fits comfortably */
.cvd-platform-planner-form {
    gap: 12px !important;
}

.cvd-platform-planner-form label > span {
    font-size: 15px !important;
}

.cvd-platform-planner-form input,
.cvd-platform-planner-form select {
    font-size: 16px !important;
}

.cvd-platform-planner-form .cvd-btn {
    font-size: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* Tablet — allow title to wrap only when genuinely necessary */
@media (max-width: 1100px) {

    .cvd-platform-planner {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .cvd-platform-planner-copy h2 {
        white-space: normal !important;
    }

    .cvd-platform-planner-copy p {
        max-width: 700px !important;
    }

}


/* Mobile */
@media (max-width: 600px) {

    .cvd-platform-planner-copy {
        gap: 12px !important;
    }

    .cvd-platform-planner-copy h2 {
        font-size: 1.6rem !important;
    }

}


/* ================================
   HOMEPAGE HERO — COMPACT LAYOUT
   ================================ */

.home .cvd-platform-hero-grid {
    align-items: center !important;
}

.home .cvd-platform-hero-copy {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.home .cvd-platform-kicker {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.home .cvd-platform-hero-copy h1 {
    font-size: 2.2rem !important;
    line-height: 1.35 !important;
    margin-bottom: 15px !important;
    max-width: 420px !important;
}

.home .cvd-platform-hero-copy > p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    max-width: 590px !important;
}

.home .cvd-platform-search {
    margin-bottom: 14px !important;
}

.home .cvd-platform-popular-links {
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/* Hero image — single source of truth (duplicate block removed) */
.home .cvd-platform-hero-media {
    display: block !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    background-size: cover !important;
    background-position: right center !important; /* Anchors the image to the right edge */
    border-radius: 20px !important; /* Forces all four corners to round evenly */
}

@media (max-width: 768px) {

    .home .cvd-platform-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .home .cvd-platform-hero-copy h1 {
        font-size: 1.5rem !important;
        line-height: 1.1 !important;
    }

    .home .cvd-platform-hero-copy > p {
        font-size: 0.95rem !important;
    }

    .home .cvd-platform-hero-media {
        display: block !important;
        width: 100% !important;
        height: 260px !important;
        min-height: 260px !important;
        order: -1 !important;
    }

}


/* =========================================================
   HOMEPAGE — CAMPERVAN RENTAL REVIEWS
   ========================================================= */

.home .cvd-platform-company-slider {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(235px, 1fr) !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 10px !important;
}

.home .cvd-platform-company-slider::-webkit-scrollbar {
    display: none;
}

.home .cvd-platform-company-card {
    min-height: 300px !important;
    height: auto !important;
    background: #fff !important;
    border: 1px solid #e3e7e5 !important;
    border-radius: 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    scroll-snap-align: start;
}

.home .cvd-platform-company-card:hover {
    transform: translateY(-2px);
    border-color: #cfd6d2 !important;
    box-shadow: 0 8px 24px rgba(10, 25, 20, 0.06) !important;
}


/* Logo / monogram area */
.home .cvd-platform-company-brand {
    height: 120px !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f6f8f7 !important;
    padding: 18px !important;
    overflow: hidden !important;
}

.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-height: 80px !important;
    object-fit: contain !important;
    padding: 0 !important;
}

.home .cvd-platform-company-brand .cvd-company-monogram {
    width: 68px !important;
    height: 68px !important;
    border-radius: 18px !important;
    background: #e8f4ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--cvd-brand) !important;
}


/* Card body */
.home .cvd-platform-company-body {
    padding: 16px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}


/* Country */
.home .cvd-platform-company-body .cvd-company-country {
    display: block !important;
    margin: 0 0 5px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #66736e !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}


/* Company name */
.home .cvd-platform-company-body h3 {
    margin: 0 0 8px !important;
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
}

.home .cvd-platform-company-body h3 a {
    color: #1f2937 !important;
    text-decoration: none !important;
}

.home .cvd-platform-company-body h3 a:hover {
    color: var(--cvd-brand) !important;
}


/* Rating row */
.home .cvd-platform-company-score {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0 0 10px !important;
    min-height: 20px !important;
    font-size: 13px !important;
}

.home .cvd-platform-company-score .cvd-stars {
    display: inline-flex !important;
    gap: 2px !important;
    color: #efb429 !important;
}

.home .cvd-platform-company-score strong {
    font-size: 14px !important;
    color: #1f2937 !important;
}

.home .cvd-platform-company-score small {
    font-size: 13px !important;
    color: #7b817f !important;
}


/* Excerpt */
.home .cvd-platform-company-body > p {
    margin: 0 0 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #5f6965 !important;
}


/* CTA */
.home .cvd-platform-company-body .cvd-platform-text-link {
    margin-top: auto !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}


/* Heading area */
.home .cvd-platform-heading-row {
    align-items: flex-end !important;
}

.home .cvd-platform-heading-row > div > h2 {
    margin-bottom: 6px !important;
}

.home .cvd-platform-heading-row > div > p {
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    color: #667085 !important;
}


/* Slider arrow */
.home .cvd-platform-slider-wrap {
    position: relative !important;
}

.home .cvd-platform-company-slider + .cvd-platform-slider-next {
    position: absolute !important;
    top: 50% !important;
    right: -20px !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e1e5e3 !important;
    box-shadow: 0 5px 18px rgba(10,25,20,.10) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    z-index: 5 !important;
}


/* Tablet */
@media (max-width: 980px) {

    .home .cvd-platform-company-slider {
        grid-auto-columns: minmax(240px, 46%) !important;
    }

}


/* Mobile */
@media (max-width: 640px) {

    .home .cvd-platform-company-slider {
        grid-auto-columns: 84% !important;
        gap: 14px !important;
    }

    .home .cvd-platform-company-card {
        min-height: 285px !important;
    }

    .home .cvd-platform-company-brand {
        height: 110px !important;
        min-height: 110px !important;
    }

    .home .cvd-platform-company-slider + .cvd-platform-slider-next {
        display: none !important;
    }

    .home .cvd-platform-heading-row {
        align-items: flex-start !important;
    }

}

.cvd-itinerary-article-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:2.5rem;
  align-items:start;
}
.cvd-itinerary-sidebar{ position:sticky; top:calc(var(--cvd-header-h) + 1rem); }
.cvd-itinerary-author-box{
  border:1px solid var(--cvd-gray-100);
  border-radius:var(--cvd-radius);
  padding:1.25rem;
  background:#fff;
  box-shadow:var(--cvd-shadow);
  margin-bottom:1.25rem;
}
.cvd-itinerary-author-row{ display:flex; align-items:center; gap:.75rem; margin-bottom:.85rem; }
.cvd-itinerary-author-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.cvd-itinerary-author-name{ font-family:var(--cvd-font-heading); font-weight:700; font-size:.95rem; color:var(--cvd-gray-800); }
.cvd-itinerary-author-role{ font-size:.8rem; color:var(--cvd-gray-500); }
.cvd-itinerary-updated{
  font-size:.82rem; color:var(--cvd-gray-500);
  border-top:1px solid var(--cvd-gray-100);
  padding-top:.75rem;
}
.cvd-itinerary-updated strong{ color:var(--cvd-gray-800); }

@media (max-width:1023px){
  .cvd-itinerary-article-layout{ grid-template-columns:1fr; max-width:920px; }
}
/* Itinerary sidebar (author + last updated) */
.cvd-itinerary-article-layout{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:2.5rem;
  align-items:start;
}
.cvd-itinerary-sidebar{
  position:sticky;
  top:calc(var(--cvd-header-h) + 1rem);
}
.cvd-itinerary-author-box{
  border:1px solid var(--cvd-gray-100);
  border-radius:var(--cvd-radius);
  padding:1.25rem;
  background:#fff;
  box-shadow:var(--cvd-shadow);
  margin-bottom:1.25rem;
}
.cvd-itinerary-author-row{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.85rem;
}
.cvd-itinerary-author-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.cvd-itinerary-author-name{
  font-family:var(--cvd-font-heading);
  font-weight:700;
  font-size:.95rem;
  color:var(--cvd-gray-800);
}
.cvd-itinerary-author-role{
  font-size:.8rem;
  color:var(--cvd-gray-500);
}
.cvd-itinerary-updated{
  font-size:.82rem;
  color:var(--cvd-gray-500);
  border-top:1px solid var(--cvd-gray-100);
  padding-top:.75rem;
}
.cvd-itinerary-updated strong{
  color:var(--cvd-gray-800);
}

@media (max-width:1023px){
  .cvd-itinerary-article-layout{
    grid-template-columns:1fr;
    max-width:920px;
  }
}

/* =======================================================
   Campervan Deal - Destination Page Layout & Typography 
========================================================== */

/* --- 1. Typography Adjustments (Fixing oversized text) --- */

.cvd-destination-hero h1 {
    font-size: 1.5rem; 
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.cvd-destination-page h1 {
    font-size: 1.5rem !important;
    line-height: 1.2;
}

/* Fix heading alignments and sizing */
.cvd-destination-page h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 0.5rem; /* Tightens gap between kicker and heading */
    margin-bottom: 1.25rem;
    text-align: left; /* Ensures all H2s are left-aligned */
}

.cvd-destination-page h3 {
    font-size: 1rem;
    line-height: 0.3;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Standardize body text size for readability */
.cvd-destination-page p,
.cvd-destination-page li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* --- 2. Spacing & Gaps (Sections & Elements) --- */

/* Ensures consistent vertical rhythm between sections */
.cvd-destination-layout main section {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

/* Kicker styling (e.g., "Why go", "Highlights") */
.cvd-kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555; 
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* --- 3. Grid Alignments --- */

/* Highlights grid layout */
.cvd-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.cvd-highlight-item {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border-left: 3px solid #2c3e50; /* Adds a nice visual anchor */
}

/* Itineraries and Guides 3-column grid */
.cvd-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* --- 4. Sidebar / Practical Info Box --- */

.cvd-destination-facts {
    background: #f4f6f8;
    padding: 2rem;
    border-radius: 8px;
}

.cvd-destination-facts h2 {
    margin-top: 0;
    font-size: 1.0rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Formats the Country/Region/Climate data */
.cvd-destination-facts div {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.cvd-destination-facts div span {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.cvd-destination-facts div strong {
    font-size: 1.1rem;
    color: #222;
}

/* Make the explore button span the full width of the sidebar */
.cvd-destination-facts .cvd-btn {
    display: block;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* --- 5. Main Layout Structure (Desktop vs Mobile) --- */

@media (min-width: 992px) {
    .cvd-destination-layout {
        display: grid;
        grid-template-columns: 2fr 1fr; /* 2/3 width for main, 1/3 for sidebar */
        gap: 4rem; /* Gap between main content and sidebar */
        align-items: start;
    }
}
/* ============================================================
   COMPANY REVIEW PAGE LAYOUT FIXES
   ============================================================ */

/* Main layout container (Side-by-side columns) */
.cvd-company-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Make main content take up 2/3 of the space */
.cvd-company-layout main {
    flex: 1 1 65%;
    min-width: 320px;
}

/* Make sidebar take up 1/3 of the space */
.cvd-company-layout aside {
    flex: 1 1 30%;
    min-width: 280px;
    position: sticky;
    top: calc(var(--cvd-header-h) + 1.5rem); /* Keeps sidebar visible while scrolling */
}

/* Header styling */
.cvd-company-profile-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--cvd-gray-100);
    margin-bottom: 1rem;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .cvd-company-layout {
        flex-direction: column;
    }
    
    .cvd-company-profile-head {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* ============================================================
   REVIEWS & FILTERS LAYOUT FIXES
   ============================================================ */

/* 1. Reduce overall heading sizes specifically for the company page */
.cvd-company-page h1 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.cvd-company-page h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin-bottom: 0.5rem;
}

/* 2. Style the Section Heading to sit next to the button */
.cvd-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cvd-gray-200); /* Adds visual separation */
}

/* 3. Transform the Filter Form into a horizontal bar */
.cvd-review-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: var(--cvd-gray-50); /* Adds depth to reduce flatness */
    padding: 1.25rem;
    border-radius: var(--cvd-radius-sm);
    border: 1px solid var(--cvd-gray-200);
    margin-bottom: 2.5rem; /* Creates breathing room below the filters */
}

/* Make inputs sit side-by-side but grow to fill space */
.cvd-review-filters select,
.cvd-review-filters input:not([type="checkbox"]) {
    flex: 1 1 140px; 
    margin-bottom: 0;
    min-width: 140px;
    height: 42px; /* Uniform height */
}

/* Properly align the checkbox */
.cvd-review-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}

.cvd-review-filters input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--cvd-brand);
}

/* Lock the button size so it doesn't stretch */
.cvd-review-filters button {
    flex: 0 0 auto;
    height: 42px;
}

/* 4. Improve the "Write a Review" Container */
.cvd-review-form-wrap {
    margin-top: 4rem; /* Big gap to separate reading reviews from writing one */
    padding: 2.5rem;
    background: var(--cvd-white);
    border-radius: var(--cvd-radius-lg);
    box-shadow: var(--cvd-shadow); /* Elevates the form off the background */
    border: 1px solid var(--cvd-gray-100);
}

.cvd-review-form-wrap .cvd-kicker {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cvd-brand);
    margin-bottom: 0.5rem;
}
/* ==========================================================================
   1. Header Alignment Fixes
   ========================================================================== */

/* Aligns the "View all" link with the main heading on the same baseline */
.cvd-platform-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Keeps text aligned at the bottom */
    margin-bottom: 2rem;
    gap: 1rem;
}

/* Ensures the heading doesn't stretch weirdly and keeps line height tight */
.cvd-platform-heading-row h2 {
    margin: 0;
    line-height: 1.2;
}

/* ==========================================================================
   2. Column Layout (Grid)
   ========================================================================== */

/* Creates an equal two-column layout for desktop */
.cvd-platform-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .cvd-platform-editorial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* ==========================================================================
   3. Standardize Article Layout (Fixing the Top Card Inconsistency)
   ========================================================================== */

/* Give the lists a consistent vertical gap */
.cvd-platform-guide-list,
.cvd-platform-deal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 
 * Force all cards (including the 'is-featured' one) to behave exactly 
 * the same: no white background, no padding, horizontal flex layout. 
 */
.cvd-platform-guide-card,
.cvd-platform-deal-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: transparent !important; /* Overrides the white box on top card */
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Lock the thumbnail sizes so the text columns align perfectly */
.cvd-platform-guide-image,
.cvd-platform-deal-image {
    flex: 0 0 120px; /* Prevents image from shrinking or growing */
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0; /* Fallback color */
    display: block;
}

.cvd-platform-guide-image img,
.cvd-platform-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without stretching */
}

/* ==========================================================================
   4. Typography and Contrast Fixes (Solving the Micro-text)
   ========================================================================== */

/* Title sizing */
.cvd-platform-guide-card h3,
.cvd-platform-deal-card h3 {
    margin: 0 0 0.35rem 0;
    font-size: 1.125rem;
    line-height: 1.3;
    color: #111827; /* Very dark grey for strong contrast */
}

.cvd-platform-guide-card h3 a,
.cvd-platform-deal-card h3 a {
    text-decoration: none;
    color: inherit;
}

/* Increase description size and darken color */
.cvd-platform-guide-card p,
.cvd-platform-deal-card p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem; /* Bumped up for readability */
    line-height: 1.4;
    color: #4b5563; /* Darker charcoal grey */
}

/* Increase date size and weight */
.cvd-platform-guide-card small,
.cvd-platform-deal-card small {
    display: block;
    font-size: 0.875rem; 
    color: #6b7280; 
    font-weight: 500; /* slightly heavier to ensure legibility when small */
}
/* =========================================================
   Single Post - Main Title (H1)
   ========================================================= */
.type-post h1[itemprop="headline"] {
    font-size: 34px !important;
    line-height: 1.2;
    font-weight: 700;
}

/* Optional: Scale down slightly for mobile screens */
@media (max-width: 768px) {
    .type-post h1[itemprop="headline"] {
        font-size: 28px !important;
    }
}

/* =========================================================
   Single Post - Body Content Styles (the_content)
   ========================================================= */
/* Headings inside the article body */
.type-post [itemprop="articleBody"] h2 {
    font-size: 26px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.type-post [itemprop="articleBody"] h3 {
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs and spacing */
.type-post [itemprop="articleBody"] p {
    margin-bottom: 1.5rem;
}

/* Lists */
.type-post [itemprop="articleBody"] ul, 
.type-post [itemprop="articleBody"] ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.type-post [itemprop="articleBody"] li {
    margin-bottom: 0.5rem;
}

/* Images inside the content */
.type-post [itemprop="articleBody"] img {
    max-width: 100%;
    height: auto;
    border-radius: var(--cvd-radius-lg, 8px);
    margin: 1.5rem 0;
    display: block;
}

/* Blockquotes */
.type-post [itemprop="articleBody"] blockquote {
    border-left: 4px solid var(--cvd-brand, #2271b1);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: var(--cvd-gray-100, #f6f7f7);
}

/* =========================================================
   Post Meta Data (Categories & Dates)
   ========================================================= */
.cvd-blog-cat {
    background-color: var(--cvd-brand, #2271b1);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cvd-blog-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--cvd-gray-500, #646970);
    font-size: 0.875rem;
}
/* =========================================================
   Post Content CTA Section
   ========================================================= */

/* Main wrapper */
.cvd-content-cta {
    background-color: var(--cvd-gray-100, #f6f7f7); /* Light gray background */
    padding: 3rem 2rem;
    border-radius: var(--cvd-radius-lg, 12px); /* Rounded corners */
    border: 1px solid var(--cvd-gray-200, #dcdcde);
}

/* Centering utility */
.cvd-content-cta .text-center {
    text-align: center;
}

/* Eyebrow text (Small label above heading) */
.cvd-content-cta .cvd-eyebrow {
    display: block;
    color: var(--cvd-brand, #2271b1); /* Brand color */
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* Heading */
.cvd-content-cta h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1d2327;
}

/* Description paragraph */
.cvd-content-cta p {
    font-size: 1.0625rem;
    color: var(--cvd-gray-700, #50575e);
    max-width: 600px;
    margin: 0 auto 2rem auto; /* Centers the text block and adds space below */
    line-height: 1.6;
}

/* =========================================================
   CTA Buttons
   ========================================================= */

/* Button container */
.cvd-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Space between buttons */
    flex-wrap: wrap; /* Allows buttons to stack on small screens */
}

/* Base button styles */
.cvd-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Primary Button */
.cvd-btn-primary {
    background-color: var(--cvd-brand, #2271b1);
    color: #ffffff !important;
    border-color: var(--cvd-brand, #2271b1);
}

.cvd-btn-primary:hover,
.cvd-btn-primary:focus {
    background-color: #000000; /* Changed to black */
    border-color: #000000;     /* Changed to black */
    color: #ffffff !important;
}

/* Secondary Button */
.cvd-btn-secondary {
    background-color: transparent;
    color: var(--cvd-brand, #2271b1) !important;
    border-color: var(--cvd-brand, #2271b1);
}

.cvd-btn-secondary:hover,
.cvd-btn-secondary:focus {
    background-color: #000000; /* Changed to black */
    border-color: #000000;     /* Changed to black */
    color: #ffffff !important;
}

/* =========================================================
   Mobile Responsiveness
   ========================================================= */
@media (max-width: 600px) {
    .cvd-content-cta {
        padding: 2rem 1.5rem;
    }
    
    .cvd-cta-buttons {
        flex-direction: column; /* Stacks buttons vertically */
        gap: 0.75rem;
    }
    
    .cvd-cta-buttons .cvd-btn {
        width: 100%; /* Makes buttons full-width on mobile */
    }
}

/* =========================================
   ITINERARY PAGE — HEADING SIZES
   ========================================= */

/* H1 — Main itinerary title */
.single-cvd_itinerary h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
}

/* H2 — Main sections */
.single-cvd_itinerary h2 {
    font-size: 24px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.01em !important;
}

/* H3 — Subsections / day titles */
.single-cvd_itinerary h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}


/* Tablet */
@media (max-width: 900px) {

    .single-cvd_itinerary h1 {
        font-size: 36px !important;
    }

    .single-cvd_itinerary h2 {
        font-size: 25px !important;
    }

    .single-cvd_itinerary h3 {
        font-size: 20px !important;
    }
}


/* Mobile */
@media (max-width: 600px) {

    .single-cvd_itinerary h1 {
        font-size: 30px !important;
        line-height: 1.15 !important;
    }

    .single-cvd_itinerary h2 {
        font-size: 23px !important;
        line-height: 1.25 !important;
    }

    .single-cvd_itinerary h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
}
/* =========================================================
   CAMPERVANDEAL — SINGLE ITINERARY PAGE
   Consolidated styling
   ========================================================= */


/* =========================================================
   1. PAGE WIDTH / GENERAL SPACING
   ========================================================= */

.single-cvd_itinerary .cvd-container {
    max-width: 1240px;
}

.single-cvd_itinerary .cvd-itinerary-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
}

.single-cvd_itinerary .cvd-itinerary-article-layout > div {
    min-width: 0;
}


/* =========================================================
   2. HERO
   ========================================================= */

.single-cvd_itinerary .cvd-container > div:first-of-type {
    border-radius: 18px !important;
}

.single-cvd_itinerary .cvd-container > div:first-of-type img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
}


/* Main title */
.single-cvd_itinerary h1 {
    font-size: 42px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    font-weight: 750 !important;
}


/* H2 */
.single-cvd_itinerary h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    margin-top: 32px;
    margin-bottom: 14px;
}


/* H3 */
.single-cvd_itinerary h3 {
    font-size: 21px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}


/* =========================================================
   3. QUICK ROUTE FACTS
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    background:
        linear-gradient(
            135deg,
            #fbfdfc 0%,
            #f3faf7 100%
        ) !important;

    border: 1px solid #dce9e3 !important;
    border-radius: 18px !important;

    overflow: hidden !important;

    margin: 0 0 28px !important;

    box-shadow:
        0 6px 22px rgba(20, 60, 45, 0.045) !important;
}


/* Individual fact */
.single-cvd_itinerary .cvd-itinerary-fact {
    position: relative !important;

    padding: 22px 24px !important;

    min-height: 135px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    min-width: 0 !important;
}


/* Divider */
.single-cvd_itinerary .cvd-itinerary-fact:not(:last-child) {
    border-right: 1px solid #dfe9e5 !important;
}


/* Icon */
.single-cvd_itinerary .cvd-itinerary-fact::before {
    content: "" !important;

    display: block !important;

    width: 34px !important;
    height: 34px !important;

    margin-bottom: 12px !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 27px 27px !important;
}


/* Duration — calendar */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(1)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b7a53' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
}


/* Distance — route */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(2)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f8fa6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M7 5h3a4 4 0 0 1 4 4v6a4 4 0 0 0 4 4'/%3E%3C/svg%3E") !important;
}


/* Difficulty — mountain */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(3)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d49a38' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 20 6-10 4 6 2-3 6 7H3Z'/%3E%3Cpath d='m8 12 1-2 1.5 2.2'/%3E%3C/svg%3E") !important;
}


/* Best time — sun */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(4)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2370936d' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.42 1.42M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.42-1.42M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") !important;
}


/* Fact label */
.single-cvd_itinerary .cvd-itinerary-fact span {
    display: block !important;

    margin: 0 0 6px !important;

    color: #75817c !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;

    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
}


/* Fact value */
.single-cvd_itinerary .cvd-itinerary-fact strong {
    display: block !important;

    color: #17221e !important;

    font-size: 20px !important;
    line-height: 1.25 !important;

    font-weight: 750 !important;
}


/* =========================================================
   4. ROUTE CONTEXT / START + END
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-route-context {
    position: relative !important;

    margin: 0 0 30px !important;

    padding: 22px 26px 22px 78px !important;

    min-height: 95px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    background:
        linear-gradient(
            90deg,
            #edf8f3 0%,
            #f7fbf9 58%,
            #ffffff 100%
        ) !important;

    border: 1px solid #dce9e3 !important;

    border-radius: 18px !important;

    box-shadow:
        0 5px 20px rgba(20, 60, 45, 0.035) !important;
}


/* Location icon */
.single-cvd_itinerary .cvd-itinerary-route-context::before {
    content: "" !important;

    position: absolute !important;

    left: 24px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 38px !important;
    height: 38px !important;

    background:
        #dcefe6
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328774f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E")
        center / 22px 22px
        no-repeat !important;

    border-radius: 50% !important;
}


/* Region line */
.single-cvd_itinerary .cvd-itinerary-route-context p:first-child {
    margin: 0 0 4px !important;

    color: #718078 !important;

    font-size: 12px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;

    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}


/* Route/start-end line */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(2) {
    margin: 0 !important;

    color: #17221e !important;

    font-size: 19px !important;
    line-height: 1.3 !important;

    font-weight: 750 !important;
}


/* Summary */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(3) {
    margin: 6px 0 0 !important;

    color: #65716c !important;

    font-size: 14px !important;
    line-height: 1.55 !important;
}


/* =========================================================
   5. MAIN CONTENT
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-article-layout p {
    color: #47524e;
}

.single-cvd_itinerary .cvd-itinerary-article-layout > div > div[style*="line-height:1.8"] {
    font-size: 16px !important;
    line-height: 1.75 !important;
}


/* Main content headings */
.single-cvd_itinerary .cvd-itinerary-article-layout h2 {
    color: #17221e !important;
}


/* =========================================================
   6. HIGHLIGHT CARDS
   ========================================================= */

.single-cvd_itinerary .cvd-dest-card {
    border-radius: 14px !important;
    overflow: hidden !important;

    min-height: 210px !important;

    box-shadow:
        0 6px 22px rgba(10, 30, 22, 0.06) !important;
}

.single-cvd_itinerary .cvd-dest-card-img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}

.single-cvd_itinerary .cvd-dest-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(5, 18, 14, 0.74) 0%,
            rgba(5, 18, 14, 0.08) 70%
        ) !important;
}

.single-cvd_itinerary .cvd-dest-card-title {
    font-size: 17px !important;
    line-height: 1.25 !important;

    font-weight: 750 !important;

    color: #fff !important;
}


/* Fallback highlight */
.single-cvd_itinerary .cvd-highlight-card {
    border: 1px solid #dde7e2 !important;
    border-radius: 14px !important;

    background: #f8fbf9 !important;

    padding: 18px !important;
}


/* =========================================================
   7. TAGS
   ========================================================= */

.single-cvd_itinerary .cvd-badge-brand {
    background: #edf7f2 !important;
    color: #28744f !important;

    border: 1px solid #dcece4 !important;

    font-size: 12px !important;

    padding: 6px 11px !important;
}


/* =========================================================
   CAMPERVANDEAL — ITINERARY FACTS
   THEME-MATCHED + COMPACT
   ========================================================= */

/* Main facts card */
.single-cvd_itinerary .cvd-itinerary-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    background: #ffffff !important;

    border: 1px solid #e7e5ef !important;
    border-radius: 16px !important;

    overflow: hidden !important;

    margin: 0 0 22px !important;

    box-shadow: 0 4px 16px rgba(32, 27, 45, 0.035) !important;
}


/* Individual stat */
.single-cvd_itinerary .cvd-itinerary-fact {
    position: relative !important;

    padding: 17px 20px !important;

    min-height: 0 !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}


/* Dividers */
.single-cvd_itinerary .cvd-itinerary-fact:not(:last-child) {
    border-right: 1px solid #eceaf2 !important;
}


/* =========================================================
   ICONS
   All use CampervanDeal purple
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-fact::before {
    content: "" !important;

    display: block !important;

    width: 27px !important;
    height: 27px !important;

    margin-bottom: 9px !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 23px 23px !important;
}


/* Duration — calendar */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(1)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") !important;
}


/* Distance — route */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(2)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3Cpath d='M7 5h3a4 4 0 0 1 4 4v6a4 4 0 0 0 4 4'/%3E%3C/svg%3E") !important;
}


/* Difficulty — mountain */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(3)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 20 6-10 4 6 2-3 6 7H3Z'/%3E%3Cpath d='m8 12 1-2 1.5 2.2'/%3E%3C/svg%3E") !important;
}


/* Best Time — sun */
.single-cvd_itinerary .cvd-itinerary-fact:nth-child(4)::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.42 1.42M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.42-1.42M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") !important;
}


/* Labels */
.single-cvd_itinerary .cvd-itinerary-fact span {
    display: block !important;

    margin: 0 0 4px !important;

    color: #7b7b86 !important;

    font-size: 11px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;
    letter-spacing: .065em !important;
}


/* Values */
.single-cvd_itinerary .cvd-itinerary-fact strong {
    display: block !important;

    color: #202126 !important;

    font-size: 18px !important;
    line-height: 1.2 !important;

    font-weight: 750 !important;
}


/* =========================================================
   START / ROUTE BOX
   ========================================================= */

.single-cvd_itinerary .cvd-itinerary-route-context {
    position: relative !important;

    margin: 0 0 28px !important;

    padding: 17px 22px 17px 67px !important;

    min-height: 74px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    background:
        linear-gradient(
            90deg,
            #f7f5ff 0%,
            #fbfaff 55%,
            #ffffff 100%
        ) !important;

    border: 1px solid #e7e3f6 !important;
    border-radius: 16px !important;

    box-shadow: 0 4px 14px rgba(55, 40, 100, 0.025) !important;
}


/* Location icon circle */
.single-cvd_itinerary .cvd-itinerary-route-context::before {
    content: "" !important;

    position: absolute !important;

    left: 20px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 32px !important;
    height: 32px !important;

    border-radius: 50% !important;

    background:
        #eeeaff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4CF1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E")
        center / 18px 18px
        no-repeat !important;
}


/* Small route/region label */
.single-cvd_itinerary .cvd-itinerary-route-context p:first-child {
    margin: 0 0 3px !important;

    color: #777681 !important;

    font-size: 11px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}


/* Main location */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(2) {
    margin: 0 !important;

    color: #202126 !important;

    font-size: 17px !important;
    line-height: 1.3 !important;

    font-weight: 750 !important;
}


/* Route description */
.single-cvd_itinerary .cvd-itinerary-route-context p:nth-child(3) {
    margin: 4px 0 0 !important;

    color: #6f6e78 !important;

    font-size: 13px !important;
    line-height: 1.45 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .single-cvd_itinerary .cvd-itinerary-facts {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact {
        padding: 15px !important;
        border-bottom: 0 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact strong {
        font-size: 16px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .single-cvd_itinerary .cvd-itinerary-facts {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact {
        padding: 14px 15px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(1),
    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-bottom: 1px solid #eceaf2 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact:nth-child(2) {
        border-right: 0 !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact::before {
        width: 24px !important;
        height: 24px !important;

        background-size: 20px 20px !important;

        margin-bottom: 7px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-fact strong {
        font-size: 16px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-route-context {
        padding: 15px 15px 15px 59px !important;
        min-height: 68px !important;
    }

    .single-cvd_itinerary .cvd-itinerary-route-context::before {
        left: 15px !important;

        width: 30px !important;
        height: 30px !important;

        background-size: 17px 17px !important;
    }

}
.cvd-company-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
/* Homepage company image area */
.home .cvd-platform-company-brand {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f6f6f7 !important;
    overflow: hidden !important;
}

/* Fill entire image area */
.home .cvd-platform-company-brand img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* ============================================================
   FINAL THEME NORMALIZATION
   One predictable button system and stable company-review width.
   Keep this section last so it resolves legacy Additional CSS safely.
   ============================================================ */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Prevent grid/flex children and long review content from widening the page. */
.cvd-company-page,
.cvd-company-page .cvd-container,
.cvd-company-layout,
.cvd-company-layout > *,
.cvd-company-layout main,
.cvd-company-layout aside,
.cvd-content-card,
.cvd-review-card,
.cvd-review-card-head,
.cvd-review-filters,
.cvd-review-form-wrap {
    min-width: 0 !important;
    max-width: 100%;
}

.cvd-company-page {
    width: 100%;
    overflow-x: clip;
}

/* Fixed two-column company-review layout; avoids flex-basis + gap overflow. */
.cvd-company-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) !important;
    width: 100%;
    gap: clamp(1.5rem, 3vw, 2.125rem) !important;
    align-items: start;
}

.cvd-company-layout main,
.cvd-company-layout aside {
    width: auto !important;
    flex: none !important;
}

.cvd-company-layout aside {
    position: sticky;
    top: calc(var(--cvd-header-h) + 1.5rem);
}

.cvd-company-page img,
.cvd-company-page input,
.cvd-company-page select,
.cvd-company-page textarea {
    max-width: 100%;
}

.cvd-company-page p,
.cvd-company-page a,
.cvd-company-page strong,
.cvd-company-page span {
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .cvd-company-layout {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .cvd-company-layout aside {
        position: static;
        width: 100% !important;
    }
}

/* Standard controls: charcoal at rest, purple on hover/focus. */
.cvd-btn-primary,
.cvd-btn-secondary,
.cvd-review-filters button,
button.cvd-btn:not(.cvd-btn-accent):not(.cvd-btn-white),
input[type="submit"].cvd-btn {
    background: var(--cvd-black) !important;
    border-color: var(--cvd-black) !important;
    color: var(--cvd-white) !important;
}

.cvd-btn-primary:hover,
.cvd-btn-primary:focus-visible,
.cvd-btn-secondary:hover,
.cvd-btn-secondary:focus-visible,
.cvd-review-filters button:hover,
.cvd-review-filters button:focus-visible,
button.cvd-btn:not(.cvd-btn-accent):not(.cvd-btn-white):hover,
button.cvd-btn:not(.cvd-btn-accent):not(.cvd-btn-white):focus-visible,
input[type="submit"].cvd-btn:hover,
input[type="submit"].cvd-btn:focus-visible {
    background: var(--cvd-brand) !important;
    border-color: var(--cvd-brand) !important;
    color: var(--cvd-white) !important;
    box-shadow: 0 6px 20px rgba(101, 72, 232, 0.28);
}

/* Major conversion areas retain the brand treatment. */
.cvd-editorial-hero .cvd-btn-primary,
.cvd-itinerary-archive-hero .cvd-btn-primary,
.cvd-simple-hero .cvd-btn-primary,
.cvd-content-cta .cvd-btn-primary,
.cvd-newsletter .cvd-btn-primary,
.cvd-newsletter-cta .cvd-btn-primary,
.cvd-hero .cvd-btn-primary,
.cvd-btn-accent {
    background: var(--cvd-brand) !important;
    border-color: var(--cvd-brand) !important;
    color: var(--cvd-white) !important;
}

.cvd-editorial-hero .cvd-btn-primary:hover,
.cvd-editorial-hero .cvd-btn-primary:focus-visible,
.cvd-itinerary-archive-hero .cvd-btn-primary:hover,
.cvd-itinerary-archive-hero .cvd-btn-primary:focus-visible,
.cvd-simple-hero .cvd-btn-primary:hover,
.cvd-simple-hero .cvd-btn-primary:focus-visible,
.cvd-content-cta .cvd-btn-primary:hover,
.cvd-content-cta .cvd-btn-primary:focus-visible,
.cvd-newsletter .cvd-btn-primary:hover,
.cvd-newsletter .cvd-btn-primary:focus-visible,
.cvd-newsletter-cta .cvd-btn-primary:hover,
.cvd-newsletter-cta .cvd-btn-primary:focus-visible,
.cvd-hero .cvd-btn-primary:hover,
.cvd-hero .cvd-btn-primary:focus-visible,
.cvd-btn-accent:hover,
.cvd-btn-accent:focus-visible {
    background: var(--cvd-brand-dark) !important;
    border-color: var(--cvd-brand-dark) !important;
    color: var(--cvd-white) !important;
}

/* ============================================================
   ITINERARY VISITOR RATINGS
   ============================================================ */
.cvd-itinerary-rating {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 2rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--cvd-purple-line);
    border-radius: var(--cvd-radius);
    background: linear-gradient(135deg, var(--cvd-purple-soft), #fff 72%);
}

.cvd-itinerary-rating h2 {
    margin: 0.2rem 0 0.55rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.cvd-itinerary-rating-score {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.cvd-itinerary-rating-score strong {
    color: var(--cvd-gray-800);
    font: 800 1.5rem/1 var(--cvd-font-heading);
}

.cvd-itinerary-rating-score > span {
    color: var(--cvd-brand);
    font-size: 1.25rem;
}

.cvd-itinerary-rating-score small {
    margin-left: 0.25rem;
    color: var(--cvd-text-muted);
}

.cvd-itinerary-rating-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.cvd-itinerary-rating-form fieldset {
    min-width: 0;
    border: 0;
}

.cvd-itinerary-rating-form legend {
    margin-bottom: 0.3rem;
    color: var(--cvd-text-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.cvd-itinerary-star-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.cvd-itinerary-star-input input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cvd-itinerary-star-input label {
    padding: 0 0.12rem;
    color: #cfd1d6;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--cvd-transition), transform var(--cvd-transition);
}

.cvd-itinerary-star-input label:hover,
.cvd-itinerary-star-input label:hover ~ label,
.cvd-itinerary-star-input input:checked ~ label {
    color: var(--cvd-brand);
}

.cvd-itinerary-star-input input:focus-visible + label {
    border-radius: 4px;
    outline: 3px solid rgba(101, 72, 232, 0.25);
    outline-offset: 2px;
}

.cvd-itinerary-star-input label:hover {
    transform: translateY(-2px);
}

.cvd-rating-notice {
    margin: 0;
    padding: 0.7rem 0.9rem;
    border-radius: var(--cvd-radius-sm);
    background: var(--cvd-gray-100);
    color: var(--cvd-text-soft);
    font-weight: 600;
}

.cvd-rating-notice.is-success {
    background: var(--cvd-purple-soft);
    color: var(--cvd-brand-dark);
}

.cvd-rating-notice.is-error {
    margin-bottom: 0.6rem;
    background: #fff0f0;
    color: #922;
}

@media (max-width: 760px) {
    .cvd-itinerary-rating {
        grid-template-columns: minmax(0, 1fr);
    }

    .cvd-itinerary-rating-form {
        align-items: flex-start;
        flex-direction: column;
    }

    .cvd-itinerary-rating-form .cvd-btn {
        width: 100%;
    }
}

/* Compact rating card when placed in the itinerary sidebar. */
.cvd-itinerary-sidebar .cvd-itinerary-rating {
    display: block;
    width: 100%;
    margin: 1.25rem 0 0;
    padding: 1.25rem;
}

.cvd-itinerary-sidebar .cvd-itinerary-rating h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.65rem;
}

.cvd-itinerary-sidebar .cvd-itinerary-rating-action {
    margin-top: 1rem;
}

.cvd-itinerary-sidebar .cvd-itinerary-rating-form {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
}

.cvd-itinerary-sidebar .cvd-itinerary-rating-form .cvd-btn {
    width: 100%;
}

.cvd-itinerary-sidebar .cvd-rating-notice {
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Editable multi-stop route: Melbourne → Sydney → Perth. */
.single-cvd_itinerary .cvd-itinerary-route-stops {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 0.7rem;
    padding: 0;
    list-style: none;
}

.single-cvd_itinerary .cvd-itinerary-route-stops li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--cvd-gray-800) !important;
    font-family: var(--cvd-font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 750;
    line-height: 1.35;
}

.single-cvd_itinerary .cvd-itinerary-route-stops li > span:first-child {
    padding: 0.38rem 0.65rem;
    border: 1px solid var(--cvd-purple-line);
    border-radius: var(--cvd-radius-full);
    background: #fff;
}

.single-cvd_itinerary .cvd-itinerary-route-stops .cvd-route-arrow {
    color: var(--cvd-brand) !important;
    font-size: 1.25em;
    font-weight: 800;
}

@media (max-width: 600px) {
    .single-cvd_itinerary .cvd-itinerary-route-stops {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-cvd_itinerary .cvd-itinerary-route-stops li {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
    }

    .single-cvd_itinerary .cvd-itinerary-route-stops .cvd-route-arrow {
        margin-left: 0.8rem;
        transform: rotate(90deg);
    }
}

/* HEADER LOGO — responsive uploaded wordmark */
.cvd-platform-header .cvd-logo {
  display: flex !important;
  align-items: center !important;
  width: 220px !important;
  height: 56px !important;
  flex: 0 0 220px !important;
  overflow: hidden !important;
}

.cvd-platform-header .cvd-header-logo {
  display: block !important;
  width: 220px !important;
  max-width: none !important;
  height: auto !important;
  flex: 0 0 auto !important;
}

@media (max-width: 600px) {
  .cvd-platform-header .cvd-logo {
    width: 170px !important;
    height: 44px !important;
    flex-basis: 170px !important;
  }
  .cvd-platform-header .cvd-header-logo {
    width: 170px !important;
  }
}

/* CAMPERVAN FINDER — interactive experience */
body.page-id-437 {
  background: #f5f6f8;
}

.page-id-437 .cvd-editorial-page {
  max-width: 1120px;
}

.cvd-finder {
  position: relative;
  overflow: hidden;
  margin: 24px auto 48px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #f3f4f6;
  color: #202124;
}

.cvd-finder::before,
.cvd-finder::after {
  display: none !important;
}

.cvd-finder__intro,
.cvd-finder__quiz,
.cvd-finder__results {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #e3e5e8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 28, 35, 0.07);
  backdrop-filter: none;
}

.cvd-finder__intro {
  text-align: left;
}

.cvd-finder__intro > * {
  max-width: 760px;
}

.cvd-finder__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #ded9f4;
  border-radius: 999px;
  background: #f6f3ff;
  color: #5d47b8;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cvd-finder__intro h2 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #17181b;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.cvd-finder__intro p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #5b6069;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.cvd-finder__intro p::after {
  display: block;
  margin-top: 18px;
  color: #71757d;
  content: "9 questions  ·  About 2 minutes  ·  Personalised match";
  font-size: 0.88rem;
  font-weight: 600;
}

.cvd-finder .cvd-btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 720;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cvd-finder .cvd-btn--primary {
  border: 1px solid #6548e8;
  background: #6548e8;
  color: #fff;
  box-shadow: 0 6px 14px rgba(101, 72, 232, 0.2);
}

.cvd-finder .cvd-btn--primary:hover,
.cvd-finder .cvd-btn--primary:focus-visible {
  border-color: #5539d5;
  background: #5539d5;
  box-shadow: 0 8px 18px rgba(101, 72, 232, 0.24);
  transform: translateY(-1px);
}

.cvd-finder__topbar {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.cvd-back {
  color: #525760;
  font-weight: 700;
}

.cvd-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #ececf0;
}

.cvd-progress span {
  height: 100%;
  border-radius: inherit;
  background: #6548e8;
  box-shadow: none;
  transition: width 260ms ease;
}

.cvd-progress-text {
  color: #747982;
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.cvd-step {
  animation: cvdFinderFade 180ms ease-out both;
}

@keyframes cvdFinderFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.cvd-step h3 {
  margin: 0 0 20px;
  color: #1c1d20;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.cvd-options {
  gap: 12px;
}

.cvd-options label > span {
  min-height: 58px;
  padding: 15px 17px;
  border: 1px solid #dfe1e5;
  border-radius: 13px;
  background: #fff;
  color: #30333a;
  box-shadow: none;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.cvd-options label:hover > span {
  border-color: #bcb4de;
  background: #faf9ff;
  box-shadow: none;
  transform: none;
}

.cvd-options input:checked + span {
  border-color: #6548e8;
  background: #f4f1ff;
  color: #4933ac;
  box-shadow: 0 0 0 2px rgba(101, 72, 232, 0.13);
  transform: none;
}

.cvd-counter-card {
  border: 1px solid #dfe1e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.cvd-counter button {
  border-radius: 10px;
  background: #f1f2f4;
  color: #34373d;
  transition: background-color 150ms ease;
}

.cvd-counter button:hover {
  background: #e6e7eb;
  transform: none;
}

.cvd-info {
  border: 1px solid #e3e5e8;
  border-radius: 13px;
  background: #f7f8fa;
  color: #555b64;
}

.cvd-step-actions {
  margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .cvd-step,
  .cvd-finder *,
  .cvd-finder *::before,
  .cvd-finder *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 600px) {
  body.page-id-437 {
    background: #fff;
  }

  .page-id-437 .cvd-breadcrumbs {
    display: none;
  }

  .page-id-437 #cvd-main,
  .page-id-437 .cvd-editorial-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .page-id-437 article {
    margin: 0;
  }

  .cvd-finder {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .cvd-finder__intro,
  .cvd-finder__quiz,
  .cvd-finder__results {
    width: 100%;
    margin: 0;
    padding: 26px 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .cvd-finder__intro {
    min-height: calc(100svh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cvd-finder__intro h2 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .cvd-finder__intro p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cvd-finder__intro .cvd-btn {
    width: 100%;
    margin-top: 4px;
  }

  .cvd-finder__quiz {
    min-height: calc(100svh - 104px);
    padding: 0 16px 18px;
  }

  .cvd-finder__topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    margin: 0 -16px 0;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #ececef;
    background: rgba(255, 255, 255, 0.97);
  }

  .cvd-finder__topbar .cvd-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .cvd-progress-text {
    justify-self: end;
  }

  .cvd-step {
    padding-top: 24px;
  }

  .cvd-step h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
  }

  .cvd-options,
  .cvd-counter-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .cvd-options label > span {
    min-height: 60px;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .cvd-counter-card {
    padding: 16px;
    border-radius: 12px;
  }

  .cvd-step-actions {
    position: sticky;
    bottom: 0;
    z-index: 18;
    margin: 24px -16px -18px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #ececef;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 22px rgba(24, 28, 35, 0.06);
  }

  .cvd-step-actions .cvd-btn,
  .cvd-finder__results .cvd-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }
}

/* Reusable Classic CMS card sections. */
.cvd-reusable-card-section {
  width: 100%;
}

.cvd-reusable-card-intro {
  max-width: 760px;
  margin: -0.5rem 0 1.5rem;
  color: var(--cvd-text-soft);
}

.cvd-reusable-card-grid {
  grid-template-columns: repeat(var(--cvd-card-columns, 2), minmax(0, 1fr)) !important;
}

.cvd-reusable-card-grid .cvd-platform-country-card {
  position: relative;
}

.cvd-reusable-card-grid .cvd-card-span-2 { grid-column: span 2; }
.cvd-reusable-card-grid .cvd-card-span-3 { grid-column: span 3; }
.cvd-reusable-card-grid .cvd-card-span-4 { grid-column: span 4; }
.cvd-reusable-card-grid .cvd-card-span-5 { grid-column: span 5; }
.cvd-reusable-card-grid .cvd-card-span-6 { grid-column: span 6; }

.cvd-card-click-target {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.cvd-card-click-target:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
  box-shadow: 0 0 0 5px var(--cvd-brand);
}

.cvd-reusable-card-grid .cvd-platform-country-shade {
  z-index: 1;
}

.cvd-reusable-card-grid .cvd-platform-country-content {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.cvd-reusable-card-grid .cvd-platform-country-content a {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.cvd-reusable-card-grid .cvd-platform-country-content h3 a {
  color: inherit;
}

.cvd-reusable-card-grid .cvd-platform-country-content h3 a:hover,
.cvd-reusable-card-grid .cvd-platform-country-content h3 a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 900px) {
  .cvd-reusable-card-grid {
    grid-template-columns: repeat(var(--cvd-card-columns-tablet, 2), minmax(0, 1fr)) !important;
  }

  .cvd-reusable-card-grid > .cvd-platform-country-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .cvd-reusable-card-grid {
    grid-template-columns: repeat(var(--cvd-card-columns-mobile, 1), minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   CAMPERVANDEAL PURPLE BRAND HEADER
   ============================================================ */
#cvd-header.cvd-platform-header {
  height: 72px;
  border-bottom: 1px solid rgba(49, 31, 118, .36);
  background: var(--cvd-header-bg, var(--cvd-brand, #6548e8));
  color: var(--cvd-header-text, #fff);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#cvd-header.cvd-platform-header.scrolled {
  border-bottom-color: rgba(35, 21, 92, .5);
  box-shadow: 0 7px 20px rgba(34, 23, 83, .16);
}
.cvd-platform-header .cvd-header-inner { min-height: 72px; }
.cvd-platform-header .cvd-logo { height: 54px !important; }
.cvd-platform-header .cvd-header-logo {
  filter: brightness(0) invert(1);
  opacity: .98;
}
cvd-platform-header .cvd-header-wordmark.card-section{color:var(--cvd-header-text,#fff);font-family:var(--cvd-font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.02em;white-space:nowrap}
.cvd-platform-header .cvd-platform-nav {
  justify-content: center;
  gap: .25rem;
  margin-left: 1rem;
}
.cvd-platform-header .cvd-nav-item,
.cvd-platform-header .cvd-explore > summary {
  border: 0;
  background: transparent;
  color: var(--cvd-header-text, #fff);
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}
.cvd-platform-header .cvd-explore > summary::-webkit-details-marker { display: none; }
.cvd-platform-header .cvd-nav-item:hover,
.cvd-platform-header .cvd-nav-item.active,
.cvd-platform-header .cvd-explore[open] > summary {
  background: var(--cvd-header-hover, #806cf0);
  color: #fff;
}
.cvd-platform-header .cvd-explore { position: relative; }
.cvd-platform-header .cvd-explore > summary span { margin-left: .2rem; font-size: .78rem; }
.cvd-platform-header .cvd-explore[open] > summary span { display: inline-block; transform: rotate(180deg); }
.cvd-explore-menu {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 14px);
  left: -185px;
  display: grid;
  grid-template-columns: repeat(3, minmax(205px, 1fr));
  gap: 1.5rem;
  width: min(760px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid #e2e5ea;
  border-radius: 16px;
  background: #fff;
  color: #172033;
  box-shadow: 0 18px 38px rgba(20, 24, 40, .14);
}
.cvd-explore-heading {
  display: block;
  margin: 0 0 8px;
  color: var(--cvd-header-dropdown-accent, var(--cvd-brand, #6548e8));
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cvd-explore-menu a {
  display: block;
  margin: 2px 0;
  padding: 10px;
  border-radius: 10px;
  color: #273044;
  text-decoration: none;
}
.cvd-explore-menu a:hover { background: #f6f3ff; color: var(--cvd-header-dropdown-accent, #4f36bd); }
.cvd-explore-menu strong { display: block; font-size: .92rem; }
.cvd-explore-menu small { display: block; margin-top: 3px; color: #707989; font-size: .76rem; line-height: 1.4; }
.cvd-platform-header .cvd-header-actions { gap: .55rem; }
.cvd-platform-header .cvd-header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 11px;
  color: #fff;
  text-decoration: none;
}
.cvd-platform-header .cvd-header-search:hover { background: var(--cvd-header-hover, #806cf0); }
.cvd-platform-header .cvd-header-search svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.cvd-platform-header .cvd-header-search span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); }
.cvd-platform-header .cvd-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 11px;
  background: var(--cvd-header-cta-bg, #fff);
  color: var(--cvd-header-cta-text, var(--cvd-brand, #6548e8));
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.cvd-platform-header .cvd-header-cta:hover { background: rgba(255,255,255,.9); box-shadow: 0 4px 12px rgba(36,22,90,.15); }
.cvd-platform-header .cvd-mobile-toggle {
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
}
.cvd-platform-header .cvd-mobile-toggle:hover { background: var(--cvd-header-hover, #806cf0); }
.cvd-mobile-menu {
  border-top: 1px solid #e1e4e9;
  background: #fff;
  color: #263044;
}
.cvd-mobile-menu-heading {
  display: block;
  padding: 14px 12px 6px;
  color: var(--cvd-brand, #6548e8);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cvd-mobile-menu .cvd-mobile-nav-item { color: #30394a; }
.cvd-mobile-menu .cvd-mobile-nav-item:hover { background: #f6f3ff; color: #4f36bd; }
.cvd-mobile-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 18px 0 0;
  border-radius: 12px;
  background: var(--cvd-header-cta-bg, #fff);
  color: var(--cvd-header-cta-text, var(--cvd-brand, #6548e8));
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 1023px) {
  #cvd-header.cvd-platform-header { height: 64px; }
  .cvd-platform-header .cvd-header-inner { min-height: 64px; gap: .5rem; }
  .cvd-platform-header .cvd-logo { width: min(170px, calc(100vw - 138px)) !important; height: 44px !important; flex-basis: min(170px, calc(100vw - 138px)) !important; }
  .cvd-platform-header .cvd-header-logo { width: 170px !important; }
  .cvd-platform-header .cvd-header-search { display: inline-flex !important; width: 40px; height: 40px; }
  .cvd-mobile-menu { top: 64px; padding: 12px 16px 28px; }
}

/* ============================================================
   HOMEPAGE — COMPACT DESKTOP RHYTHM
   ============================================================ */
@media (min-width: 761px) {
  .home .cvd-platform-hero { padding-top: 18px; }
  .home .cvd-platform-hero-grid { min-height: 420px; }
  .home .cvd-platform-hero-media { min-height: 360px; }
  .home .cvd-platform-hero-copy { padding-top: 0; padding-bottom: 0; }
  .home .cvd-platform-section { padding

/* ===== CARD SECTIONS CAROUSEL ===== */

/* Container for card sections carousel */
.cvd-card-sections-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  width: 100%;
  scroll-snap-type: x mandatory;
}

/* Individual card items in carousel */
.cvd-card-sections-container .card-item {
  flex: 0 0 auto;
  min-width: 300px;
  width: 300px;
  scroll-snap-align: start;
}

/* Wrapper for card section display */
.card-section-display {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1.5rem;
}

.card-section-display > * {
  flex: 0 0 auto;
  min-width: 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Hide scrollbar for cleaner look (optional) */
.cvd-card-sections-container::-webkit-scrollbar,
.card-section-display::-webkit-scrollbar {
  height: 8px;
}

.cvd-card-sections-container::-webkit-scrollbar-track,
.card-section-display::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.cvd-card-sections-container::-webkit-scrollbar-thumb,
.card-section-display::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.cvd-card-sections-container::-webkit-scrollbar-thumb:hover,
.card-section-display::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cvd-card-sections-container .card-item,
  .card-section-display > * {
    min-width: 240px;
    width: 240px;
  }
}

@media (max-width: 480px) {
  .cvd-card-sections-container,
  .card-section-display {
    gap: 1rem;
    padding: 1rem;
  }
  
  .cvd-card-sections-container .card-item,
  .card-section-display > * {
    min-width: 200px;
    width: 200px;
  }
}-top: 52px; padding-bottom: 52px; }
  .home .cvd-platform-roadtrips { padding-top: 52px; padding-bottom: 24px; }
  .home .cvd-reusable-card-section { padding-top: 24px; }
  .home .cvd-home-custom-section { padding-top: 48px; padding-bottom: 48px; }
  .home .cvd-home-custom-inner { gap: 22px; }
  .home .cvd-platform-heading { margin-bottom: 24px; }
  .home .cvd-platform-explore-grid,
  .home .cvd-platform-slider { gap: 16px; }
  .home .cvd-platform-explore-card { padding: 20px; }
  .home .cvd-home-seo-content { padding-top: 44px; padding-bottom: 44px; }
  .home .cvd-home-seo-content .cvd-editorial-page { padding-top: 0; padding-bottom: 0; }
  .home .cvd-platform-editorial-grid { gap: 30px; }
}
