@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --vrp-bg: #f8fafc;
  --vrp-text: #0f172a;
  --vrp-accent: #0ea5e9;
  --vrp-accent-dark: #0284c7;
  --vrp-success: #10b981;
  --vrp-panel-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--vrp-bg);
  color: var(--vrp-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

input,
select,
textarea,
button {
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

main section[id] {
  scroll-margin-top: 7rem;
}

.high-contrast {
  filter: contrast(150%);
}

.large-text {
  font-size: 1.12em !important;
}

.large-text * {
  font-size: inherit !important;
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

*:focus {
  outline: 2px solid var(--vrp-accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  animation: marquee 24s linear infinite;
}

.vrp-floating {
  position: fixed;
  bottom: 1rem;
  z-index: 60;
}

.vrp-floating-left {
  left: 1rem;
}

.vrp-floating-right {
  right: 1rem;
}

.vrp-floating-button {
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  box-shadow: var(--vrp-panel-shadow);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vrp-floating-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.vrp-floating-button--whatsapp {
  background: linear-gradient(135deg, #0f766e, #10b981);
}

.vrp-floating-icon {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
}

.vrp-header-wishlist-button {
  min-width: 3.75rem;
  padding-inline: 0.75rem;
  overflow: visible;
}

.vrp-header-wishlist-button.has-items {
  border-color: rgba(14, 165, 233, 0.28);
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  color: var(--vrp-accent-dark);
}

.vrp-header-heart {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  color: currentColor;
}

.vrp-header-language {
  min-height: 2.75rem;
  justify-content: center;
}

.vrp-header-language select {
  min-height: 2.75rem;
}

.vrp-header-wishlist-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--vrp-accent), var(--vrp-success));
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.vrp-header-menu summary {
  list-style: none;
}

.vrp-header-menu summary::-webkit-details-marker {
  display: none;
}

.vrp-header-menu-panel {
  z-index: 45;
}

.vrp-header-menu-button {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.vrp-header-menu-button > svg {
  width: 1.35rem;
  height: 1.35rem;
}

.vrp-header-menu-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: grid;
  width: min(19rem, calc(100vw - 2rem));
  gap: 0.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  padding: 0.75rem;
  box-shadow: var(--vrp-panel-shadow);
}

.vrp-header-menu-panel > a {
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.vrp-header-menu-panel > a:hover {
  background: #f0f9ff;
  color: #0369a1;
}

.vrp-mobile-menu-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  border-top: 1px solid #e2e8f0;
  padding: 0.75rem 0.5rem 0.15rem;
}

.vrp-mobile-menu-tools button,
.vrp-mobile-menu-tools select {
  border: 1px solid #e2e8f0;
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.6rem 0.75rem;
  color: #334155;
  font-weight: 700;
}

.vrp-mobile-menu-tools button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vrp-mobile-menu-tools button svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
}

.vrp-header-menu[open] .vrp-header-menu-chevron {
  transform: rotate(180deg);
}

.vrp-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  padding: 1rem;
}

.vrp-panel,
.vrp-chat {
  width: min(100%, 24rem);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--vrp-panel-shadow);
}

.vrp-panel-header,
.vrp-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.vrp-panel-header h2,
.vrp-chat-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.vrp-chat-subtitle {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #64748b;
}

.vrp-panel-close {
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.vrp-panel-options {
  padding: 1.25rem;
}

.vrp-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.vrp-switch:last-child {
  border-bottom: none;
}

.vrp-switch input {
  accent-color: var(--vrp-accent);
  width: 1.15rem;
  height: 1.15rem;
}

.vrp-panel-reset {
  width: calc(100% - 2.5rem);
  margin: 0 1.25rem 1.25rem;
  border: none;
  border-radius: 9999px;
  background: #e2e8f0;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
}

.vrp-chat {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 70;
  overflow: hidden;
}

.vrp-chat-header {
  padding-bottom: 1rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
}

.vrp-chat-header .vrp-chat-title,
.vrp-chat-header .vrp-chat-subtitle,
.vrp-chat-header .vrp-panel-close {
  color: #fff;
}

.vrp-chat-body {
  padding: 1.25rem;
}

.vrp-chat-intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

.vrp-chat-quick {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.vrp-chat-quick button {
  border: none;
  border-radius: 1rem;
  background: #eff6ff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0369a1;
  cursor: pointer;
}

.vrp-chat-compose {
  margin-top: 1rem;
}

.vrp-chat-compose textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font: inherit;
  resize: vertical;
}

.vrp-chat-send {
  width: 100%;
  margin-top: 0.75rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0f766e, #10b981);
  padding: 0.9rem 1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

.vrp-package-card {
  position: relative;
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 29rem;
}

.vrp-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}

.vrp-card-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: calc(100% - 8rem);
}

.vrp-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  z-index: 31;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.45);
  padding: 0.55rem 0.85rem;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vrp-card-action:hover {
  transform: translateY(-1px);
}

.vrp-card-action-heart {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.35);
  transform: translateY(-1px);
  transition: transform 0.2s ease, color 0.2s ease;
}

