/* ========================================================================
   VEHICLE DETAIL STYLES
   Dedicated CSS file for vehicle detail pages (buy-cars-detail.php, commercial-vehicles-detail.php)
   
   Extracted from style.css to improve maintainability and performance.
   Uses BEM (Block Element Modifier) methodology for naming consistency.
   
   Main Components:
   - Vehicle Tabs: Tabbed navigation for features/specs
   - Vehicle Gallery: Main image slider with thumbnails
   - Vehicle Specs: Compact specification grid display
   - Vehicle Pricing: Price display with EMI information
   - Vehicle Actions: CTA buttons (WhatsApp, Call, etc.)
   - Vehicle Status: Status indicators
   - Vehicle Watermark: SOLD overlay for sold vehicles
   
   Related Files:
   - buy-cars-detail.php
   - commercial-vehicles-detail.php
   - style.css (main styles)
   - bootstrap-custom.css (framework overrides)
   
   Version: 1.0
   Last Updated: 2024
   ======================================================================== */

/* ========================================================
   SECTION 1: VEHICLE TABS (BEM)
   Tabbed interface for vehicle features and specifications
   Used by: Vehicle detail pages
   Key Classes: .vehicle-tabs, .vehicle-tabs__nav, .vehicle-tabs__link
   BEM Pattern: vehicle-tabs, vehicle-tabs__*, vehicle-tabs--modifier
   ======================================================== */
/* ==== VEHICLE TABS CSS START ==== */
.nav.nav-tabs.vehicle-tabs__nav {
  margin-bottom: 0.75rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: none;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-lighter);
}

.nav.nav-tabs.vehicle-tabs__nav::-webkit-scrollbar {
  height: 6px;
}

.nav.nav-tabs.vehicle-tabs__nav::-webkit-scrollbar-track {
  background: var(--bg-lighter);
  border-radius: 3px;
}

.nav.nav-tabs.vehicle-tabs__nav::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.nav.nav-tabs.vehicle-tabs__nav::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Tab Items */
.vehicle-tabs__item {
  margin-bottom: 0;
  flex: 0 0 auto;
}

/* Tab Links - matches filter navigation design */
.nav-tabs .vehicle-tabs__item .vehicle-tabs__link {
  border-radius: 32px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--gold-primary);
  color: var(--color-black);
  margin: 0 0.25rem;
  border: 2px solid var(--color-black);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.nav-tabs .vehicle-tabs__item .vehicle-tabs__link:hover,
.nav-tabs .vehicle-tabs__item .vehicle-tabs__link:focus {
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 32px;
  border-color: var(--gold-secondary);
}

.nav-tabs .vehicle-tabs__item .vehicle-tabs__link.active,
.nav-tabs .vehicle-tabs__item .vehicle-tabs__link.active.show,
.nav-tabs .vehicle-tabs__item.show .vehicle-tabs__link {
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  border: 2px solid var(--gold-secondary);
}
/* ==== VEHICLE TABS CSS END ==== */

/* ========================================================
   SECTION 2: VEHICLE GALLERY (BEM)
   Vehicle detail image gallery, thumbnails, hero images
   Used by: buy-car-detail.php, commercial-vehicle-detail.php
   Key Classes: .vehicle-gallery, .vehicle-gallery__main, .vehicle-gallery__thumbnails
   BEM Pattern: vehicle-gallery, vehicle-gallery__*, vehicle-gallery__*--modifier
   Related: PRODUCT DETAILS, SLICK SLIDER COMPONENTS
   ======================================================== */
/* ==== VEHICLE GALLERY CSS START ==== */

/* Remove padding from section body when it contains vehicle gallery for edge-to-edge images */
.c-sectionCard__body:has(.vehicle-gallery) {
  padding: 0;
}

.vehicle-gallery {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  border: none;
  width: 100%;
  padding: 0;
}

.vehicle-gallery .row {
  margin-left: 0;
  margin-right: 0;
}

/* Add padding to main image column to match vehicle-gallery__main padding */
.vehicle-gallery .row > .col-9,
.vehicle-gallery .row > .col-md-10 {
  padding-left: 10px;
  padding-right: 10px;
}

/* Remove padding from thumbnail column */
.vehicle-gallery .row > .col-3,
.vehicle-gallery .row > .col-md-2 {
  padding-left: 0;
  padding-right: 0;
}

/* Main image container */
.vehicle-gallery__main {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--color-white);
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--border-dark);
  margin-bottom: 0;
  padding: 10px;
}

