/* BANNER */
.product-banner {
  position: relative;
  height: 400px;
  background-image: url('../images/inner-banner/products-banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 0.9rem;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/* PRODUCT CARDS */
.product-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 15px !important;
}

.product-title {
  font-size: 0.95rem;
  color: #ccc;
  margin: 5px 0 15px 0;
}

.btn-buy {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-buy:hover {
  background-color: #0a58ca;
}

@media(max-width: 767px) {
  .product-banner {
    height: 200px;
  }

  .card-img {
    height: 150px;
  }

  .product-card {
    padding: 7px;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  div#product-wrapper {
    margin: 0 -10px;
  }

  #sortSelect {
    margin-top: 1rem;
  }

  .product-title {
    font-size: 0.8rem;
    margin: 5px 0 7px 0;
  }

  .btn-buy {
    padding: 5px 20px;
    width: 100%;
  }

}