.vrp-card-action--wishlist {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(15, 23, 42, 0.72);
}

.vrp-card-action--wishlist:hover .vrp-card-action-heart {
  transform: scale(1.08);
}

.vrp-card-action.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(14, 165, 233, 0.92);
}

.vrp-card-action--wishlist.is-active {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.96), rgba(16, 185, 129, 0.94));
}

.vrp-card-action--wishlist.is-active .vrp-card-action-heart {
  color: #fff;
}

.vrp-card-action--compare.is-active {
  background: rgba(16, 185, 129, 0.92);
}

.vrp-affiliate-panel {
  width: min(100%, 70rem);
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.vrp-package-detail-panel {
  width: min(100%, 56rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-radius: 0.75rem;
}

.vrp-package-detail-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.vrp-package-detail-media {
  padding: 0;
}

.vrp-package-detail-image-shell {
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
}

.vrp-package-detail-image {
  display: block;
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.vrp-package-detail-video:not(.hidden) {
  background: #020617;
  border: 0;
  display: block;
  height: 24rem;
  width: 100%;
}

.vrp-package-detail-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 700;
}

.vrp-package-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vrp-package-gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.03);
}

.vrp-package-gallery-nav--prev {
  left: 1rem;
}

.vrp-package-gallery-nav--next {
  right: 1rem;
}

.vrp-package-gallery-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.68);
  padding: 0.45rem 0.8rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.vrp-package-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.vrp-package-gallery-thumb {
  flex: 0 0 auto;
  width: 5rem;
  height: 3.75rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  background: #e2e8f0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.vrp-package-gallery-play {
  align-items: center;
  background: rgba(15, 23, 42, 0.78);
  border-radius: 9999px;
  color: #fff;
  display: flex;
  font-size: 0.85rem;
  height: 2rem;
  justify-content: center;
  left: 50%;
  padding-left: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
}

.vrp-package-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vrp-package-gallery-thumb.is-active {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.vrp-package-gallery-thumb:hover {
  transform: translateY(-1px);
}

.vrp-package-detail-body {
  padding: 1.5rem;
}

.vrp-package-detail-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vrp-package-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  min-width: 0;
}

.vrp-package-detail-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.vrp-package-detail-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.vrp-package-detail-fact-label {
  font-weight: 600;
  color: #111827;
}

.vrp-package-detail-fact-value {
  font-weight: 500;
  color: #111827;
}

.vrp-package-detail-fact-meta {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}

.vrp-package-detail-price {
  flex: 0 0 auto;
  text-align: right;
}

.vrp-package-detail-price-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.vrp-package-detail-price-original {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
}

.vrp-package-detail-price-discount {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vrp-package-detail-price strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #16a34a;
}

.vrp-package-detail-price span {
  display: block;
  margin-top: 0.15rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.vrp-package-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.vrp-package-detail-section {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.25rem;
}

.vrp-package-detail-section + .vrp-package-detail-section {
  margin-top: 1.5rem;
}

.vrp-package-detail-section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.vrp-package-detail-section p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.vrp-package-detail-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vrp-package-detail-amenity {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 0.45rem;
}

.vrp-package-detail-amenity.is-available {
  background: #ecfdf5;
  color: #047857;
}

.vrp-package-detail-amenity.is-unavailable {
  background: #f8fafc;
  color: #64748b;
  text-decoration: line-through;
}

.vrp-package-detail-map {
  min-height: 18rem;
  border: 1px solid #dbeafe;
  border-radius: 0.9rem;
  background: #e0f2fe;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.vrp-package-detail-location-placeholder {
  min-height: 0;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 1.5rem;
  text-align: center;
}

.vrp-package-detail-price-basis {
  margin-bottom: 1rem;
  border-left: 4px solid #f59e0b;
  border-radius: 0.5rem;
  background: #fffbeb;
  padding: 0.8rem 1rem;
  color: #78350f;
  font-weight: 600;
}

.vrp-package-detail-value-missing {
  border-radius: 0.75rem;
  background: #f1f5f9;
  padding: 1rem;
  color: #475569;
}

.vrp-package-detail-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vrp-package-detail-value-grid h4,
.vrp-package-detail-important h4 {
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: #0f172a;
}

.vrp-package-detail-value-list,
.vrp-package-detail-important ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vrp-package-detail-value-list li,
.vrp-package-detail-important li {
  position: relative;
  padding-left: 1.45rem;
  color: #334155;
}

.vrp-package-detail-value-list li::before,
.vrp-package-detail-important li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}

