/* CAR BRANDS ARROW STYLES - ENSURES VISIBILITY ON ALL ENVIRONMENTS */
.car-brands-arrow {
  position: relative !important;
  background: transparent !important;
  color: var(--text-primary) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  opacity: 1 !important;
  outline: none !important;
  box-sizing: border-box !important;
  margin: 0 10px !important;
  z-index: 10 !important;
  visibility: visible !important;
}

.car-brands-arrow.left { left: auto !important; }
.car-brands-arrow.right { right: auto !important; }

.car-brands-arrow:disabled,
.car-brands-arrow[disabled] {
  opacity: 0.3 !important;
  pointer-events: none !important;
  background: transparent !important;
  color: var(--text-secondary) !important;
  border: none !important;
}

.car-brands-arrow:hover:not(:disabled) {
  background: transparent !important;
  color: var(--text-secondary) !important;
  border: none !important;
  transform: scale(1.1) !important;
  box-shadow: none !important;
}

.car-brands-arrow i {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure buttons are always visible */
.car-brands-arrow,
.car-brands-arrow:hover,
.car-brands-arrow:focus,
.car-brands-arrow:active {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
}

.car-brands-arrow:disabled,
.car-brands-arrow[disabled] {
  visibility: visible !important;
  opacity: 0.3 !important;
  display: flex !important;
}

/* REMOVE FOCUS OUTLINE FROM CAR BRAND CARDS */
.car-brand-card-link {
  outline: none !important;
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.car-brand-card-link:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.car-brand-card-link:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.car-brand-card-link:hover {
  cursor: pointer !important;
  text-decoration: none !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.car-brand-card-link:hover .car-brand-card {
  transform: translateY(-5px) !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* Remove any focus styles from car brand cards */
.car-brand-card:focus,
.car-brand-card:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Responsive design for car brands arrows */
@media (max-width: 991.98px) {
  .car-brands-arrow {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    font-size: 1.3rem !important;
  }
  
  .car-brands-arrow i {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 767.98px) {
  .car-brands-arrow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    font-size: 1.4rem !important;
  }
  
  .car-brands-arrow i {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 575.98px) {
  .car-brands-arrow {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    font-size: 1.2rem !important;
  }
  
  .car-brands-arrow i {
    font-size: 1.2rem !important;
  }
} 