.vehicle-gallery__slider {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-hero {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 400px;
  max-height: 700px;
}

/* Override base slider margins for edge-to-edge vehicle gallery */
.vehicle-gallery__slider .slider-hero {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.slider-hero.slick-initialized {
  display: block;
  visibility: visible;
}

.slider-hero .slick-list {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

/* Override global slider flex properties for vehicle gallery */
.vehicle-gallery__slider .slider-hero .slick-track {
  height: 100%;
  display: block;
  align-items: initial;
}

.vehicle-gallery__slider .slider-hero .slick-slide {
  height: 100%;
  display: block;
  align-items: initial;
}

.vehicle-gallery__slider .slider-hero .slick-slide > div {
  height: 100%;
  width: 100%;
}

.vehicle-gallery__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  min-height: 400px;
  max-height: 700px;
  border-radius: 0;
}

.vehicle-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  cursor: pointer;
  position: static;
  transition: none;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.vehicle-gallery__image:hover {
  transform: scale(1.02);
}

.vehicle-gallery__thumbnails {
  background: var(--gray-100);
  border-radius: 16px;
  min-height: 400px;
  max-height: 700px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid rgba(198, 167, 111, 0.15);
  margin-left: 0;
}

.vehicle-gallery__thumbnail-list {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 12px 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
  box-sizing: border-box;
  position: relative;
}

.vehicle-gallery__thumbnail-list::-webkit-scrollbar {
  width: 4px;
}

.vehicle-gallery__thumbnail-list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 2px;
}

.vehicle-gallery__thumbnail-list::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 2px;
}

.vehicle-gallery__thumbnail-list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-secondary);
}

.vehicle-gallery__thumbnail:hover {
  border-color: var(--gold-secondary);
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(198, 167, 111, 0.2);
}

.vehicle-gallery__thumbnail--active {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 20px rgba(198, 167, 111, 0.3);
  transform: scale(1.03);
}
/* ==== VEHICLE GALLERY CSS END ==== */

/* ========================================================
   SECTION 3: VEHICLE SPECS (BEM)
   Compact vehicle overview, spec rows, detail layouts
   Used by: Vehicle detail pages (compact spec display)
   Key Classes: .vehicle-specs, .vehicle-specs__row, .vehicle-specs__item
   BEM Pattern: vehicle-specs, vehicle-specs__*, vehicle-specs__*--modifier
   Related: PRODUCT DETAILS section
   ======================================================== */
/* ==== VEHICLE SPECS CSS START ==== */
.vehicle-specs {
  padding: 1rem;
}

.vehicle-specs__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vehicle-specs__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  align-items: stretch;
  justify-items: stretch;
}



.vehicle-specs__item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--gray-100);
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  transition: all 0.3s ease;
  min-height: 65px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.vehicle-specs__item:hover {
  background: var(--gray-200);
  border-color: var(--gold-secondary);
  transform: translateY(-2px);
}

.vehicle-specs__item--placeholder {
  opacity: 0;
  pointer-events: none;
  border: none;
  background: transparent;
}

.vehicle-specs__item--placeholder:hover {
  background: transparent;
  border: none;
  transform: none;
}

/* Hide placeholders on mobile - they only exist to fill desktop 4-column grid */
@media (max-width: 991.98px) {
  .vehicle-specs__item--placeholder {
    display: none;
  }
}

.vehicle-specs__icon {
  background: var(--gold-primary);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 14px;
}

.vehicle-specs__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}

.vehicle-specs__label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-specs__value {
  font-size: 0.9rem;
  color: var(--dark-100);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}
/* ==== VEHICLE SPECS CSS END ==== */

/* ========================================================
   SECTION 4: VEHICLE PRICING (BEM)
   Pricing display, VAT status, EMI
   Used by: Vehicle detail pages
   Key Classes: .vehicle-pricing, .vehicle-pricing__value, .vehicle-pricing__emi-value
   BEM Pattern: vehicle-pricing__*
   Related: PRODUCT DETAILS section
   ======================================================== */
/* ==== VEHICLE PRICING CSS START ==== */
.vehicle-pricing {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--gray-300);
}

.vehicle-pricing__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.vehicle-pricing__value {
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.vehicle-pricing__label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.vehicle-pricing__emi-value {
  font-size: 1.1rem;
  color: var(--success-400);
  font-weight: 600;
  background: var(--success-100);
  padding: 4px 12px;
  border-radius: 16px;
}

.vehicle-pricing__terms {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.vehicle-pricing__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}
/* ==== VEHICLE PRICING CSS END ==== */

/* ========================================================
   SECTION 5: VEHICLE ACTIONS (BEM)
   Action buttons for vehicle details (WhatsApp, Call, etc.)
   Used by: Vehicle detail pages
   Key Classes: .vehicle-actions, .vehicle-actions__btn
   BEM Pattern: vehicle-actions__*
   Related: PRODUCT DETAILS section
   ======================================================== */
/* ==== VEHICLE ACTIONS CSS START ==== */
.vehicle-actions {
  text-align: center;
}

.vehicle-actions__buttons {
  width: 100%;
}

.vehicle-actions .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.vehicle-actions .row > .col-3,
.vehicle-actions .row > .col-4,
.vehicle-actions .row > .col-6 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  flex: 1;
  min-width: 0;
}

