@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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, "Fasthand", cursive;
}

:root {
  --grey: rgba(128, 128, 128, 0.442);
  --border-color-grey: rgba(128, 128, 128, 0.442);
  --bg-card: #d4d4d440;
  --bg-sale: #3cb043;
  --bg-hover-card: #bfc1be;
  --bg-header: #f6f9f5;
  --dark-text: #333;
  --bg-header: #f6f9f5;
  --text-black: #06150a;
  --text-white: #ffffff;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
  background-color: white;
  margin: 75px auto;
  padding: 30px 25px;
  border: 1px solid white;
  width: 50%;
  position: relative;
}

.close {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  position: absolute;
  top: -15px;
  right: -15px;
  color: var(--bg-sale);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close .fa-xmark {
  display: block;
  color: var(--bg-sale);
  padding: 5px 7px;
  font-size: 15px;
  border-radius: 50%;
  border: 2px solid var(--bg-sale);
}

.text-title-popup {
  font-size: 30px;
  color: var(--text-black);
  font-weight: bold;
}

.image-popup {
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  /* background-color: var(--bg-card); */
}

.image-popup > img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.product-price-popup {
  font-size: 20px;
}