.vrp-package-detail-value-list.is-included li::before { content: "✓"; color: #15803d; }
.vrp-package-detail-value-list.is-excluded li::before { content: "×"; color: #b91c1c; }
.vrp-package-detail-important li::before { content: "!"; color: #d97706; }

.vrp-package-detail-important {
  margin-top: 1rem;
  border-radius: 0.75rem;
  background: #fff7ed;
  padding: 1rem;
}

.vrp-package-detail-source-note {
  margin-top: 1rem;
  color: #64748b;
  font-size: 0.8rem;
}

.vrp-package-detail-location-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  margin-top: 0;
  padding: 0.55rem 1rem;
  border: 1px solid #dbeafe;
  border-radius: 9999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 600;
}

.vrp-package-detail-location-coordinates {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
  color: #475569;
  font-size: 0.82rem;
}

.vrp-package-detail-location-coordinates strong {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
}

.vrp-package-detail-score-list {
  display: grid;
  gap: 0.85rem;
}

.vrp-package-detail-score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.75rem;
}

.vrp-package-detail-score-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vrp-package-detail-score-item span {
  color: #374151;
  font-size: 0.95rem;
}

.vrp-package-detail-score-item strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
}

.vrp-package-detail-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.vrp-package-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.75rem;
}

.vrp-package-detail-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vrp-package-detail-list dt {
  color: #6b7280;
  font-size: 0.88rem;
  font-weight: 500;
}

.vrp-package-detail-list dd {
  margin: 0;
  text-align: right;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
}

.vrp-package-detail-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.vrp-package-detail-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: 13rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.75rem;
  border-radius: 0.5rem;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vrp-package-detail-book:hover {
  background: #15803d;
  transform: translateY(-1px);
}

.vrp-package-detail-redirect-note {
  margin: 0;
  max-width: 32rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.vrp-package-detail-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  background: #e5e7eb;
  color: #4b5563;
  font-weight: 600;
}

.vrp-affiliate-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.25rem;
}

.vrp-affiliate-chip {
  border: 1px solid #dbeafe;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  padding: 0.9rem 1rem;
}

.vrp-affiliate-chip span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.vrp-affiliate-chip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.vrp-affiliate-section {
  padding: 0 1.25rem 1.25rem;
}

.vrp-affiliate-section-header {
  margin-bottom: 0.8rem;
}

.vrp-affiliate-section-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

[data-saved-list] {
  display: grid;
  gap: 0.9rem;
}

.vrp-saved-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 1.25rem;
  background: #f8fafc;
  padding: 1rem 1.1rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.vrp-saved-item {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background: #fff;
  padding: 0.9rem;
}

.vrp-saved-thumb,
.vrp-saved-thumb img,
.vrp-saved-thumb-placeholder {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 1rem;
}

.vrp-saved-thumb {
  overflow: hidden;
  background: #e2e8f0;
}

.vrp-saved-thumb img {
  display: block;
  object-fit: cover;
}

.vrp-saved-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

.vrp-saved-body {
  min-width: 0;
}

