:root {
  --accent-color: #F1592F;
  --accent-hover: #D94A26;
  --bs-heading-color: #000;
  --bs-secondary-color: #909090;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
}

/* Tom Select custom styles */
.ts-wrapper.single .ts-control {
  border-radius: 0;
  padding: 0.375rem 0.75rem;
  min-height: calc(1.5em + 0.75rem + 2px);
}

.ts-wrapper .ts-control {
  border-radius: 0;
}

.ts-wrapper .ts-dropdown {
  border-radius: 0;
}

.ts-wrapper.single .ts-control::after {
  border-color: #333 transparent transparent transparent;
}

.ts-wrapper .ts-control input {
  font-size: 1rem;
}
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #000;
  }

  .btn-rounded {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
}

.btn-lg {
  font-size: 1rem;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  border: none;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-white {
  background-color: #fff;
  color: #000;
  border: none;
}

.btn-white:hover {
  background-color: #f5f7f9;
}

.btn-outline {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}


.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #000 !important;
}

.navbar-nav .nav-item {
  margin-right: 26px;
}

.navbar-nav .nav-item:last-child {
  margin-right: 0;
}

/* 2-line Hamburger Menu with X animation */
.hamburger-2line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger-2line:focus {
  box-shadow: none;
  outline: none;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  position: absolute;
}

.hamburger-line:first-child {
  transform: translateY(-5px);
}

.hamburger-line:last-child {
  transform: translateY(5px);
}

/* X animation when open */
.hamburger-2line[aria-expanded="true"] .hamburger-line:first-child {
  transform: rotate(45deg);
}

.hamburger-2line[aria-expanded="true"] .hamburger-line:last-child {
  transform: rotate(-45deg);
}

/* Sign Out button styling */
.nav-signout {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  vertical-align: baseline;
}

/* Mobile menu overlay */
@media (max-width: 767.98px) {
  .nav-signout {
    padding: 0.5rem 0;
  }

  .navbar-logo {
    height: 26px !important;
  }

  /* Make navbar container relative for absolute positioning */
  .navbar > .container {
    position: static;
  }

  .navbar {
    position: relative;
  }

  /* Overlay menu styles */
  .navbar-collapse.collapse {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f7f9;
    z-index: 1050;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .navbar-collapse.collapse.show {
    max-height: 500px;
    transition: max-height 0.35s ease-in;
  }

  .navbar-collapse .navbar-nav {
    padding: 1rem 1.5rem;
  }

  .navbar-collapse .navbar-nav:first-child {
    padding-top: 1.5rem;
  }

  .navbar-collapse .navbar-nav:last-child {
    padding-bottom: 1.5rem;
    border-top: 1px solid #ddd;
  }

  /* Menu backdrop */
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .menu-backdrop.show {
    opacity: 1;
    visibility: visible;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 92vh;
  min-height: 500px;
  max-height: 800px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}

.hero-swiper .swiper-slide-active {
  opacity: 1 !important;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-slide-heading {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  max-width: 550px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-slide-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-slider .btn {
  border-radius: 0;
}


/* Navigation arrows - Rivian style */
.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: #f0f0f0;
}

.hero-swiper-prev { left: 24px; }
.hero-swiper-next { right: 24px; }

/* Pagination dots - Rivian style */
.hero-swiper-pagination {
  position: absolute;
  bottom: 22px !important;
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.4s ease;
  margin: 0 !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #111;
  width: 28px;
}

@media (max-width: 767.98px) {
  .hero-swiper {
    height: 85vh;
    min-height: 450px;
    max-height: 650px;
  }

  .hero-slide-content {
    top: auto;
    bottom: 80px;
    transform: none;
  }

  .hero-slide-heading {
    font-size: 1.85rem;
  }

  .hero-slide-text {
    font-size: 0.95rem;
  }

  .hero-slider .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    display: none;
  }

  .hero-swiper-pagination {
    bottom: 24px;
  }
}

.form-control {
  padding: 0.8rem 0.75rem;
  line-height: 1.5;
}

.fw-900 {
  font-weight: 900 !important;
}


/* Truck Card Styles */
.truck-card-img {
  height: 200px;
  object-fit: cover;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Show Page - Image Gallery */
.truck-gallery .main-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 4px;
}

.truck-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .truck-gallery .main-image {
    height: 280px;
  }
}

.truck-thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.truck-thumbnail:hover,
.truck-thumbnail.active {
  border-color: #000;
}

.thumbnail-row {
  padding-bottom: 10px;
}

/* Show Page - Details */
.truck-details table th {
  width: 120px;
  color: #666;
  font-weight: 500;
}

.price-tag {
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: 20px;
}

.filter-sidebar .form-control-sm,
.filter-sidebar .form-select-sm,
.form-select-sm {
  line-height: 1.5;
  padding: 0.8rem 0.75rem;
  height: auto;
}


.filter-form .form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Featured Listings */
.featured-listings {
  background-color: #f8f9fa;
}

/* Active Filters */
.active-filters .badge {
  font-weight: normal;
}

/* VIN Decoder */
.vin-status {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

#vin-input::placeholder {
  text-transform: none;
}

/* Accent Color Utilities */
.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline-accent:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.border-accent {
  border-color: var(--accent-color) !important;
}

/* Search Input */
.search-input {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 0.8rem 0.75rem;
  line-height: 1.5;
  background-color: #f8f9fa;
}

.search-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.search-input + .btn-outline-secondary {
  border-color: #ddd;
}

/* Category Pills - Horizontally Scrollable */
.category-pills-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.category-pills-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: max-content;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.category-pill:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.category-pill.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  font-weight: 500;
}

