.banner {
  padding: 60px 0;
  background: #312d89;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .heading {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.banner .heading span {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  color: #00c2fa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb li {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.breadcrumb li::before {
  color: var(--white);
  content: "/";
  position: absolute;
  left: -10px;
}

.breadcrumb li:nth-child(1):before {
  display: none;
}

.breadcrumb li a {
  color: var(--white);
  text-decoration: none;
}

.filters { 
  padding: 60px 0;
}
.filters input, .filters select{ 
  width: 100%;
  border-radius: 5px;
  border: 1px solid #DDD;
  background: #FFF;
  padding: 0 20px;
  min-height: 48px;
  outline: none;
  box-shadow: none;
}
.filters .col-md-4{ 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.all-products{
  margin-bottom: 60px;
}
.product-list { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 30px; 
}
.product-list .product {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid #DDD;
  background: #FCFCFF;
  padding: 30px;
  width: calc(25% - 30px);
}
.product-list .product img { 
    width: 80%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}
.product-list .product .brandname{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}
.product-list .product .productname{
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}
.product-list .product .price{
  color: #312D89;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}
.product-list .product .btn-group{
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list .product .btn-group a{
  background: #312D89;
}
.product-list .no-result{
  text-align: center;
  color: red;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}


@media (max-width: 1200px) {}

@media (max-width: 991px) {}

@media (max-width: 768px) {}