.vehicle-actions .row > .col-auto {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: none;
}

.vehicle-actions .vehicle-actions__btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 32px;
  border: 2px solid var(--color-black);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  width: auto;
  background: var(--gold-primary);
  color: var(--color-black);
}

.vehicle-actions .vehicle-actions__btn:hover {
  background: var(--color-black);
  border-color: var(--gold-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
  text-decoration: none;
}

.vehicle-actions .vehicle-actions__btn:hover span {
  color: var(--color-white);
}

.vehicle-actions .vehicle-actions__btn i {
  margin-right: 6px;
  font-size: 0.9rem;
  display: inline-block;
  width: 16px;
  text-align: center;
}

.vehicle-actions .vehicle-actions__btn span {
  display: inline-block;
  line-height: 1.2;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--color-black);
}
/* ==== VEHICLE ACTIONS CSS END ==== */

/* ========================================================
   SECTION 6: VEHICLE STATUS (BEM)
   Status indicator for vehicles
   Used by: Vehicle detail pages
   Key Classes: .vehicle-status
   BEM Pattern: vehicle-status
   ======================================================== */
/* ==== VEHICLE STATUS CSS START ==== */
.vehicle-status {
  text-align: center;
}
/* ==== VEHICLE STATUS CSS END ==== */

/* ========================================================
   SECTION 7: VEHICLE WATERMARK (BEM)
   SOLD watermark overlay for vehicle images
   Used by: Vehicle detail pages (gallery slides and thumbnails)
   Key Classes: .vehicle-watermark
   BEM Pattern: vehicle-watermark
   ======================================================== */
/* ==== VEHICLE WATERMARK CSS START ==== */
.vehicle-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.vehicle-watermark span {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  opacity: 0.3;
  transform: rotate(-20deg);
  color: #c0392b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  font-family: Arial, sans-serif;
}

/* Thumbnail watermark - smaller size for thumbnails */
.vehicle-gallery__thumbnail .vehicle-watermark span {
  font-size: clamp(1.5rem, 5vw, 3rem);
}
/* ==== VEHICLE WATERMARK CSS END ==== */

/* ========================================================
   SECTION 8: COVERAGE VARIANTS
   Special styling for warranty coverage status
   Used by: Vehicle specs (warranty information display)
   Key Classes: .coverage-active, .coverage-complimentary
   ======================================================== */
.vehicle-specs__item.coverage-active {
  background: linear-gradient(135deg, var(--success-50) 0%, var(--color-white) 100%);
  border-left: 3px solid var(--success-500);
}

.vehicle-specs__item.coverage-active .vehicle-specs__icon {
  background: linear-gradient(135deg, var(--success-500), var(--success-600));
  color: var(--color-white);
}

.vehicle-specs__item.coverage-active .vehicle-specs__value {
  color: var(--success-600);
  font-weight: 600;
}

.vehicle-specs__item.coverage-complimentary {
  background: linear-gradient(135deg, var(--warning-50) 0%, var(--color-white) 100%);
  border-left: 3px solid var(--warning-300);
}

.vehicle-specs__item.coverage-complimentary .vehicle-specs__icon {
  background: linear-gradient(135deg, var(--warning-300), var(--warning-500));
  color: var(--color-white);
}

.vehicle-specs__item.coverage-complimentary .vehicle-specs__value {
  color: var(--warning-500);
  font-weight: 600;
}

/* ========================================================================
   RESPONSIVE STYLES
   Mobile-first responsive adjustments for all vehicle detail components
   ======================================================================== */

/* ========================================================
   BREAKPOINT: TABLET (991.98px and below)
   3-column grid for specs, adjusted icon sizes
   ======================================================== */
@media (max-width: 991.98px) {
  .vehicle-specs {
    padding: 0.75rem;
  }
  
  .vehicle-specs__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .vehicle-specs__item {
    padding: 10px;
    min-height: 55px;
  }
  
  .vehicle-specs__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 10px;
  }
  
  .vehicle-specs__label {
    font-size: 0.75rem;
  }
  
  .vehicle-specs__value {
    font-size: 0.85rem;
  }
  
  .vehicle-pricing__main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vehicle-pricing__value {
    font-size: 1.3rem;
  }
  
  .vehicle-pricing__emi-value {
    font-size: 1rem;
  }
}

/* ========================================================
   BREAKPOINT: MOBILE (768px and below)
   2-column grid for specs, reduced padding
   ======================================================== */
