@import url('https://fonts.googleapis.com/css2?family=Fasthand&family=Hanuman:wght@100;300;400;700;900&family=Noto+Serif+Khmer:wght@800&family=Poppins:wght@400;600;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --font-hunuman: "Hanuman", serif;
  --border-color-grey: rgba(128, 128, 128, 0.442);
  --bg-card: #F0F1F0;
  --bg-sale: #3CB043;
  --text-white: #ffffff;
  --bg-hover-card: #bfc1be;
  --color-grey: rgba(128, 128, 128, 0.442);
  --bg-header: #F6F9F5;
  --text-black: #06150A;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family:"Poppins", sans-serif  ,  "Fasthand", cursive;
}


 .conatiner {
  width: 1200px;
  margin: auto;
}
.conatiner .row .col-6 .box-image {
  padding: 50px;
  width: 100%;
  height: 700px;
  border-radius: 7px;
  background-color: var(--bg-card);
}
.box-image > img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.conatiner .row .col-6 .box-contain {
  width: 100%;
  height: 700px;
  padding: 0 40px;
  color: var(--text-black);
}

.conatiner .row .col-6 .box-contain .text-title {
  font-size: 30px;
  font-weight: bolder;
}

.product-price {
  color: var(--text-black);
}
.price {
  display: flex;
  gap: 1rem;
}
.box-input {
  display: flex;
  gap: 16px;
}
.box-input > input {
  width: 50px;
}

.counter {
  display: block;
  border: 2px solid var(--bg-sale);
  display: flex;
  width: 100px;
  justify-content: center;
  align-items: center;
  color: var(--bg-sale);
}


.wislish-button {
  border: 2px solid var(--bg-sale);
  display: flex;
  width: 60px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background-color: var(--text-white);
  transition: 0.3s;
  cursor: pointer;
}

.wislish-button .fa-heart {
  color: var(--bg-sale);
  font-size: 25px;
  transition: 0.3s;
}

.wislish-button:hover .fa-heart {
  color: var(--bg-sale);
}

.wislish-button .cart-icon {
  color: var(--bg-sale);
  font-size: 25px;
  transition: 0.3s;
}

.wislish-button:hover .cart-icon {
  color: var(--bg-sale);
}



.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  background-color: transparent;
  font-weight: 550;
  outline: none;
  color: var(--bg-sale);
}

.quantity-btn {
  background: transparent; 
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--bg-sale);
  font-weight: 550;
}



.add-to-cart {
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 8px 0;
  font-size: 20px;
  width: 100%;
  background: transparent;
  border: 2px solid var(--bg-sale);
  color: var(--bg-sale);
  margin-top: 16px;
  transition: 0.2s linear;
}

.add-to-cart:hover {
  background-color: var(--bg-sale);
  color: var(--text-white);
}


.icon-color {
  color: var(--bg-sale);
}

.product-detail-horizontal {
  margin: 20px 0;
}

.box-service {
  width: 100%;
  color: var(--text-black);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.box-service > span {
  width: 100%;
  display: flex;
  align-items: center;
}

.box-service > span i {
  padding-right: 13px;
}
.nav-link-categories {
  padding: 0 5px;
  color: var(--bg-sale);
}

.prodcut-id {
  padding: 0 30px;
}


/* section popular product */

/* .popular-product {
  padding: 100px 0;
} */

.popular-product .container .row .col-12 .text-title {
  padding: 50px 0;
  text-align: center;
  font-size: 30px;
  color: var(--text-black);
  font-weight: bold;
}

