/* ================================
   Notifications - Cash Discount & VPN
   ================================ */

#checkout-global-notices {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ============= Cash Discount Notification ============= */
#cash-discount-notice {
  background: #d2e4da;
  color: #207845;
  padding: 8px;
  margin: 0 0 15px 0;
  border: none;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius:8px;
}

#cash-discount-notice svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

#cash-discount-notice strong {
  font-weight: 700;
}

/* ============= VPN Warning Notification ============= */
#checkout-global-notices .vpn-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffaca4;
  color: #c0392b;
  padding: 8px;
  margin: 0;
  border: none;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
div#cash-discount-notice img {
  width: 20px;
  height: auto;
}
/* ============= Mobile Responsive ============= */
@media (max-width: 768px) {
  #cash-discount-notice {
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px;
  }

  #cash-discount-notice svg {
    width: 24px;
    height: 24px;
  }

  #checkout-global-notices .vpn-warning {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #cash-discount-notice {
    padding: 10px 12px;
    font-size: 12px;
    gap: 8px;
  }

  #cash-discount-notice svg {
    width: 20px;
    height: 20px;
  }

  #checkout-global-notices .vpn-warning {
    padding: 10px 12px;
    font-size: 12px;
  }
}