@media (max-width: 768px) {
  .vehicle-specs {
    padding: 0.5rem;
  }
  
  .vehicle-specs__grid {
    gap: 0;
  }
  
  .vehicle-specs__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .vehicle-specs__item {
    padding: 8px 10px;
    min-height: 60px;
  }
  
  .vehicle-specs__icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
    margin-right: 8px;
  }
  
  .vehicle-specs__label {
    font-size: 0.7rem;
  }
  
  .vehicle-specs__value {
    font-size: 0.8rem;
  }
  
  .vehicle-pricing {
    padding: 15px;
  }
  
  .vehicle-pricing__main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vehicle-pricing__value {
    font-size: 1.2rem;
  }
  
  .vehicle-pricing__emi-value {
    font-size: 0.9rem;
  }
}

/* ========================================================
   BREAKPOINT: MOBILE LANDSCAPE (767.98px and below)
   Vehicle tabs responsive adjustments
   ======================================================== */
@media (max-width: 767.98px) {
  .vehicle-tabs--detail .vehicle-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-secondary) var(--bg-lighter);
    gap: 0.5rem;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__nav::-webkit-scrollbar {
    height: 6px;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__nav::-webkit-scrollbar-track {
    background: var(--bg-lighter);
    border-radius: 3px;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__nav::-webkit-scrollbar-thumb {
    background: var(--gold-secondary);
    border-radius: 3px;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__nav::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
  }
  
  .vehicle-tabs--detail .vehicle-tabs__item {
    flex: 0 0 auto;
    margin: 0;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__item .vehicle-tabs__link {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__content {
    margin-top: 1rem;
  }
  
  .vehicle-tabs--detail .vehicle-tabs__pane {
    padding: 1rem;
  }
  
  .vehicle-tabs__panel-content .vehicle-description {
    font-size: 0.9rem;
  }
}

/* ========================================================
   BREAKPOINT: MEDIUM MOBILE (640px and below)
   Additional specs adjustments
   ======================================================== */
@media (max-width: 640px) {
  .c-tabs__item .c-tabs__link {
    padding: 8px 16px;
    font-size: 12px;
    margin: 0 0.15rem;
  }
  
  .vehicle-specs {
    padding: 0.5rem;
  }

  .vehicle-specs__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .vehicle-specs__item {
    padding: 8px;
    min-height: 50px;
  }
  
  .vehicle-specs__icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
    margin-right: 8px;
  }
  
  .vehicle-specs__label {
    font-size: 0.7rem;
  }
  
  .vehicle-specs__value {
    font-size: 0.8rem;
  }
}

/* ========================================================
   BREAKPOINT: SMALL MOBILE (576px and below)
   1-column grid, vertical button layout
   ======================================================== */
@media (max-width: 576px) {
  .vehicle-tabs__item .vehicle-tabs__link {
    padding: 6px 12px;
    font-size: 11px;
    margin: 0 0.1rem;
  }
  
  .vehicle-specs {
    padding: 0.25rem;
  }
  
  .vehicle-specs__row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 6px;
  }
  
  .vehicle-specs__item {
    padding: 10px 12px;
    min-height: 55px;
  }
  
  .vehicle-specs__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 10px;
  }
  
  .vehicle-specs__label {
    font-size: 0.72rem;
  }
  
  .vehicle-specs__value {
    font-size: 0.85rem;
  }
  
  .vehicle-actions .row {
    flex-wrap: wrap;
  }
  
  .vehicle-actions .row > .col-3,
  .vehicle-actions .row > .col-4,
  .vehicle-actions .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .vehicle-actions .vehicle-actions__btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .vehicle-pricing__main {
    padding: 0.75rem;
  }
  
  .vehicle-pricing__value {
    font-size: 1.1rem;
  }
  
  .vehicle-pricing__emi-value {
    font-size: 0.85rem;
  }
}

/* Additional responsive adjustment for vehicle actions on very small screens */
@media (max-width: 576px) {
  .vehicle-actions .row > .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .vehicle-actions .vehicle-actions__btn {
    padding: 8px 6px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-height: auto;
  }
  
  .vehicle-actions .vehicle-actions__btn i {
    margin-right: 0;
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .vehicle-actions .vehicle-actions__btn span {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.1;
  }
}

/* Alternative 576px responsive styles for better fallback */
@media (max-width: 576px) {
  .vehicle-specs__item {
    padding: 6px 8px;
    min-height: 45px;
  }
  
  .vehicle-specs__icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
    margin-right: 6px;
  }
  
  .vehicle-specs__label {
    font-size: 0.65rem;
  }
  
  .vehicle-specs__value {
    font-size: 0.75rem;
  }
}

/* ========================================================================
   END OF VEHICLE DETAIL STYLES
   ======================================================================== */