/* Filter Sidebar - Updated */
.filter-sidebar {
  position: sticky;
  top: 20px;
  background: #fff;
}

.filter-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.filter-section-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Filter Toggle */
.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  margin-bottom: 1rem;
}

.filter-toggle:focus {
  outline: none;
}

.filter-toggle .filter-title {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-arrow {
  transition: transform 0.3s ease;
}

.filter-toggle[aria-expanded="true"] .filter-arrow {
  transform: rotate(180deg);
}

/* Vehicle Cards - Peloton Style */
.vehicle-card {
  background: #f5f7f9;
  border: none;
  border-radius: 12px;
  height: 100%;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vehicle-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vehicle-card-image {
  width: 100%;
}

.vehicle-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(90deg, #e8e8e8 25%, #ddd 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.vehicle-card-body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-year-model {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.vehicle-trim {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.vehicle-details {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
  margin-top: auto;
}

.vehicle-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

/* Location Filter Section */
.location-filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.location-display {
  cursor: pointer;
  padding: 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.location-display:hover {
  background: #e9ecef;
}

.location-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-text {
  font-size: 0.95rem;
  line-height: 1.3;
}

.location-radius {
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

.edit-icon {
  color: #666;
  flex-shrink: 0;
}

.location-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: #f8f9fa;
  border: 1px dashed #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: #333;
}

.location-prompt:hover {
  background: #e9ecef;
  border-color: var(--accent-color);
}

.location-prompt span {
  flex-grow: 1;
  text-align: left;
}

/* Location Modal */
.zip-input-field {
  background: #f8f9fa;
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.zip-input-field:focus {
  background: #f8f9fa;
  border-bottom-color: var(--accent-color);
  box-shadow: none;
}

.radius-section .form-range {
  height: 8px;
}

.radius-section .form-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.radius-section .form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.radius-value {
  color: var(--accent-color);
}

/* Category Grid Section */
.category-grid-section {
  background-color: #fff;
  padding: 3rem 0;
}

.category-grid-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-grid-section .section-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  aspect-ratio: 3 / 2;
  background: #f5f5f5;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
  padding: 2rem 0.75rem 0.3rem;
  pointer-events: none;
}

.category-card-label {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  .category-card-label {
    font-size: 0.75rem;
  }

  .category-card-overlay {
    padding: 3rem 0.75rem 0.1rem;
  }
}

/* View all categories link */
.view-all-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px dashed #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
  aspect-ratio: 3 / 2;
}

.view-all-categories:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: #fff;
}

/* Category placeholder when image is missing */
.category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

/* Modal Backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.modal-backdrop.show {
  opacity: 1 !important;
}

/* Toast Notifications */
.toast-container {
  z-index: 1100;
}

.toast {
  min-width: 280px;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-body {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
}

@media (max-width: 575.98px) {
  .toast-container {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    padding: 1rem !important;
  }

  .toast {
    min-width: 90vw;
    max-width: 90vw;
  }
}

/* Pagination - Dark/Black style */
.page-link {
  color: #000;
}

.page-link:hover {
  color: #000;
  background-color: #e9ecef;
}

.page-item.active .page-link {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

/* Dashboard cards */
.card {
  border: none;
  background-color: #f5f7f9;
}

/* Heading size utilities */
.h2 {
  font-size: 2rem;
}

/* Main content spacing */
.main-content {
  position: relative;
  padding-top: 2rem;
}

.main-content.no-top-padding {
  padding-top: 0;
}

/* Bootstrap alert colors */
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* Alert slide container - slides in from right */
.alert-slide-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1050;
  max-width: 400px;
}

.alert-slide-container .alert {
  animation: slideInRight 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
@media (max-width: 767.98px) {
  .footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

footer .nav-link {
  font-weight: 300;
}

/* Photo reorder drag and drop */
.sortable-ghost {
  opacity: 0.4;
}

.sortable-chosen {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sortable-drag {
  opacity: 1;
}

.photo-item {
  transition: transform 0.15s ease;
}

.photo-item:hover {
  transform: scale(1.05);
}

/* Why Haulver Section */
.why-haulver {
  background-color: #fff;
}

.why-haulver .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(241, 89, 47, 0.1);
}

.why-haulver .feature-icon img {
  width: 56px;
  height: 56px;
}

/* How It Works Section */
.how-it-works {
  background-color: #f8f9fa;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

/* Any Business Section */
.any-business {
  background: url("/images/flames-food-truck-wide-angle-2.webp") no-repeat center top/cover;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .any-business {
    background-image: url("/images/food-truck-for-sale-mobile.webp");
  }
}


/* Comparison Links Section */
.comparison-links-section {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.comparison-links-header {
  font-weight: 600;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.comparison-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background-color: #f5f7f9;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s ease;
  height: 100%;
  position: relative;
}

.comparison-link-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #333;
}

.comparison-link-site-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
}

.comparison-link-badge {
  font-size: 0.7rem;
  line-height: 1.3;
}

.comparison-link-badge.supported {
  color: #28a745;
}

.comparison-link-badge.unsupported {
  color: #999;
}

.comparison-link-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #ccc;
  transition: color 0.2s ease;
}

.comparison-link-card:hover .comparison-link-arrow {
  color: var(--accent-color);
}

/* Seller CTA Section */
.seller-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.seller-cta h2 {
  font-weight: 700;
  color: #fff;
}

.seller-cta .lead {
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Guides Index Hero */
.guides-hero {
  background: url("/images/orange-antique-truck-banner.jpg") no-repeat left center/cover;
  padding: 6rem 0;
  color: #fff;
  position: relative;
}

.guides-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.guides-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.guides-hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .guides-hero {
    padding: 3rem 0;
  }

  .guides-hero-title {
    font-size: 1.75rem;
  }

  .guides-hero-description {
    font-size: 1rem;
  }
}

/* About Page */
.about-hero {
  background: url("/images/orange-antique-truck-banner.jpg") no-repeat left center/cover;
  padding: 6rem 0;
  color: #fff;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlight {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .about-hero {
    padding: 3rem 0;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }
}

/* Guide Cards */
.guide-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.guide-card-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guide-card:hover .guide-card-image img {
  transform: scale(1.03);
}

.guide-card-body {
  padding: 0.75rem 0;
}

.guide-card-date {
  font-size: 0.8rem;
}

.guide-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.guide-card-title-link {
  text-decoration: none;
  color: inherit;
}

.guide-card-title-link:hover .guide-card-title {
  color: var(--accent-color);
}

.guide-card-excerpt {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Contact Page */
.contact-page-bg,
.contact-page-bg .navbar {
  background-color: #f7e6df !important;
}

.contact-page-bg footer.border-top,
.contact-page-bg .navbar.border-bottom {
  border-color: #c9a68e !important;
}

.contact-page {
  padding-top: 1rem;
  overflow-x: hidden;
}

.contact-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-subtext {
  font-size: 1.05rem;
  max-width: 480px;
}

.contact-info-item {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #c9a68e;
}

.contact-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-form-card .form-control {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
}

.contact-form-card .form-control:focus {
  background-color: #fff;
  border-color: var(--accent-color);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .contact-heading {
    font-size: 1.75rem;
  }
}

/* Guide Article */
.guide-article {
  line-height: 1.75;
}

.guide-article p {
  margin-bottom: 1.25rem;
}

.guide-article h2 {
  margin-top: 2.5rem;
}

.guide-article ul {
  margin-bottom: 1.25rem;
}

.guide-article ul li {
  margin-bottom: 0.5rem;
}

/* Guide Price Table */
.guide-price-table {
  border-collapse: separate;
  border-spacing: 0;
}

.guide-price-table thead th {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border: none;
}

.guide-price-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.guide-price-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.guide-price-table tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  border-bottom: 1px solid #eee;
}

.guide-price-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

.guide-price-table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

/* Guide CTA */
.guide-cta {
  background-color: #f5f7f9;
  border-radius: 12px;
  padding: 2.5rem 2rem;
}

/* Guide FAQ */
.guide-faq h3 {
  font-weight: 600;
}

.guide-faq p {
  color: #444;
}
