/* 
 * Visa Card Finder Theme
 * Based on Nova Design System
 * This theme file defines colors, typography, and other styling variables
 * to match the look and feel of the Visa card finder experience
 */
@font-face {
  font-family: "visa-font-regular";
  src: url('fonts/VisaDialect-Regular.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
:root.classic {
  --typography-body-2-font-family: visa-font-regular, Open Sans, sans-serif;
  /* Primary Brand Colors */
  --visa-blue: #1434CB;
  --visa-blue-dark: #0C2074;
  --visa-blue-light: #3B5AFD;
  /* Card Brand Colors */
  --wells-fargo-red: #D71E28;
  --wells-fargo-gold: #FFBC0B;
  --bank-of-america-red: #E31837;
  --chime-green: #00C244;
  --amazon-black: #232F3E;
  --amazon-gold: #FF9900;
  --santander-red: #EC0000;
  /* Card Colors */
  --card-black: #1A1A1A;
  --card-gold: #D4AF37;
  --card-blue: #1434CB;
  --card-green: #00C244;
  --card-red: #D71E28;
  --card-orange: #FF6B00;
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #656565;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #1a1a1a;
  --black: #000000;
  /* Semantic Colors */
  --success: #00C244;
  --warning: #FFBC0B;
  --error: #D71E28;
  --info: #3B5AFD;
  /* Nova Palette Mapping */
  --palette-default-active: var(--visa-blue);
  --palette-default-active-hover: var(--visa-blue-dark);
  --palette-default-surface-1: var(--white);
  --palette-default-surface-2: var(--gray-50);
  --palette-default-surface-3: var(--gray-100);
  --palette-default-surface-4: var(--gray-200);
  --palette-default-text: var(--gray-900);
  --palette-default-text-subtle: var(--gray-600);
  --palette-default-text-disabled: var(--gray-400);
  --palette-default-text-on-active: var(--white);
  --palette-default-border-dark: var(--gray-900);
  --palette-default-border: var(--gray-300);
  --palette-default-border-subtle: var(--gray-200);
  --palette-semantic-success-foreground: var(--success);
  --palette-semantic-success-surface: rgba(0, 194, 68, 0.1);
  --palette-semantic-warning-foreground: var(--warning);
  --palette-semantic-warning-surface: rgba(255, 188, 11, 0.1);
  --palette-semantic-error-foreground: var(--error);
  --palette-semantic-error-surface: rgba(215, 30, 40, 0.1);
  --palette-semantic-info-foreground: var(--info);
  --palette-semantic-info-surface: rgba(59, 90, 253, 0.1);
  --v-divider-color-standard: var(--gray-200);
  /* Spacing */
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* Card Specific Styles */
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --card-hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  --card-border-radius: var(--radius-md);
  /* Button Styles */
  --button-primary-bg: var(--visa-blue);
  --button-primary-text: var(--white);
  --button-primary-hover-bg: var(--visa-blue-dark);
  --button-primary-active-bg: var(--visa-blue-dark);
  --button-secondary-bg: var(--gray-100);
  --button-secondary-text: var(--gray-900);
  --button-secondary-hover-bg: var(--gray-200);
  --button-secondary-active-bg: var(--gray-300);
  --button-tertiary-bg: transparent;
  --button-tertiary-text: var(--visa-blue);
  --button-tertiary-hover-bg: var(--gray-100);
  --button-tertiary-active-bg: var(--gray-200);
  /* Apply Now Button */
  --apply-now-button-bg: var(--visa-blue);
  --apply-now-button-text: var(--white);
  --apply-now-button-hover-bg: var(--visa-blue-dark);
  --apply-now-button-border-radius: var(--radius-full);
  /* Filter Bar */
  --filter-bar-bg: var(--gray-50);
  --filter-bar-border: var(--gray-200);
  --filter-bar-border-radius: var(--radius-md);
  /* Chip Styles */
  --chip-bg: var(--gray-100);
  --chip-text: var(--gray-900);
  --chip-border: var(--gray-200);
  --chip-hover-bg: var(--gray-200);
  --chip-active-bg: var(--visa-blue);
  --chip-active-text: var(--white);
  --chip-border-radius: var(--radius-full);
  /* Card Comparison */
  --comparison-header-bg: var(--gray-50);
  --comparison-row-hover-bg: var(--gray-50);
  --comparison-border: var(--gray-200);
  /* Feature Dot */
  --feature-dot-color: var(--success);
  --feature-dot-size: 6px;
}

/* Apply Now Button */
.v-apply-now-button {
  background-color: var(--apply-now-button-bg);
  color: var(--apply-now-button-text);
  border-radius: var(--apply-now-button-border-radius);
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.v-apply-now-button:hover:not(:disabled) {
  background-color: var(--apply-now-button-hover-bg);
  transform: translateY(-1px);
}
.v-apply-now-button:active:not(:disabled) {
  transform: translateY(0);
}

/* Chip */
.v-chip {
  background-color: var(--chip-bg);
  color: var(--chip-text);
  border: none;
  border-radius: var(--chip-border-radius);
  padding: 6px 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.v-chip:hover {
  background-color: var(--chip-hover-bg);
}
.v-chip.v-chip--active {
  background-color: var(--chip-active-bg);
  color: var(--chip-active-text);
  border: none;
}

.classic body {
  background-color: var(--palette-default-surface-1);
  font-family: visa-font-regular, Open Sans, sans-serif;
}
.classic body .v-card-container {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding: var(--size-scalable-32) var(--size-scalable-48);
}
@media (max-width: 600px) {
  .classic body .v-card-container {
    padding: var(--size-scalable-16);
  }
}
.classic body .v-button, .classic body .btn-common {
  margin: 3px;
  border-radius: 30px !important;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.classic body .v-button:focus, .classic body .btn-common:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
.classic body .v-button.v-default, .classic body .v-default.btn-common {
  padding: 24px 38px;
}
.classic body .v-button.v-compact, .classic body .btn-common {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 24px !important;
}
.classic body .v-button.v-button-secondary, .classic body .v-button-secondary.btn-common {
  color: var(--palette-default-text) !important;
  border: 1px solid var(--palette-default-border) !important;
}
.classic body .v-button.v-button-secondary.v-default, .classic body .v-button-secondary.v-default.btn-common {
  padding: 24px 38px;
}
.classic body .v-button.v-button-outlined, .classic body .v-button.btn-outlined, .classic body .v-button-outlined.btn-common, .classic body .btn-common.btn-outlined {
  border: 1px solid var(--palette-default-text);
  background-color: transparent;
  color: var(--palette-default-text);
}
.classic body .v-button.v-button-outlined:hover, .classic body .v-button.btn-outlined:hover, .classic body .v-button-outlined.btn-common:hover, .classic body .btn-common.btn-outlined:hover {
  background-color: var(--palette-default-text);
  color: white;
}

.vs-select {
  padding: 10px;
  margin-left: 5px;
  border-radius: 30px;
  color: var(--palette-default-text) !important;
  border: 1px solid var(--palette-default-border) !important;
  font-family: "visa-font-regular";
}

ol,
ul {
  list-style-type: disc;
}

/* =============================================================================
   Global Accessibility Utilities
   ============================================================================= */
/* Screen reader only content - visually hidden but accessible to screen readers */
.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;
}

/* Standard dotted focus indicator for accessibility */
.v-focus-outline,
*:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* Focus visible for modern browsers */
*:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* Common button accessibility enhancements */
button:focus,
.v-button:focus,
.btn-common:focus,
[role=button]:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
button:focus-visible,
.v-button:focus-visible,
.btn-common:focus-visible,
[role=button]:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* Checkbox and form input accessibility */
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
input[type=checkbox]:focus-visible,
input[type=radio]:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* =============================================================================
   High Contrast Mode Support
   ============================================================================= */
@media (prefers-contrast: high) {
  button,
  .v-button,
  .btn-common,
  input[type=checkbox],
  input[type=radio],
  select,
  textarea,
  input[type=text],
  input[type=email],
  input[type=password],
  [role=button] {
    border: 2px solid;
  }
  .v-focus-outline,
  *:focus,
  *:focus-visible {
    outline: 1px dashed var(--palette-default-text, #0066cc);
    outline-offset: 2px;
  }
}
/* =============================================================================
   Reduced Motion Support
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =============================================================================
   Common Component Utilities (Shared across multiple components)
   ============================================================================= */
/* Common gradient backgrounds for fixed elements */
.v-gradient-backdrop {
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 768px) {
  .v-gradient-backdrop--mobile {
    height: 120px;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .v-gradient-backdrop--filter {
    height: 140px;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.3) 85%, rgba(255, 255, 255, 0) 100%);
  }
}

/* Common card detail layouts */
.v-card-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: white;
  position: relative;
}
@media (max-width: 768px) {
  .v-card-detail-container {
    padding: 16px;
  }
}
@media (min-width: 769px) {
  .v-card-detail-container {
    padding: 40px;
  }
}

.v-card-detail-header {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .v-card-detail-header {
    align-items: flex-start;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .v-card-detail-header {
    margin-bottom: 24px;
  }
}

.v-card-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .v-card-detail-content {
    padding-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .v-card-detail-content {
    padding-bottom: 120px;
  }
}

/* Common card detail rows */
.v-card-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.v-card-detail-row:last-of-type {
  border-bottom: none;
}
@media (max-width: 768px) {
  .v-card-detail-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }
}
@media (min-width: 769px) {
  .v-card-detail-row {
    padding: 20px 0;
  }
}

.v-card-detail-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  flex: 1;
  line-height: 150%;
}
@media (max-width: 768px) {
  .v-card-detail-label {
    flex: 0.75;
    min-width: 0;
    word-wrap: break-word;
  }
}

.v-card-detail-value {
  font-size: 14px;
  color: #6b7280;
  text-align: right;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .v-card-detail-value {
    flex: 1.25;
    min-width: 0;
    word-wrap: break-word;
  }
}

/* Common card titles and names */
.v-card-detail-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #111827;
  max-width: 100%;
}
@media (max-width: 768px) {
  .v-card-detail-name {
    font-size: 28px;
    line-height: 115%;
  }
}
@media (min-width: 769px) {
  .v-card-detail-name {
    font-size: 40px;
    text-align: left;
    font-weight: 400;
    line-height: 115%;
  }
}

.v-card-detail-type {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

/* Common card images */
.v-card-detail-image {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  width: 120px;
  height: 75px;
  object-fit: contain;
}
.v-card-detail-image--vertical {
  width: 90px;
  height: 142px;
}
@media (min-width: 769px) {
  .v-card-detail-image {
    align-self: flex-start;
  }
}

/* Common section titles */
.v-card-detail-section-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #111827;
}
@media (max-width: 768px) {
  .v-card-detail-section-title {
    margin: 12px 0;
  }
}
@media (min-width: 769px) {
  .v-card-detail-section-title {
    font-weight: 600;
    margin: 20px 0;
  }
}

/* Common checkbox styles */
.v-checkbox {
  margin-right: var(--size-scalable-12, 12px);
  width: 24px;
  height: 24px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--palette-default-border-dark, #ccc);
  background-color: var(--palette-default-surface-1, #fff);
  outline: none;
}
.v-checkbox:checked {
  background-color: var(--palette-default-active, #1434cb);
  border-color: var(--palette-default-active, #1434cb);
  position: relative;
}
.v-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--palette-default-on-active, #fff);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.v-checkbox:indeterminate {
  background-color: var(--palette-default-active, #1434cb);
  border-color: var(--palette-default-active, #1434cb);
  position: relative;
}
.v-checkbox:indeterminate::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 14px;
  height: 1px;
  background-color: var(--palette-default-on-active, #fff);
}
.v-checkbox:hover:not(:checked):not(:indeterminate) {
  border-color: var(--palette-default-border, #999);
}
.v-checkbox:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
.v-checkbox:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* Common modal layouts */
.v-modal-split-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 769px) {
  .v-modal-split-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}
.v-modal-split-layout__title {
  margin-bottom: var(--size-scalable-64, 24px);
  color: var(--palette-default-text, #000);
}
@media (max-width: 768px) {
  .v-modal-split-layout__title {
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--palette-default-border-subtle, #e5e7eb);
  }
}
@media (min-width: 769px) {
  .v-modal-split-layout__title {
    font-size: 32px;
    margin-bottom: 0;
    margin-right: var(--size-scalable-32, 32px);
    padding-left: 10px;
    min-width: 150px;
    flex: 1;
    max-height: 60vh;
    min-height: 30vh;
    display: flex;
    align-items: flex-start;
  }
}
.v-modal-split-layout__content {
  display: flex;
  flex-direction: column;
  gap: var(--size-scalable-24, 16px);
  margin-bottom: var(--size-scalable-64, 24px);
  max-height: 60vh;
  overflow-y: auto;
  /* Scrollbar styling */
}
@media (max-width: 768px) {
  .v-modal-split-layout__content {
    padding-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .v-modal-split-layout__content {
    flex: 1;
    border-left: 1px solid var(--palette-default-border-subtle, #e0e0e0);
    padding-left: var(--size-scalable-32, 32px);
  }
}
.v-modal-split-layout__content::-webkit-scrollbar {
  width: 4px;
}
.v-modal-split-layout__content::-webkit-scrollbar-track {
  background: var(--palette-default-border-subtle, #e0e0e0);
  border-radius: 4px;
}
.v-modal-split-layout__content::-webkit-scrollbar-thumb {
  background: var(--palette-default-border, #ccc);
  border-radius: 4px;
}

/* Common fixed actions wrapper */
.v-fixed-actions-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: transparent;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
@media (min-width: 769px) {
  .v-fixed-actions-wrapper {
    position: static;
    background: transparent;
  }
}
.v-fixed-actions-wrapper .v-fixed-actions-gradient {
  display: none;
}
@media (max-width: 768px) {
  .v-fixed-actions-wrapper .v-fixed-actions-gradient {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.3) 85%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
}
.v-fixed-actions-wrapper .v-fixed-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  width: 100%;
  gap: var(--size-scalable-8, 8px);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .v-fixed-actions-wrapper .v-fixed-actions {
    padding: 16px;
    background: white;
  }
}
@media (min-width: 769px) {
  .v-fixed-actions-wrapper .v-fixed-actions {
    justify-content: flex-end;
    padding: 0;
    background: transparent;
  }
}

/* Common responsive grid patterns */
.v-responsive-grid {
  display: grid;
  gap: var(--size-scalable-16);
}
.v-responsive-grid--compare-cards {
  grid-template-columns: 380px repeat(auto-fit, minmax(200px, 400px));
}
@media (max-width: 1440px) {
  .v-responsive-grid--compare-cards {
    grid-template-columns: 260px repeat(auto-fit, minmax(200px, 400px));
    gap: var(--size-scalable-8);
  }
}
@media (max-width: 1330px) {
  .v-responsive-grid--compare-cards {
    grid-template-columns: 260px repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--size-scalable-8);
  }
}
@media (max-width: 1200px) {
  .v-responsive-grid--compare-cards {
    grid-template-columns: 260px repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media (max-width: 768px) {
  .v-responsive-grid--compare-cards {
    grid-template-columns: 1fr repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Common fixed button wrapper */
.v-fixed-button-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  pointer-events: none;
}
.v-fixed-button-wrapper .v-fixed-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: var(--palette-default-active);
  color: white;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  pointer-events: auto;
}
.v-fixed-button-wrapper .v-fixed-button:hover {
  background-color: var(--palette-default-active-hover, #1e40af);
  text-decoration: none;
  color: white;
}
.v-fixed-button-wrapper .v-fixed-button:active, .v-fixed-button-wrapper .v-fixed-button:focus {
  outline: 1px dashed var(--palette-default-active);
  outline-offset: 4px;
}
.v-fixed-button-wrapper .v-fixed-button svg {
  width: 16px;
  height: 16px;
  opacity: 1;
}
@media (max-width: 768px) {
  .v-fixed-button-wrapper .v-fixed-button {
    position: relative;
    margin: 16px;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 24px;
    z-index: 10001;
  }
}
@media (min-width: 769px) {
  .v-fixed-button-wrapper .v-fixed-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    margin: 0;
    padding: 16px 40px;
    font-size: 16px;
    max-width: 200px;
    width: auto;
    z-index: 10001;
  }
}

/* Common close button styles */
.v-close-button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--palette-default-text, #000000);
  padding: var(--size-scalable-8, 0.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.v-close-button:hover {
  background-color: var(--palette-default-surface-3, #f5f5f5);
}

/* Common remove button styles */
.v-remove-button {
  position: absolute;
  background: none;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 3;
  color: #666;
  font-size: 14px;
  border: 2px solid transparent;
  border-radius: 4px;
}
.v-remove-button:hover {
  background: #f5f5f5;
  transform: scale(1.1);
  color: #333;
}
.v-remove-button:focus {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
  background: #f5f5f5;
  color: #333;
}
.v-remove-button:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
.v-remove-button .visa-icon {
  font-size: 12px;
}

/* Common card image wrapper */
.v-card-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--size-scalable-24, 1.5rem);
  background-color: var(--palette-default-surface-3, #f5f5f5);
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
}
.v-card-image-wrapper .v-card-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
  z-index: 1;
}
.v-card-image-wrapper:hover .v-card-image {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Common scrollbar styling */
.v-custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.v-custom-scrollbar::-webkit-scrollbar-track {
  background: var(--palette-default-border-subtle, #e0e0e0);
  border-radius: 4px;
}
.v-custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--palette-default-border, #ccc);
  border-radius: 4px;
}

/* Common fade-in animation */
@keyframes v-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.v-fade-in {
  animation: v-fade-in 0.4s ease-out;
}

/* =============================================================================
   Responsive Text and Layout Support
   ============================================================================= */
/* Support for browser zoom and user font preferences - removed forced font size increase */
/* Improved line height for better readability - more conservative approach */
p, li, dd {
  line-height: 1.5;
}

/* =============================================================================
   Common Compare Table Utilities
   ============================================================================= */
/* Common compare table layout */
.v-compare-table {
  width: 100%;
  margin: 0 0 auto 0;
  padding: var(--size-scalable-64, 2rem);
  background-color: var(--palette-default-surface-1, #ffffff);
}
@media (max-width: 768px) {
  .v-compare-table {
    padding: var(--size-scalable-20);
  }
}

.v-compare-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--size-scalable-64, 2rem);
  gap: var(--size-scalable-16);
}
.v-compare-table-header > div:first-child {
  flex: 1;
}
@media (max-width: 768px) {
  .v-compare-table-header {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
}

.v-compare-table-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--palette-default-text, #000000);
  margin: var(--size-scalable-32) 0 var(--size-scalable-8, 0.5rem) 0;
}
@media (max-width: 768px) {
  .v-compare-table-title {
    font-size: 40px;
    font-weight: 500;
    margin: var(--size-scalable-15) 0 var(--size-scalable-48) 0;
  }
}

/* Common table cell styles */
.v-table-cell {
  padding: var(--size-scalable-8, 0.5rem);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.v-table-cell--label {
  font-weight: 600;
  color: var(--palette-default-text, #000000);
}

/* Common divider styles */
.v-divider {
  margin: var(--size-scalable-16) 0;
  border: none;
  height: 1px;
  background-color: var(--palette-default-border-subtle, #e0e0e0);
}

/* Common card name styles */
.v-card-name {
  font-weight: 700;
  margin: 1rem 0;
  color: var(--palette-default-text, #000000);
  font-size: 1rem;
  line-height: 150%;
}
@media (max-width: 768px) {
  .v-card-name {
    font-size: 0.9rem;
    margin: var(--size-scalable-20) 0;
  }
}

/* Common link button styles */
.v-link-button {
  display: inline-flex;
  align-items: center;
  gap: var(--size-scalable-8, 0.5rem);
  color: var(--palette-default-text, #000000);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  padding: var(--size-scalable-8, 0.5rem);
  border-radius: var(--size-scalable-4, 0.25rem);
  transition: all 0.2s ease;
}
.v-link-button:hover {
  color: var(--palette-default-text, #0066cc);
  transform: translateX(2px);
}
.v-link-button:focus {
  color: var(--palette-default-text, #0066cc);
  transform: translateX(2px);
  border-radius: 30px;
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}
.v-link-button:focus-visible {
  outline: 1px dashed var(--palette-default-text, #0066cc);
  outline-offset: 2px;
}

/* Style for external link icons */
.visa-icon-new-window {
  margin-left: 0.5rem;
  font-size: 0.8em;
}