.vec11-scope * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vec11-scope body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

.vec11-scope .vehicle-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff;
}

.vec11-scope .carousel-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
}

.vec11-scope .mySwiper {
  width: 100%;
  height: auto;
  padding: 20px 0 60px 0;
}

.vec11-scope .swiper-wrapper {
  align-items: stretch;
}

.vec11-scope .swiper-slide {
  min-width: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.vec11-scope .vehicle-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #e8e8e8;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vec11-scope .vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-color: #d0d0d0;
}

.vec11-scope .vehicle-image-box {
  position: relative;
  background-color: #f8f9fa;
  border-bottom: 2px solid #e8e8e8;
  flex-shrink: 0;
}

.vec11-scope .image-label {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vec11-scope .image-inner {
  /*position: relative;
  padding: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
  position: relative;
  padding: 0;
  aspect-ratio: 4 / 3; /* or 16/9, 1/1, etc. as you prefer */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.vec11-scope .image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.vec11-scope .vehicle-card:hover .image-inner img {
  transform: scale(1.05);
}

.vec11-scope .zoom-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vec11-scope .vehicle-card:hover .zoom-controls {
  opacity: 1;
}

.vec11-scope .zoomInBtn, 
.vec11-scope .zoomOutBtn {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.vec11-scope .zoomInBtn:hover, 
.vec11-scope .zoomOutBtn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.vec11-scope .vehicle-info {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #ffffff;
}

.vec11-scope .model-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.vec11-scope .spec-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 10px;
  flex-grow: 1;
}

.vec11-scope .spec-box {
  text-align: center;
  flex: 1;
  padding: 12px 8px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.vec11-scope .spec-box:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.vec11-scope .spec-value {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
  line-height: 1.2;
}

.vec11-scope .spec-label {
  font-size: 11px;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.vec11-scope .view-details-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  align-self: center;
  min-width: 140px;
}

.vec11-scope .view-details-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.vec11-scope .view-details-btn:active {
  transform: translateY(0);
}

/* Swiper Navigation Styles */
.vec11-scope .swiper-button-next,
.vec11-scope .swiper-button-prev {
  color: #007bff !important;
  background-color: #ffffff;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
}

.vec11-scope .swiper-button-next:hover,
.vec11-scope .swiper-button-prev:hover {
  background-color: #007bff;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.vec11-scope .swiper-button-next::after,
.vec11-scope .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

.vec11-scope .swiper-pagination {
  bottom: 20px !important;
}

.vec11-scope .swiper-pagination-bullet {
  background-color: #dee2e6 !important;
  width: 12px !important;
  height: 12px !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.vec11-scope .swiper-pagination-bullet-active {
  background-color: #007bff !important;
  transform: scale(1.3) !important;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vec11-scope .carousel-container {
    width: 95%;
    padding: 25px;
  }
  
  .vec11-scope .vehicle-card {
    max-width: 300px;
  }
  
  .vec11-scope .model-name {
    font-size: 18px;
  }
  
  .vec11-scope .spec-value {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .vec11-scope .vehicle-carousel-section {
    padding: 30px 15px;
  }
  
  .vec11-scope .carousel-container {
    padding: 20px;
  }
  
  .vec11-scope .vehicle-card {
    max-width: 280px;
  }
  
  .vec11-scope .image-inner {
    height: 180px;
    padding: 15px;
  }
  
  .vec11-scope .vehicle-info {
    padding: 20px 15px;
  }
  
  .vec11-scope .model-name {
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .vec11-scope .spec-list {
    margin-bottom: 20px;
    gap: 8px;
  }
  
  .vec11-scope .spec-box {
    padding: 10px 6px;
  }
  
  .vec11-scope .spec-value {
    font-size: 12px;
  }
  
  .vec11-scope .spec-label {
    font-size: 10px;
  }
  
  .vec11-scope .view-details-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .vec11-scope .vehicle-carousel-section {
    padding: 25px 10px;
  }
  
  .vec11-scope .carousel-container {
    width: 98%;
    padding: 15px;
    border-radius: 15px;
  }
  
  .vec11-scope .mySwiper {
    padding: 15px 0 50px 0;
  }
  
  .vec11-scope .vehicle-card {
    max-width: 260px;
  }
  
  .vec11-scope .image-inner {
    height: 160px;
    padding: 12px;
  }
  
  .vec11-scope .vehicle-info {
    padding: 18px 12px;
  }
  
  .vec11-scope .model-name {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .vec11-scope .spec-list {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .vec11-scope .spec-box {
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .vec11-scope .spec-value {
    font-size: 13px;
    margin-bottom: 0;
  }
  
  .vec11-scope .spec-label {
    font-size: 11px;
    margin-bottom: 0;
  }
  
  .vec11-scope .view-details-btn {
    padding: 10px 18px;
    font-size: 12px;
    min-width: 110px;
  }
  
  .vec11-scope .swiper-button-next,
  .vec11-scope .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
  
  .vec11-scope .swiper-button-next::after,
  .vec11-scope .swiper-button-prev::after {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .vec11-scope .vehicle-carousel-section {
    padding: 20px 5px;
  }
  
  .vec11-scope .carousel-container {
    padding: 12px;
    border-radius: 12px;
  }
  
  .vec11-scope .vehicle-card {
    max-width: 240px;
  }
  
  .vec11-scope .image-inner {
    height: 140px;
    padding: 10px;
  }
  
  .vec11-scope .vehicle-info {
    padding: 15px 10px;
  }
  
  .vec11-scope .model-name {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .vec11-scope .spec-box {
    padding: 6px 8px;
  }
  
  .vec11-scope .spec-value {
    font-size: 12px;
  }
  
  .vec11-scope .spec-label {
    font-size: 10px;
  }
  
  .vec11-scope .view-details-btn {
    padding: 8px 15px;
    font-size: 11px;
    min-width: 100px;
  }
  
  .vec11-scope .zoom-controls {
    top: 5px;
    right: 5px;
  }
  
  .vec11-scope .zoomInBtn, 
  .vec11-scope .zoomOutBtn {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
  
  .vec11-scope .swiper-button-next,
  .vec11-scope .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }
  
  .vec11-scope .swiper-button-next::after,
  .vec11-scope .swiper-button-prev::after {
    font-size: 12px !important;
  }
  
  .vec11-scope .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}

@media (max-width: 480px) {
  .vec11-scope .vehicle-card {
    max-width: 220px;
  }
  
  .vec11-scope .image-inner {
    height: 120px;
  }
  
  .vec11-scope .model-name {
    font-size: 14px;
  }
  
  .vec11-scope .spec-value {
    font-size: 11px;
  }
  
  .vec11-scope .spec-label {
    font-size: 9px;
  }
  
  .vec11-scope .view-details-btn {
    padding: 7px 12px;
    font-size: 10px;
    min-width: 90px;
  }
}

/* Loading Animation */
.vec11-scope .vehicle-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Scrolling */
.vec11-scope .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Focus States for Accessibility */
.vec11-scope .view-details-btn:focus,
.vec11-scope .zoomInBtn:focus,
.vec11-scope .zoomOutBtn:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .vec11-scope .zoom-controls,
  .vec11-scope .swiper-button-next,
  .vec11-scope .swiper-button-prev,
  .vec11-scope .swiper-pagination {
    display: none !important;
  }
  
  .vec11-scope .vehicle-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}
.vec11-scope .swiper,
.vec11-scope .swiper-slide {
  /* Reset global swiper styles */
 /* width: auto !important;*/
  opacity: 1 !important;
  transform: none !important;
  border-radius: 15px !important;
  transition: all 0.3s !important;
  filter: none !important;
}

.vec11-scope .swiper-slide.swiper-slide-active {
  transform: none !important;
  opacity: 1 !important;
}