.gold-guarantee-card{
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gold-guarantee-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(212,175,55,0.45);
}

.gold-guarantee-card:active{
  transform: scale(0.98);
}

.gold-guarantee-card{
  margin:20px 0;
  padding:18px 16px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:14px;
  background: linear-gradient(135deg, #f6e6b4, #d4af37);
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
  animation: floatCard 2.5s ease-in-out infinite;
}

.gold-icon{
  font-size:32px;
  animation: pulseIcon 1.6s infinite;
}

.gold-text strong{
  display:block;
  font-size:16px;
  color:#4a3b00;
}

.gold-text span{
  font-size:14px;
  color:#5f4c00;
}

/* حركة طفو خفيفة */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* نبض للأيقونة */
@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}















.live-purchases{
  margin:15px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  background: linear-gradient(135deg, #fff7e6, #ffe1b3);
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  color:#7a3e00;
  box-shadow:0 6px 15px rgba(255,140,0,0.25);
  animation:pulseBox 2.5s infinite;
}

.live-purchases .fire{
  font-size:20px;
  animation:fireMove 0.9s infinite alternate;
}

.live-purchases .text{
  opacity:0;
  transform:translateY(6px);
  transition:all 0.4s ease;
}

.live-purchases .text.show{
  opacity:1;
  transform:translateY(0);
}

/* حركة النار */
@keyframes fireMove{
  from{
    transform:rotate(-8deg) scale(1);
  }
  to{
    transform:rotate(8deg) scale(1.25);
  }
}

/* نبض الصندوق */
@keyframes pulseBox{
  0%{
    box-shadow:0 0 0 rgba(255,140,0,0.4);
  }
  50%{
    box-shadow:0 0 18px rgba(255,140,0,0.55);
  }
  100%{
    box-shadow:0 0 0 rgba(255,140,0,0.4);
  }
}




















/* صندوق عرض العيد */
.eid-offer-box{
  border:2px dashed #e3c26b;
  padding:20px;
  border-radius:16px;
  text-align:center;
  background:#fffaf0;
  margin:25px 0;
}

.eid-offer-box h3{
  margin-bottom:15px;
  font-size:18px;
}

.eid-offer-box h2{
  margin-bottom:18px;
  font-size:16px;
}

/* زر العرض */
.eid-tags{
  display:flex;
  justify-content:center;
  margin-bottom:15px;
}

.tag{
  color:#fff;
  border-radius:25px;
  display:inline-block;
}

.tag.combo{
  background: linear-gradient(135deg, #f39c12, #2ecc71);
  font-weight:bold;
  font-size:15px;
  padding:10px 22px;
}

/* الكوبون */
.coupon-box{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:10px 0;
}

.coupon{
  border:2px solid #e3c26b;
  padding:10px 22px;
  font-weight:bold;
  border-radius:10px;
}

.copy-coupon{
  background:#000;
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:10px;
  cursor:pointer;
}

/* نص مساعد */
.coupon-text{
  margin-bottom:8px;
}