/* General Container */
.car-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Top Section */
.car-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.car-header .title {
  font-size: 24px;
  font-weight: bold;
}
.car-header .price {
  font-size: 32px;
  font-weight: bold;
  color: #0f62fe;
}
.car-header .finance-note {
  font-size: 14px;
  color: #777;
}

/* Main Layout */
.car-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .car-layout {
    flex-direction: row;
  }
}
.left-column {
  flex: 2;
}
.right-column {
  flex: 1;
}

/* Image Gallery */
.gallery {
  display: grid;
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Vehicle Overview */
.car-overview {
  margin-top: 20px;
}
.car-overview h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.features-list li::before {
  content: '✓ ';
  color: green;
}

/* Details Box */
.details-box {
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.details-box h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.details-box ul {
  font-size: 14px;
  color: #444;
}
.details-box ul li {
  margin-bottom: 6px;
}

/* Buttons */
.car-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.car-actions button,
.car-actions a {
  background: #0f62fe;
  color: white;
  padding: 10px;
  text-align: center;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}
.car-actions button:hover,
.car-actions a:hover {
  background: #0043ce;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  padding: 30px;
  max-width: 800px;
  width: 90%;
  border-radius: 6px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
}

/* Finance Calculator */
.finance-calculator {
  margin-top: 30px;
}
.finance-calculator input {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}
#fc-result {
  font-weight: bold;
  color: green;
}



/* Finance Calculator */
#term-buttons button {
  margin-right: 6px;
  padding: 5px 10px;
}
#term-buttons button.active {
  background-color: #007BFF;
  color: white;
}
/* End Finance Calculator */

/* Breadcrumb */
.breadcrumb-bar {
    background-color: #f6f6f6;
	height: 85px;
}
/* End Breadcrumb */


/* Single Car Listing */
.single-car-title h2 {
    font-size: 35px !important;
	line-height: 30px !important;
}
.single-car-title p {
    font-size: 35px !important;
	color:#BA2226;
	font-weight:700;
	line-height: 30px;
}
.swiper-zoom-container:not(.active) {
  display: none;
}


@media screen and (max-width: 767px) {
.single-car-title h2 {
    font-size: 20px !important;
}
.single-car-title p {
    font-size: 18px !important;
}
a#myBtn {
    color: #BA2226;
}
}
/* End Single Car Listing */