.vrp-saved-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.vrp-saved-title {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.vrp-saved-destination {
  margin: 0.3rem 0 0;
  color: #475569;
  font-size: 0.9rem;
}

.vrp-saved-tags,
.vrp-saved-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.vrp-saved-tags span,
.vrp-saved-stats span {
  border-radius: 9999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.vrp-saved-tags span {
  background: #eff6ff;
  color: #0369a1;
}

.vrp-saved-stats span {
  background: #f8fafc;
  color: #334155;
}

.vrp-saved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.vrp-saved-visit,
.vrp-saved-compare,
.vrp-saved-remove {
  border: none;
  border-radius: 9999px;
  padding: 0.7rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vrp-saved-visit {
  background: #0f172a;
  color: #fff;
}

.vrp-saved-compare {
  background: #eff6ff;
  color: #0369a1;
}

.vrp-saved-compare.is-active {
  background: #dcfce7;
  color: #166534;
}

.vrp-saved-remove {
  background: #e2e8f0;
  color: #0f172a;
}

.vrp-compare-bar {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 65;
  width: min(calc(100% - 2rem), 52rem);
  transform: translateX(-50%);
}

.vrp-compare-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.96);
  padding: 1rem 1.1rem;
  box-shadow: var(--vrp-panel-shadow);
  color: #fff;
}

.vrp-compare-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.vrp-compare-copy {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.vrp-compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vrp-compare-primary,
.vrp-compare-secondary {
  border: none;
  border-radius: 9999px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.vrp-compare-primary {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #fff;
}

.vrp-compare-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hidden {
  display: none !important;
}

#catalog-filter-toggle:checked ~ .vrp-catalog-filters {
  display: block !important;
}

@media (max-width: 768px) {
  .vrp-package-detail-value-grid {
    grid-template-columns: 1fr;
  }

  .vrp-panel,
  .vrp-chat {
    width: min(100%, calc(100vw - 2rem));
  }

  .vrp-chat {
    right: 1rem;
    left: 1rem;
    bottom: 5.25rem;
    width: auto;
  }

  .vrp-card-actions {
    max-width: calc(100% - 2rem);
  }

  .vrp-card-action {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
  }

  .vrp-card-action--wishlist {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }

  .vrp-header-wishlist-button {
    min-width: 3.4rem;
    padding-inline: 0.65rem;
  }

  .vrp-header-wishlist-count {
    min-width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }

  .vrp-package-detail-summary {
    flex-direction: column;
  }

  .vrp-package-detail-price {
    width: 100%;
    text-align: left;
  }

  .vrp-package-detail-grid {
    grid-template-columns: 1fr;
  }

  .vrp-package-detail-image {
    height: 16rem;
  }

  .vrp-package-detail-video:not(.hidden) {
    height: 15rem;
  }

  .vrp-package-detail-body {
    padding: 1rem;
  }

  .vrp-package-detail-header {
    padding: 1rem;
  }

  .vrp-package-detail-header h2 {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 1.1rem;
  }

  .vrp-package-gallery-thumb {
    width: 4.25rem;
    height: 3.25rem;
  }

  .vrp-affiliate-summary {
    grid-template-columns: 1fr;
  }

  .vrp-saved-item {
    grid-template-columns: 1fr;
  }

  .vrp-saved-thumb,
  .vrp-saved-thumb img,
  .vrp-saved-thumb-placeholder {
    width: 100%;
    height: 10rem;
  }

  .vrp-compare-bar {
    width: calc(100% - 1rem);
    bottom: 0.5rem;
  }

  .vrp-compare-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .vrp-floating {
    bottom: 0.65rem;
  }

  .vrp-floating-left {
    left: 0.65rem;
  }

  .vrp-floating-right {
    right: 0.65rem;
  }

  .vrp-floating-button {
    width: 3rem;
    height: 3rem;
    font-size: 0.78rem;
  }
}

.vrp-brand-logo,
.vrp-brand-wordmark {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.vrp-brand-logo {
  max-width: 100%;
  line-height: 1;
  direction: ltr;
  unicode-bidi: isolate;
}

.vrp-brand-wordmark > span {
  flex: 0 0 auto;
}

@media (max-width: 1023px) {
  .vrp-desktop-nav,
  .vrp-desktop-actions {
    display: none !important;
  }

  .vrp-header-menu {
    display: block !important;
  }

  .vrp-header-row {
    justify-content: space-between;
  }

  .vrp-header-logo {
    min-width: 0;
  }

  .vrp-header-logo .vrp-brand-logo {
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }
}

@media (min-width: 1024px) {
  .vrp-header-row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(1rem, 2vw, 2rem);
  }

  .vrp-header-logo,
  .vrp-desktop-nav,
  .vrp-desktop-actions {
    align-self: center;
  }

  .vrp-desktop-nav {
    overflow: visible;
    padding-inline: 0;
  }

  .vrp-desktop-nav-links {
    width: 100%;
    min-width: 0;
    justify-content: space-evenly;
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
  }

  .vrp-desktop-actions {
    min-height: 2.75rem;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .vrp-header-menu {
    display: none !important;
  }

  .vrp-catalog-filters {
    display: block !important;
  }
}

@media (max-width: 390px) {
  .vrp-overlay {
    align-items: stretch;
    padding: 0;
  }

  .vrp-package-detail-panel,
  .vrp-affiliate-panel {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }

  .vrp-card-actions {
    top: 0.65rem;
    right: 0.65rem;
  }
}
@keyframes vrp-continent-map-rotate {
  from { transform: rotateY(0deg) rotateZ(-2deg); }
  to { transform: rotateY(360deg) rotateZ(-2deg); }
}

.vrp-continent-map {
  height: 9rem;
  margin: -0.5rem auto 1rem;
  perspective: 700px;
  width: 9rem;
}

.vrp-continent-map-rotator {
  animation: vrp-continent-map-rotate 14s linear infinite;
  height: 100%;
  transform-style: preserve-3d;
  width: 100%;
}

.vrp-continent-map-crop {
  background: #e0f2fe;
  border: 2px solid #7dd3fc;
  border-radius: 9999px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.vrp-continent-map-crop img {
  filter: invert(54%) sepia(99%) saturate(1775%) hue-rotate(2deg) brightness(101%) contrast(101%);
  max-width: none;
  position: absolute;
}

.vrp-continent-map-crop--europe img { width: 425%; left: -174%; top: 16%; }
.vrp-continent-map-crop--asia img { width: 248%; left: -125%; top: 12%; }
.vrp-continent-map-crop--africa img { width: 368%; left: -141%; top: -43%; }
.vrp-continent-map-crop--americas img { width: 199%; left: -6%; top: 6%; }
.vrp-continent-map-crop--oceania img { width: 614%; left: -461%; top: -149%; }

.vrp-continent-card:nth-child(2) .vrp-continent-map-rotator { animation-delay: -2.8s; }
.vrp-continent-card:nth-child(3) .vrp-continent-map-rotator { animation-delay: -5.6s; }
.vrp-continent-card:nth-child(4) .vrp-continent-map-rotator { animation-delay: -8.4s; }
.vrp-continent-card:nth-child(5) .vrp-continent-map-rotator { animation-delay: -11.2s; }

.vrp-continent-card:hover .vrp-continent-map-rotator { animation-duration: 4s; }

@media (prefers-reduced-motion: reduce) {
  .vrp-continent-map-rotator { animation: none; }
}

@keyframes vrp-hero-cinematic-slide {
  0% {
    opacity: 0;
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  5%, 24% { opacity: 1; }
  29%, 100% {
    opacity: 0;
    transform: scale(1.12) translate3d(-0.5%, -0.4%, 0);
  }
}

@keyframes vrp-hero-celestial-pulse {
  0%, 100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scale(1.12);
  }
}

.vrp-home-hero-media {
  background: #0f3f65;
  isolation: isolate;
}

.vrp-home-hero-image {
  animation: vrp-hero-cinematic-slide 32s ease-in-out infinite;
  opacity: 0;
  transform-origin: 58% 42%;
  will-change: transform;
}

.vrp-home-hero-image:nth-child(1) { animation-delay: -1.6s; }
.vrp-home-hero-image:nth-child(2) { animation-delay: 6.4s; }
.vrp-home-hero-image:nth-child(3) { animation-delay: 14.4s; }
.vrp-home-hero-image:nth-child(4) { animation-delay: 22.4s; }

.vrp-home-hero-celestial-glow {
  animation: vrp-hero-celestial-pulse 8s ease-in-out infinite;
  background:
    radial-gradient(circle, rgba(255, 250, 211, 0.72) 0 5%, rgba(255, 210, 112, 0.28) 17%, rgba(125, 211, 252, 0.08) 34%, transparent 66%);
  border-radius: 50%;
  height: clamp(15rem, 34vw, 34rem);
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  right: clamp(-7rem, -3vw, -1rem);
  top: clamp(-8rem, -7vw, -2rem);
  width: clamp(15rem, 34vw, 34rem);
  will-change: opacity, transform;
  z-index: 1;
}

.vrp-home-hero-vignette {
  background:
    linear-gradient(90deg, rgba(2, 22, 42, 0.54), rgba(2, 22, 42, 0.24) 52%, rgba(2, 22, 42, 0.42)),
    linear-gradient(180deg, rgba(2, 20, 38, 0.2), rgba(2, 20, 38, 0.58));
  z-index: 2;
}

@media (max-width: 640px) {
  .vrp-home-hero-image {
    transform-origin: 62% 40%;
  }

  .vrp-home-hero-celestial-glow {
    opacity: 0.42;
    right: -7rem;
    top: -6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vrp-home-hero-image,
  .vrp-home-hero-celestial-glow {
    animation: none;
  }

  .vrp-home-hero-image {
    opacity: 0;
    transform: scale(1.035);
  }

  .vrp-home-hero-image:first-child {
    opacity: 1;
  }
}

.reduced-motion .vrp-home-hero-image,
.reduced-motion .vrp-home-hero-celestial-glow {
  animation: none;
}

.reduced-motion .vrp-home-hero-image {
  opacity: 0;
}

.reduced-motion .vrp-home-hero-image:first-child {
  opacity: 1;
}
/* Affiliate vouchers and code-free partner promotions */
.vrp-offers-shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.vrp-offers-hero { padding: 4.5rem 0 3.5rem; color: #fff; background: linear-gradient(125deg, #075985, #2563eb 52%, #7c3aed); }
.vrp-offers-eyebrow { margin: 0 0 .8rem; font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #bae6fd; }
.vrp-offers-eyebrow--dark { color: #0369a1; }
.vrp-offers-hero h1 { max-width: 800px; margin: 0; font-size: clamp(2rem, 6vw, 4rem); line-height: 1.05; }
.vrp-offers-hero p:last-child { max-width: 720px; margin: 1.2rem 0 0; color: #e0f2fe; font-size: 1.05rem; line-height: 1.75; }
.vrp-offers-main { padding: 2.5rem 0 5rem; background: #f8fafc; }
.vrp-offers-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) auto auto; gap: 1rem; align-items: end; padding: 1.25rem; border: 1px solid #dbeafe; border-radius: 1rem; background: #fff; box-shadow: 0 12px 35px rgba(15, 23, 42, .06); }
.vrp-offers-filters label span { display: block; margin-bottom: .4rem; color: #334155; font-size: .78rem; font-weight: 800; }
.vrp-offers-filters select { width: 100%; min-height: 46px; padding: 0 .8rem; border: 1px solid #cbd5e1; border-radius: .7rem; background: #fff; color: #0f172a; }
.vrp-offers-filters button, .vrp-offers-filters > a { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 1rem; border-radius: .7rem; font-weight: 800; }
.vrp-offers-filters button { border: 0; color: #fff; background: #2563eb; cursor: pointer; }
.vrp-offers-filters > a { color: #2563eb; border: 1px solid #bfdbfe; background: #eff6ff; }
.vrp-offers-trust { margin: 1.5rem 0 2rem; padding: 1rem 1.2rem; border-left: 4px solid #f59e0b; border-radius: .6rem; color: #78350f; background: #fffbeb; }
.vrp-offers-trust p { margin: .35rem 0 0; line-height: 1.65; }
.vrp-offers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.vrp-offer-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #dbe4f0; border-radius: .9rem; background: #fff; box-shadow: 0 9px 24px rgba(15, 23, 42, .06); }
.vrp-offer-card__top { display: flex; align-items: center; gap: .65rem; padding: .85rem .9rem; border-bottom: 1px solid #e2e8f0; }
.vrp-offer-card__brand { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: .7rem; color: #fff; background: linear-gradient(135deg, #0284c7, #7c3aed); font-size: 1rem; font-weight: 900; }
.vrp-offer-card__brand img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.vrp-offer-card__operator { margin: 0; color: #0f172a; font-weight: 900; }
.vrp-offer-card__type { color: #64748b; font-size: .78rem; font-weight: 700; }
.vrp-offer-card__body { display: flex; flex: 1; flex-direction: column; padding: .95rem .9rem; }
.vrp-offer-card__body h2 { margin: 0; color: #0f172a; font-size: 1rem; line-height: 1.35; }
.vrp-offer-card__body > p { margin: .55rem 0 0; color: #475569; font-size: .88rem; line-height: 1.45; }
.vrp-offer-card__discount { align-self: flex-start; margin-top: .7rem; padding: .28rem .55rem; border-radius: 999px; color: #047857; background: #d1fae5; font-size: .72rem; }
.vrp-offer-card__code { display: flex; align-items: center; justify-content: space-between; gap: .55rem; margin-top: .7rem; padding: .55rem; border: 1px dashed #60a5fa; border-radius: .65rem; background: #eff6ff; }
.vrp-offer-card__code code { overflow-wrap: anywhere; color: #1e3a8a; font-weight: 900; }
.vrp-offer-card__code button { flex: 0 0 auto; border: 0; color: #1d4ed8; background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.vrp-offer-card__facts { display: grid; gap: .4rem; margin: .8rem 0 0; padding-top: .7rem; border-top: 1px solid #e2e8f0; }
.vrp-offer-card__facts div { display: flex; justify-content: space-between; gap: 1rem; }
.vrp-offer-card__facts dt { color: #64748b; font-size: .78rem; }
.vrp-offer-card__facts dd { margin: 0; color: #334155; text-align: right; font-size: .78rem; font-weight: 800; }
.vrp-offer-card__footer { padding: .8rem .9rem; background: #f8fafc; }
.vrp-offer-card__footer p { margin: 0 0 .65rem; color: #64748b; font-size: .68rem; line-height: 1.4; }
.vrp-offer-card__footer a { display: flex; min-height: 40px; align-items: center; justify-content: center; gap: .4rem; border-radius: .65rem; color: #fff; background: #2563eb; font-size: .88rem; font-weight: 900; text-align: center; }
.vrp-offers-empty { padding: 4rem 1.5rem; border: 1px dashed #cbd5e1; border-radius: 1rem; text-align: center; background: #fff; }
.vrp-offers-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.vrp-offers-pagination a, .vrp-offers-pagination span { padding: .65rem .9rem; border: 1px solid #dbeafe; border-radius: .6rem; background: #fff; }
@media (max-width: 1100px) {
  .vrp-offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .vrp-offers-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .vrp-offers-shell { width: min(100% - 1rem, 1180px); }
  .vrp-offers-hero { padding: 3rem 0 2.5rem; }
  .vrp-offers-main { padding-top: 1rem; }
  .vrp-offers-grid, .vrp-offers-filters { grid-template-columns: 1fr; }
  .vrp-offer-card__facts div { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .vrp-offer-card__facts dd { text-align: left; }
}

/* Package comparison */
.vrp-card-action--compare svg { width: 1.15rem; height: 1.15rem; }
.vrp-compare-page { min-height: 70vh; background: #f8fafc; color: #0f172a; }
.vrp-compare-container { width: min(100% - 2rem, 80rem); margin-inline: auto; }
.vrp-compare-hero { padding: 4rem 0 3rem; border-bottom: 1px solid #e2e8f0; background: linear-gradient(135deg, #eff6ff, #fff 48%, #ecfeff); }
.vrp-compare-kicker { margin: 0 0 .75rem; color: #0284c7; font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.vrp-compare-hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; font-weight: 900; }
.vrp-compare-hero p:last-child { max-width: 52rem; margin: 1.25rem 0 0; color: #475569; font-size: 1.05rem; line-height: 1.75; }
.vrp-compare-content { padding-block: 2rem 5rem; }
.vrp-compare-notice { margin: 1rem 0; padding: 1rem 1.25rem; border: 1px solid #fde68a; border-radius: 1rem; background: #fffbeb; color: #92400e; }
.vrp-compare-grid { display: grid; grid-template-columns: repeat(var(--compare-count), minmax(0, 1fr)); gap: 1.25rem; margin-top: 1.5rem; align-items: start; }
.vrp-compare-product { min-width: 0; overflow: hidden; border: 1px solid #dbe4ef; border-radius: 1.5rem; background: #fff; box-shadow: 0 12px 35px rgb(15 23 42 / 8%); }
.vrp-compare-product-media { position: relative; height: 13rem; overflow: hidden; background: linear-gradient(135deg, #082f49, #1d4ed8 55%, #0f766e); }
.vrp-compare-product-media img { width: 100%; height: 100%; object-fit: cover; }
.vrp-compare-product-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: #fff; }
.vrp-compare-product-placeholder svg { width: 3rem; }
.vrp-compare-remove { position: absolute; top: .75rem; right: .75rem; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border: 0; border-radius: 999px; background: rgb(15 23 42 / 82%); color: #fff; font-size: 1.5rem; cursor: pointer; }
.vrp-compare-remove:hover, .vrp-compare-remove:focus-visible { background: #dc2626; }
.vrp-compare-product-body { padding: 1.35rem; }
.vrp-compare-provider { margin: 0 0 .4rem; color: #64748b; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.vrp-compare-product h2 { margin: 0; font-size: 1.25rem; line-height: 1.3; font-weight: 850; }
.vrp-compare-product h2 a { color: inherit; text-decoration: none; }
.vrp-compare-product h2 a:hover { color: #0284c7; }
.vrp-compare-location { margin: .5rem 0 0; color: #64748b; }
.vrp-compare-price { display: grid; gap: .15rem; margin: 1.1rem 0; padding: 1rem; border-radius: 1rem; background: #ecfdf5; }
.vrp-compare-price span { color: #64748b; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.vrp-compare-price strong { color: #047857; font-size: 1.35rem; }
.vrp-compare-price small { color: #475569; line-height: 1.4; }
.vrp-compare-facts { margin: 0; border-top: 1px solid #e2e8f0; }
.vrp-compare-facts div { display: grid; grid-template-columns: minmax(6.5rem, .8fr) 1.2fr; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid #e2e8f0; }
.vrp-compare-facts dt { color: #64748b; font-size: .82rem; font-weight: 700; }
.vrp-compare-facts dd { margin: 0; overflow-wrap: anywhere; font-size: .88rem; font-weight: 700; text-align: right; }
.vrp-compare-list { margin-top: 1.25rem; }
.vrp-compare-list h3 { margin: 0 0 .65rem; font-size: .95rem; }
.vrp-compare-list ul { margin: 0; padding-left: 1.15rem; color: #475569; font-size: .86rem; line-height: 1.65; }
.vrp-compare-list p { color: #94a3b8; }
.vrp-compare-product-actions { display: grid; gap: .65rem; margin-top: 1.5rem; }
.vrp-compare-details, .vrp-compare-book, .vrp-compare-empty a { display: inline-flex; min-height: 2.8rem; align-items: center; justify-content: center; border-radius: 999px; font-size: .88rem; font-weight: 800; text-decoration: none; }
.vrp-compare-details { border: 1px solid #cbd5e1; color: #0f172a; }
.vrp-compare-book, .vrp-compare-empty a { background: #0284c7; color: #fff; }
.vrp-compare-empty { padding: 4rem 1.5rem; text-align: center; }
.vrp-compare-empty h2 { margin: 0; font-size: 1.75rem; }
.vrp-compare-empty p { max-width: 36rem; margin: 1rem auto 1.5rem; color: #64748b; }
.vrp-compare-empty a { padding-inline: 1.4rem; }
@media (max-width: 900px) {
  .vrp-compare-grid { grid-template-columns: 1fr; }
  .vrp-compare-product { display: grid; grid-template-columns: minmax(12rem, .75fr) 1.25fr; }
  .vrp-compare-product-media { height: 100%; min-height: 20rem; }
}
@media (max-width: 620px) {
  .vrp-compare-hero { padding: 2.75rem 0 2.25rem; }
  .vrp-compare-product { display: block; }
  .vrp-compare-product-media { height: 12rem; min-height: 0; }
}

/* Row-aligned comparison, following the comparison-detail pattern. */
.vrp-compare-swipe-hint { display: none; margin: 1rem 0 .5rem; color: #64748b; font-size: .82rem; font-weight: 700; }
.vrp-compare-table-scroll { margin-top: 1.5rem; overflow-x: auto; border: 1px solid #dbe4ef; border-radius: 1.5rem; background: #fff; box-shadow: 0 16px 45px rgb(15 23 42 / 8%); overscroll-behavior-inline: contain; }
.vrp-compare-table-scroll:focus-visible { outline: 3px solid rgb(14 165 233 / 35%); outline-offset: 3px; }
.vrp-compare-table { display: grid; grid-template-columns: minmax(10.5rem, .62fr) repeat(var(--compare-count), minmax(15.5rem, 1fr)); min-width: calc(11rem + (var(--compare-count) * 15.5rem)); }
.vrp-compare-cell { min-width: 0; padding: 1rem; border-right: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.vrp-compare-cell:nth-child(calc(var(--compare-count) + 1n)) { border-right: 0; }
.vrp-compare-label { position: sticky; left: 0; z-index: 3; display: flex; align-items: flex-start; background: #f8fafc; color: #334155; font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.vrp-compare-corner { z-index: 6; flex-direction: column; justify-content: flex-end; gap: .25rem; background: #e0f2fe; color: #075985; }
.vrp-compare-corner span { font-size: .72rem; font-weight: 700; letter-spacing: 0; }
.vrp-compare-head { position: sticky; top: 0; z-index: 5; min-height: 22rem; background: #fff; }
.vrp-compare-head-image { display: block; height: 9rem; overflow: hidden; border-radius: 1rem; background: linear-gradient(135deg, #082f49, #1d4ed8 55%, #0f766e); }
.vrp-compare-head-image img { width: 100%; height: 100%; object-fit: cover; }
.vrp-compare-head-image > span { display: grid; height: 100%; place-items: center; color: #fff; font-size: 2.5rem; }
.vrp-compare-head p { margin: .9rem 2rem .25rem 0; color: #0284c7; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.vrp-compare-head h2 { margin: 0; font-size: 1rem; line-height: 1.35; }
.vrp-compare-head h2 a { color: #0f172a; text-decoration: none; }
.vrp-compare-head h2 a:hover { color: #0284c7; }
.vrp-compare-head small { display: block; margin-top: .45rem; color: #64748b; line-height: 1.4; }
.vrp-compare-head .vrp-compare-remove { top: 10.1rem; right: .8rem; width: 2rem; height: 2rem; background: #f1f5f9; color: #475569; font-size: 1.2rem; }
.vrp-compare-head .vrp-compare-remove:hover, .vrp-compare-head .vrp-compare-remove:focus-visible { background: #fee2e2; color: #b91c1c; }
.vrp-compare-value { display: flex; min-height: 3.65rem; flex-direction: column; gap: .3rem; color: #334155; font-size: .88rem; line-height: 1.5; }
.vrp-compare-value strong { color: #0f172a; }
.vrp-compare-value small { color: #64748b; line-height: 1.45; }
.vrp-compare-value--price strong { color: #047857; font-size: 1.2rem; }
.vrp-compare-value--list { min-height: 9rem; }
.vrp-compare-value--list ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.vrp-compare-value--list li span { color: #059669; font-weight: 900; }
.vrp-compare-value--tags { align-content: flex-start; flex-flow: row wrap; }
.vrp-compare-value--tags span { padding: .35rem .55rem; border-radius: 999px; background: #f0f9ff; color: #0369a1; font-size: .72rem; font-weight: 750; }
.vrp-compare-label--action, .vrp-compare-actions-cell { border-bottom: 0; }
.vrp-compare-actions-cell { display: grid; align-content: center; gap: .55rem; background: #fff; }
.vrp-compare-disclaimer { margin: 1rem 0 0; color: #64748b; font-size: .78rem; line-height: 1.6; }
@media (max-width: 800px) {
  .vrp-compare-swipe-hint { display: block; }
  .vrp-compare-container { width: min(100% - 1rem, 80rem); }
  .vrp-compare-table-scroll { border-radius: 1rem; }
  .vrp-compare-table { grid-template-columns: minmax(7.5rem, .5fr) repeat(var(--compare-count), minmax(13rem, 1fr)); min-width: calc(7.5rem + (var(--compare-count) * 13rem)); }
  .vrp-compare-cell { padding: .8rem; }
  .vrp-compare-head { min-height: 20.5rem; }
  .vrp-compare-head-image { height: 7.5rem; }
  .vrp-compare-head .vrp-compare-remove { top: 8.45rem; }
}

.vrp-equivalent-offers { overflow: hidden; border: 1px solid #dbe4ef; border-radius: 1.5rem; background: #fff; box-shadow: 0 18px 50px rgb(15 23 42 / 10%); }
.vrp-equivalent-offers__header { padding: 1.25rem 1.35rem; border-bottom: 1px solid #e2e8f0; background: linear-gradient(135deg, #eff6ff, #ecfeff); }
.vrp-equivalent-offers__header p { margin: 0 0 .3rem; color: #0284c7; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.vrp-equivalent-offers__header h2 { margin: 0; color: #0f172a; font-size: 1.25rem; line-height: 1.3; }
.vrp-equivalent-offers__list { display: grid; }
.vrp-equivalent-offer { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; padding: 1.2rem 1.35rem; border-bottom: 1px solid #e2e8f0; }
.vrp-equivalent-offer.is-best { background: #f0fdf4; }
.vrp-equivalent-offer__provider, .vrp-equivalent-offer__price { display: grid; align-content: start; gap: .2rem; }
.vrp-equivalent-offer__provider strong { color: #0f172a; }
.vrp-equivalent-offer__provider small, .vrp-equivalent-offer__price small { color: #64748b; font-size: .72rem; line-height: 1.4; }
.vrp-equivalent-offer__provider span { width: fit-content; margin-top: .3rem; padding: .25rem .45rem; border-radius: 999px; background: #dcfce7; color: #047857; font-size: .65rem; font-weight: 800; }
.vrp-equivalent-offer__price { text-align: right; }
.vrp-equivalent-offer__price strong { color: #047857; font-size: 1.25rem; }
.vrp-equivalent-offer > a { grid-column: 1 / -1; display: flex; min-height: 2.8rem; align-items: center; justify-content: center; border-radius: 999px; background: #0f172a; color: #fff; font-size: .86rem; font-weight: 850; text-decoration: none; }
.vrp-equivalent-offer > a:hover { background: #0284c7; }
.vrp-equivalent-offers__note { margin: 0; padding: 1rem 1.35rem; color: #64748b; font-size: .75rem; line-height: 1.55; }
