/* Mobile */
@media (max-width: 768px) {
  .slide-card {
    min-width: 220px;
    height: 207px;
  }

  .nav-btn {
    display: none;
  }
}
/*Cars*/
/* ================================
   PREMIUM TAG (CAR ONLY)
================================ */

.car-showcase .premium-tag{
  position:absolute;
  top:12px;
  right:12px;
  background:linear-gradient(135deg,#ffd700,#ff9800);
  color:#000;
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:12px;
  text-transform:uppercase;
  letter-spacing:0.6px;
  z-index:6;
  box-shadow:0 4px 12px rgba(0,0,0,0.35);
}

/* thoda premium hover feel */
.car-showcase .slide-card:hover .premium-tag{
  transform:scale(1.05);
}

/* Existing overlay ko update karo */
.slide-card .overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;   /* default: text bottom */
  align-items:flex-start;
  padding:18px;
  z-index:2;
  color:#fff;
  transition: all 0.3s ease;
}

/* Button style */
.slide-card .book-btn{
  margin-top:8px;
  padding:8px 18px;
  background:#ff5722;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  display:inline-block;
}


/* Hover pe text thoda subtle aur button highlight */
.slide-card:hover .overlay h3{
  margin-bottom:6px;
}

.slide-card:hover .overlay p{
  opacity:0.85;
}

.slide-card:hover .book-btn{
  transform:scale(1.05);
}

/* Smaller premium cards */
.car-mini{
  min-width: 180px;      /* 👈 chhota card */
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  background:#000;
}

/* Image fit */
.car-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.4s ease;
}

/* Gradient overlay */
.car-mini::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  z-index:1;
}

/* Text overlay */
.car-mini .overlay{
  position:absolute;
  bottom:10px;
  left:12px;
  right:12px;
  color:#fff;
  z-index:2;
}

.car-mini h3{
  font-size:15px;
  margin-bottom:2px;
}

.car-mini p{
  font-size:12px;
  opacity:0.9;
}

/* Hover action */
.hover-action{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.55);
  opacity:0;
  transition:0.35s ease;
  z-index:3;
}

.hover-action button{
  padding:8px 18px;
  background:#ff5722;
  border:none;
  color:#fff;
  border-radius:20px;
  font-size:13px;
  cursor:pointer;
}

/* Hover effects */
.car-mini:hover img{
  transform: scale(1.12);
}

.car-mini:hover .hover-action{
  opacity:1;
}

/* Mobile */
@media (max-width:768px){
  .car-mini{
    min-width:150px;
    height:200px;
  }
}

.car-showcase {
  padding: 70px 0;
  background: #f6f7f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.slider-wrapper {
  position: relative;
}

.slider {
  display: flex;
  gap: 22px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.slide-card {
  min-width: 170px;
    height: 194px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
}

.overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 10;
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

