.product .home-title h3 {
  margin-bottom: 0.5rem;
}

.product .panel-list {
  border: 1px #f2f2f2 solid;
  border-radius: 15px;
  padding: 1.7vw;
}
.product .panel-list .title {
  font-size: 26px;
  font-weight: 500;
  font-family: "Mitr", sans-serif;
}
.product .panel-list ul {
  padding-left: 0.75rem;
  list-style-type: none;
  margin: 0;
}
.product .panel-list li {
  padding-top: 1vw;
  font-size: 18px;
}

.product .panel-list a:hover {
  color: #ea0029;
  transition: 0.3s ease-in-out;
}
.product .panel-list .active {
  color: #ea0029;
  font-weight: 500;
}
.product-card-list-center {
  display: flex;
  justify-content: center;
}
.product-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  width: fit-content;
}
.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.product-card img {
  border-radius: 15px;
}
.product-card:hover {
  color: black;
}
.product-card:hover img {
  scale: 1.1;
  transition: 0.5s ease-in-out;
}
.product-card .btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  margin: 0;
  width: 135px;
  height: 40px;
  font-size: 16px;
}
.product-card .card-text {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 14px;
}
.product-card .card-text .brandname {
  font-size: 20px;
  font-weight: 400;
  font-family: "Mitr", sans-serif;
}
/* --------------------------------------- */
.product .filter {
  margin-bottom: 2rem;
}
.product .filter .dropdown {
  text-align: end;
}
.product .filter .select-wrapper {
  display: flex;
  justify-content: flex-end;
}
.product .filter .dropdown button {
  width: 9.5vw;
}
.product-cat-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.product-cat-card {
  position: relative;
  height: 100%;
  border-radius: 15px;
  border: 4px solid #ffffff;
  background-color: #f5f5f5;
  overflow: hidden;
}
.product-cat-card:hover {
  color: black;
  transition: 0.5s ease-in-out;
  background-color: #f4e2d4;
}

.product-cat-card:hover img {
  scale: 1.07;
  transition: 0.5s ease-in-out;
/*   border: 4px solid #f4e2d4; */
}

.product-cat-card .card-text {
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  font-size: 18px;
  width: 100%;
  text-align: center;
  line-height: 1.25;
}

.product-brand .head-set {
  display: flex;
  align-items: center;
}

.product-brand .logo-img img {
  border-radius: 15px;
}
.product-brand .head-img {
  height: 100%;
  display: grid;
 /*  place-items: center; */
  justify-items: start;
  /*  padding: 0 8%; */
}
.product-brand .head-img img {
  border-radius: 15px;
}
.product-brand .head-set .heading {
  display: flex;
  flex-wrap: wrap;
}
.product-brand .head-set .heading-text {
  color: #c9c8c7;
  font-size: 20px;
  font-weight: 400;
  font-family: "Mitr", sans-serif;
  padding: 0 1.2rem;
  margin: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
.product-brand .head-set .heading-text::after {
  position: absolute;
  right: 0;
  content: "";
  width: 1px;
  height: 1vw;
  background-color: #c9c8c7;
}
.product-brand .head-set .heading-text.active {
  color: #eb0028;
  font-weight: 500;
  position: relative;
}
.product-brand .head-set .heading-text.active:hover {
  color: #eb0028;
  transition: 0.3s ease-in-out;
}
.product-brand .head-set .heading-text.active::before {
  position: absolute;
  content: "";
  background: #eb0028;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5%;
  width: 80%;
  height: 2px;
}
.product-brand .head-detail {
  font-size: 18px;
  color: #5e5e5e;
  margin-top: 5%;
}
.product-brand .head-detail h3 {
  font-size: 36px;
  font-weight: 400;
  color: black;
  font-family: "Mitr", sans-serif;
  margin-bottom: 2%;
}
.product-brand .detail-set {
  margin-top: 6%;
}
.product-brand .detail-set .product-cat-card-list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
.product-brand .detail-set .product-card {
  text-align: center;
  margin-top: 0.5rem;
}
.product-brand .detail-set .product-card-name {
  margin-top: 3%;
  font-size: 18px;
}
@media (max-width: 991px) {
  .product .select-wrapper .dropdown-menu .dropdown-item a {
    width: 100%;
    display: block;
    padding: 0;
    color: #5e5e5e;
  }
  .product-card-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-cat-card-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-cat-card, 
  .product-cat-card img,.product-cat-card:hover img  {
        border: none;
  }
  .product-cat-card-list img {
    width: 100%;
  }
  .product-card .btn {
    width: 130px;
    height: 40px;
    font-size: 16px;
  }

  .product-cat-card .card-text {
        bottom: 0.25rem;
        font-size: 14px;
        line-height: 1.2;
  }
  .product-card .card-text {
    width: 58%;
    bottom: 0.5rem;
  }
  .product .filter .dropdown button {
    /* width: 9.5vw; */
    width: 100%;
  }

  .product-brand .head-set .heading-text {
    font-size: 16px;
    padding: 0 0.5rem;
  }
  .product-brand .head-set .heading-text::after {
    height: 1rem;
  }
  .product-brand .head-set {
    align-items: flex-start;
  }
  .product-brand .head-img {
    padding: 1rem 0 1.5rem 0;
  }
  .product-brand .logo-img {
    float: left;
    margin-right: 0.5rem;
    width: 120px;
  }

  .product-brand .head-set .heading {
    margin: 1rem 0 0 0;
    width: 100%;
  }
  .product-brand .head-detail h3 {
    font-size: 28px;
  }
  .product-brand .head-detail {
    font-size: 14px;
    margin: 0;
  }
  .product-brand .detail-set .product-cat-card-list {
    grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
  }
  /* .product-brochure .subtitle {
    font-size: 18px;
    justify-content: center;
  }
  .brochure-img img {
    width: 100%;
  }
  .product-online-shopping {
    padding: 0;
  }
  .product-online-shopping-box .box {
    border-radius: 15px;
    width: 110px;
    height: 110px;
    margin: 0.5rem;
    justify-content: space-evenly;
  }
  .product-online-shopping-box .box img {
    width: 50px;
  }
  .product-online-shopping-box .shopnow-btn {
    font-size: 14px;
    width: 100px;
    height: 30px;
    margin-top: unset;
  }
  .product-shop-logo img {
    height: 65px;
    margin: 0.5rem;
  }

  .pagebox .pagination .page-item {
    width: 40px;
    height: 40px;
  }

  .pagebox.bottom {
    position: relative;
    margin-top: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
  } */
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-card-list {
    grid-template-columns: 1fr 1fr;
  }
  .product-cat-card-list,
  .product-brand .detail-set .product-cat-card-list {
    grid-template-columns: 1fr 1fr;
  }
  .product-brand .head-img {
        padding: 0;
    }
}
