/* ! Product Display START */
.details-wrap, .details-wrap :nth-child(3) .bi {
  font-size: 14px;
}
.details-wrap :nth-child(1) p span{
  font-weight: 700;
}
.details-wrap .name{
  font-family: var(--font-family-noto);
  font-weight: 700;
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.details-wrap .price{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.details-wrap .description, .details-wrap .info-links {
  color: grey;
}
.img-wrap {
  object-fit: cover;
  overflow: hidden;
}
.img-wrap img {
  transition: 0.5s;
}
.img-wrap img:hover {
  scale: 1.1;
}
.quantity {
  width: 45px;
  height: 41px;
  padding: 0 5px;
  text-align: center;
  border: 1px solid rgb(210, 210, 210);
  outline: none;
  border-radius: 3px;
}
.minus-btn, .plus-btn {
  padding: 0 20px 0 15px ;
  height: 40px;
  border: 1px solid rgb(210, 210, 210);
  cursor:pointer;
  border-radius: 3px;
}
button {
  flex: 1; 
  height: 40px; 
}
input {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  cursor: pointer;
}
input:checked {
  accent-color: black;
}
/* ! Product Display END */



/* ! Recommended Products Slider START */
.recommended-products-slider .slider-title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-family-noto);
  margin-top: 80px;
  margin-bottom: 40px;
}
.slider-img {
  transition: 0.5s;
}
.slider-img:hover{
  scale: 1.03;
}
/* ! Recommended Products Slider END */