.payment-methods {
    margin-top: 40px;
    text-align: center;
}

.payment-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.payment-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.payment-item img {
    height: 35px;
    max-width: 120px;
    object-fit: contain;
}

.payment-item span {
    font-weight: 600;
    color: #ffffff;
}

.payment-item small {
    font-size: 0.9rem;
    color: #dddddd;
}

.instapay-icon {
    font-size: 2rem;
}/* Vodafone Wallet Style */
.btn {
  border: none;
  width: 15em;
  height: 5em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 450ms ease-in-out;
}

.sparkle {
  fill: #ff0000;
  transition: all 800ms ease;
}

.text {
  font-weight: 600;
  color: #000000;
  font-size: medium;
}

.btn:hover {
  background: linear-gradient(0deg, #fe6868, rgb(255, 0, 0));
  box-shadow:
    inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
    inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 4px rgba(255, 255, 255, 0.2),
    0px 0px 180px 0px #9917ff;
  transform: translateY(-2px);
}

.btn:hover .text {
  color: white;
}

.btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
}

.wallet-icon {
    font-size: 2.2rem;
    margin-bottom: 5px;
}
}/* تنسيق موحد لزرار فودافون وانستا باي */
.btn, .insta-btn {
  border: none;
  width: 15em;
  height: 5em;
  border-radius: 3em;
  display: flex;
  flex-direction: row; /* يخلي النص والايقونة جنب بعض */
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  position: relative; /* لضمان ثبات العناصر داخل الزرار */
}

/* حجم الأيقونات وتأثيرها */
.sparkle, .insta-sparkle {
  width: 24px;
  height: 24px;
}

 /* حجم الإيموجي */
}

.wallet-icon .text {
    font-size: 14px;
    font-weight: bold;
}/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;  /* لجعل الزرار على اليسار */
    right: auto; /* لضمان إلغاء أي أمر جهة اليمين */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* InstaPay Button Only */
.insta-btn {
  border: none;
  width: 15em;
  height: 5em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 450ms ease-in-out;
}

.insta-sparkle {
  fill: #cb41bb;
  transition: all 800ms ease;
}

.insta-text {
  font-weight: 600;
  color: #000000;
  font-size: medium;
}

.insta-btn:hover {
  background: linear-gradient(0deg, #e665e6, rgb(241, 1, 209));
  box-shadow:
    inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
    inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 4px rgba(255, 255, 255, 0.2),
    0px 0px 180px 0px #9917ff;
  transform: translateY(-2px);
}

.insta-btn:hover .insta-text {
  color: white;
}

.insta-btn:hover .insta-sparkle {
  fill: white;
  transform: scale(1.2);
}