h3.text-lg.opacity-60.font-normal.mb-2.text-store-text-secondary:before {
    content: "";
    background-image: url(https://i.ibb.co/ZpqGSskY/c-Je-Aebg-Eyb8-MGDP0-DRis-U5i-UKx88f-SH9vn-ABWAcy-1.png);
    display: block;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
        margin: 0 auto;
}




/*==============popup=============  */
.eva-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.eva-popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  position: relative;
  animation: fadeIn 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.eva-popup-box h2 {
  color: #d2b158;
  margin-bottom: 10px;
  font-size: 20px;
}

.eva-popup-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.eva-code-box {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.eva-code-box span {
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
}

.eva-code-box button {
  background: #d2b158;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eva-code-box button:hover {
  opacity: 0.9;
}

.eva-code-box button:active {
  transform: scale(0.95);
}

.eva-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}

.eva-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}