/* Explore Motorcycles Section Styles */
.explore-section {
  background-color: #f5f8fb;
  padding: 50px 5%;
}

.explore-header {
  width: 50%;
  color: #333;
}

.explore-lists {
  justify-content: space-evenly;
}

.card-item {
  flex: 1;
  overflow: hidden;
  text-align: center;
}

.card-item img {
  width: 100%;
  margin: 40px 0;
}

.card-item .title {
  margin: 0;
  color: #333;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 18px;
}

.card-item .badge {
  color: #5c5c5c;
  background-color: #e8e8e8;
  padding: 6px 10px;
  font-size: 10px;
  border-radius: 50px;
}

.card-item .price {
  margin: 6px 0;
}

.card-item .from {
  font-weight: 400;
  margin: 0;
  font-size: 14px;
}

.card-item .price .currency {
  font-size: 0.8em;
  font-weight: 600;
  margin-right: 4px;
  bottom: -0.01em;
  position: relative;
}

.card-link {
  color: #003399;
  font-weight: bold;
  font-size: 12px;
}

.card-link::after {
  content: ">";
  padding-left: 5px;
}

/* Utility Classes */
.my__70 {
  margin: 70px 0;
}

.mt__50 {
  margin-top: 50px !important;
}

.d-flex {
  display: flex;
}

