body {
  direction: rtl;
  text-align: right;
}

:root{
  --bg: #f4faf7;
  --card: #ffffff;
  --text: #0b1f14;
  --muted: #5c6f63;

  --green: #014aad;           /* الأساسي */
  --green-2: #2b6fe0;         /* فاتح */
  --mint: #edf4ff;            /* خلفيات فاتحة */
  --mint-2: #dbe8ff;

  --shadow: 0 14px 30px rgba(0,0,0,.08);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.07);

  --radius: 18px;
  --radius-lg: 24px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Container */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.topbar__inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.topbar__nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.topbar__link{
  display:flex;
  gap: 8px;
  align-items:center;
  text-decoration:none;
  color: #1f2d24;
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
  transition: transform .2s ease, opacity .2s ease;
}
.topbar__link:hover{ transform: translateY(-1px); opacity: 1; }
.icon{ font-size: 14px; opacity: .8; }

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:none;
  box-shadow:none;
  border:none;
  padding:0;
  width:auto;
  height:auto;
}

.logo{
  width:130px;
  height:50px;
  display:block;
  filter:drop-shadow(0 6px 12px rgba(1,74,173,.18));
}
.brand__mark{ font-size: 20px; }

/* Hero */
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: #041226;
}
.hero__bg{
  background:
    radial-gradient(1200px 520px at 50% 0%, rgba(43,111,224,.25), transparent 60%),
    radial-gradient(900px 420px at 15% 20%, rgba(43,111,224,.15), transparent 55%),
    radial-gradient(900px 420px at 85% 20%, rgba(43,111,224,.12), transparent 55%),
    linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}

/* خطوط “شبه نيون” بالخلفية */
.hero__bg::before{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='700'%3E%3Cg fill='none' stroke='%23014aad' stroke-opacity='.35' stroke-width='5'%3E%3Cpath d='M60 120 C220 40, 320 240, 520 140 S 860 220, 1040 120'/%3E%3Cpath d='M120 320 C260 220, 360 460, 560 360 S 900 420, 1120 320'/%3E%3Cpath d='M80 520 C260 460, 340 660, 560 560 S 880 640, 1120 520'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: .45;
  transform: rotate(-6deg);
  filter: blur(0.2px);
}

/* “كرتون” بالأطراف */
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(260px 260px at 6% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(260px 260px at 94% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(340px 340px at 8% 70%, rgba(0,0,0,.35), transparent 65%),
    radial-gradient(340px 340px at 92% 70%, rgba(0,0,0,.35), transparent 65%);
}

.hero__content{
  position: relative;
  padding: 64px 0 72px;
  text-align:center;
  color: #fff;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.hero__title{
  margin: 18px 0 10px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 18px 40px rgba(0,0,0,.38);
}
.hero__subtitle{
  margin: 0 auto 26px;
  max-width: 640px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 600;
}

.hero__actions{
  display:flex;
  justify-content:center;
  gap: 12px;
}

.btn{
  border:0;
  cursor:pointer;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn--ghost{
  color: var(--green);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
}
.btn--ghost:hover{ transform: translateY(-2px); filter: brightness(1.01); }

.btn__arrow{ font-size: 18px; transform: translateY(-1px); }

/* Section */
.section{
  padding: 54px 0 70px;
  background: #f3f7ff;
}
.section__title{
  text-align:center;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 900;
  color: #0c2316;
}
.section__hint{
  text-align:center;
  margin: 8px 0 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* Grid */
.grid{
  display:grid;
  gap: 18px;
}
.coupons{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px){
  .coupons{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .coupons{ grid-template-columns: 1fr; }
}

/* Coupon Card */
.coupon{
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  overflow:hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: rise .7s ease forwards;
}
.coupon:nth-child(1){ animation-delay: .03s; }
.coupon:nth-child(2){ animation-delay: .08s; }
.coupon:nth-child(3){ animation-delay: .13s; }
.coupon:nth-child(4){ animation-delay: .18s; }
.coupon:nth-child(5){ animation-delay: .23s; }
.coupon:nth-child(6){ animation-delay: .28s; }

@keyframes rise{
  to { transform: translateY(0); opacity: 1; }
}

.coupon:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.coupon__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding: 16px 16px 10px;
}

.badge{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width: 70px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), #fff);
  border: 1px solid rgba(22,163,74,.18);
}
.badge__num{
  color: var(--green);
  font-weight: 1000;
  font-size: 18px;
  line-height: 1;
}
.badge__lbl{
  margin-top: 3px;
  font-size: 12px;
  font-weight: 900;
  color: #214b88;
  opacity:.9;
}

.coupon__meta{
  text-align:right;
}
.coupon__store{
  font-weight: 1000;
  font-size: 16px;
  margin-bottom: 6px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  border: 1px solid rgba(22,163,74,.16);
  color: #214b88;
  font-weight: 900;
  font-size: 12px;
}

/* Code box */
.coupon__codeWrap{
  padding: 10px 16px 10px;
}
.codebox{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfffd);
  border: 2px dashed rgba(1,74,173,.25);
}

.codebox__left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.dot{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), #fff);
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(1,74,173,.22);
}
.dot::before{
  content:"🏷️";
  font-size: 14px;
  transform: translateY(-.5px);
}

.code{
  font-weight: 1000;
  letter-spacing: .9px;
  font-size: 15px;
  color: #0b1f14;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.copyHint{
  font-size: 12px;
  font-weight: 800;
  color: #34527d;
  opacity: .8;
}

/* Expiry row */
.coupon__foot{
  padding: 0 16px 14px;
}
.expiry{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f3f7ff;
  border: 1px solid rgba(0,0,0,.05);
  color: #34527d;
  font-weight: 900;
  font-size: 12px;
}
.expiry .cal{ opacity:.85; }

/* Copy button */
.coupon__actions{
  padding: 0 16px 16px;
}
.copyBtn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 1000;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #003b8a);
  box-shadow: 0 12px 24px rgba(1,74,173,.25);
  cursor:pointer;
  position: relative;
  overflow:hidden;
  transition: transform .2s ease, filter .2s ease;
}
.copyBtn:hover{ transform: translateY(-2px); filter: brightness(1.02); }
.copyBtn:active{ transform: translateY(0); }

/* Ripple */
.copyBtn::after{
  content:"";
  position:absolute;
  inset:auto;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  pointer-events:none;
}
.copyBtn.ripple::after{
  left: var(--x);
  top: var(--y);
  opacity: 1;
  animation: ripple .55s ease forwards;
}
@keyframes ripple{
  to{ transform: translate(-50%,-50%) scale(32); opacity: 0; }
}

/* Footer */
.footer{
  background: #ffffff;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(0,0,0,.05);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  color: #1f2d24;
  font-weight: 900;
}
.footer__copy{
  color: #4e6357;
  font-weight: 800;
  font-size: 13px;
}

/* Toast */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  transform: translateY(14px);
  opacity: 0;
  pointer-events:none;
  transition: transform .25s ease, opacity .25s ease;
}
.toast.show{
  transform: translateY(0);
  opacity: 1;
}
.toast__icon{ font-size: 16px; }
.toast__text{ font-weight: 900; color: #163123; }


.topbar__inner{
  flex-direction: row-reverse;
}

.topbar__nav{
  flex-direction: row-reverse;
}

.privacy-box{
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.privacy-box h3{
  margin-top: 20px;
  font-size: 18px;
  color: #014aad;
}

.privacy-box p{
  line-height: 1.8;
  color: #444;
  font-weight: 600;
}

.visitBtn{
  display: block;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
}
/* الحاوية */
#ui-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

  margin: 0 auto 20px;
  padding: 10px 15px;

  background: #edf4ff;
  border-radius: 14px;
  width: fit-content; /* يخليه بحجم المحتوى */
}

/* الشكل العام */
#filterSelect,
#searchInput,
#sortSelect {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #d6efe8;
  background: #edf4ff;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* عند التحديد */
#filterSelect:focus,
#searchInput:focus,
#sortSelect:focus {
  outline: none;
  border-color: #014aad;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(32, 164, 135, 0.15);
}

/* البحث تحديدًا */
#searchInput {
  min-width: 200px;
}

/* hover بسيط */
#filterSelect:hover,
#searchInput:hover,
#sortSelect:hover {
  border-color: #003b8a;
}

/* تحسين شكل dropdown */
#filterSelect,
#sortSelect {
  cursor: pointer;
}
.categories {
  padding: 40px 0;
}

.cat-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cat-slider::-webkit-scrollbar {
  display: none;
}

.cat {
  min-width: 120px;
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: #0b1f14;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.cat:hover {
  transform: translateY(-3px);
}

.cat img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid #dff3e8;
}

.cat span {
  font-weight: 800;
  font-size: 13px;
}
    .banner-container {
        width: 100%;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    .banner {
        width: 100%;
        max-width: 1280px;
        overflow: hidden;
    }

    .banner img {
        width: 100%;
        height: auto;
        display: none;
    }

    /* صورة الديسكتوب */
    .desktop-banner {
        display: block;
    }

    /* الجوال */
    @media (max-width: 768px) {
        .desktop-banner {
            display: none;
        }

        .mobile-banner {
            display: block;
        }
    }
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #014aad;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cookie-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-icon {
  font-size: 22px;
}

.cookie-content button {
  background: #fff;
  color: #014aad;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: 0.2s;
}

.cookie-content button:hover {
  transform: scale(0.98);
  opacity: 0.95;
}

/* للجوال */
@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 30px);
    right: 15px;
    bottom: 15px;
  }
}
/* خلفية عامة */
body{
  background: linear-gradient(135deg,#e8fdf5,#f0fff8);
}

/* الكرت الرئيسي */
.smart-wallet{
  width:min(750px,92%);
  margin:40px auto;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px);
  border-radius:24px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  border:1px solid rgba(255,255,255,.4);
  transition:.3s;
}

.smart-wallet:hover{
  transform: translateY(-3px);
}

/* العنوان */
.wallet-header h2{
  margin:0;
  color:#014aad;
  font-size:22px;
}

.wallet-header p{
  margin:6px 0 18px;
  color:#6b7c72;
  font-weight:600;
}

/* الهدف */
.wallet-goal{
  background:linear-gradient(135deg,#f3f7ff,#e8f0ff);
  padding:16px;
  border-radius:16px;
  margin-bottom:15px;
  border:1px solid #dff3e8;
}

.wallet-goal input{
  width:100%;
  padding:11px;
  margin:10px 0;
  border-radius:12px;
  border:1px solid #dff3e8;
  transition:.2s;
}

.wallet-goal input:focus{
  border-color:#014aad;
  outline:none;
  box-shadow:0 0 0 3px rgba(1,74,173,.15);
}

.wallet-goal button{
  width:100%;
  padding:11px;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg,#014aad,#2b6fe0);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:.2s;
}

.wallet-goal button:hover{
  transform:scale(1.02);
  box-shadow:0 10px 20px rgba(1,74,173,.25);
}

/* الحاسبة */
.wallet-calc{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}

.wallet-calc input{
  flex:1;
  padding:11px;
  border-radius:12px;
  border:1px solid #dff3e8;
}

.wallet-calc button{
  background:linear-gradient(135deg,#014aad,#2b6fe0);
  color:#fff;
  border:0;
  padding:11px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  transition:.2s;
}

.wallet-calc button:hover{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(22,163,74,.3);
}

/* النتيجة */
.wallet-result{
  background:linear-gradient(135deg,#eafff2,#d9fbe8);
  padding:12px;
  border-radius:12px;
  margin-bottom:15px;
  font-weight:800;
  text-align:center;
}

/* الإحصائيات */
.wallet-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:15px;
}

.wallet-stats div{
  background:#fff;
  padding:14px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:.2s;
}

.wallet-stats div:hover{
  transform:translateY(-3px);
}

.wallet-stats strong{
  color:#014aad;
  font-size:18px;
}

/* شريط التقدم */
.wallet-progress{
  height:12px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:15px;
}

#progressBar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#014aad,#5f97ff);
  transition:.4s ease;
}

/* السجل */
.wallet-history .item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  padding:12px;
  border-radius:14px;
  margin-bottom:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:.2s;
}

.wallet-history .item:hover{
  transform:translateX(-4px);
}

.wallet-history button{
  background:#ef4444;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:6px 10px;
  cursor:pointer;
  transition:.2s;
}

.wallet-history button:hover{
  background:#dc2626;
  transform:scale(1.1);
}

/* النصائح */
.wallet-tips{
  margin-top:20px;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.wallet-tips li{
  margin-bottom:8px;
  color:#5c6f63;
  font-weight:600;
}

/* الجوال */
@media (max-width:768px){
  .wallet-calc{
    flex-direction:column;
  }

  .wallet-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:480px){
  .wallet-stats{
    grid-template-columns:1fr;
  }
}
.reset-card{
  background: linear-gradient(135deg,#fff,#f9f9f9);
  padding:14px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.reset-card span{
  font-size:12px;
  color:#6b7c72;
  font-weight:600;
}

.reset-card button{
  background:#ef4444;
  color:#fff;
  border:none;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:800;
  transition:.2s;
}

.reset-card button:hover{
  background:#dc2626;
  transform:scale(1.05);
}
.progress-panel{
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  margin-bottom: 15px;
  text-align: center;
}

/* العنوان */
.progress-header{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:#014aad;
  margin-bottom:10px;
}

/* الدائرة */
.progress-circle{
  width:90px;
  height:90px;
  margin:10px auto;
  border-radius:50%;
  background: conic-gradient(#014aad 0%, #eee 0%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:18px;
  color:#111;
}

/* الحالة */
.progress-status{
  font-size:13px;
  color:#5c6f63;
  margin-bottom:10px;
}

/* البار السفلي */
.progress-bar-bg{
  width:100%;
  height:10px;
  background:#eee;
  border-radius:999px;
  overflow:hidden;
}

#progressBar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg,#014aad,#5f97ff);
  transition:.4s;
}
.footer__cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer__cert-text {
  font-size: 12px;
  color: #aaa;
}

.footer__cert-img {
  width: 100px;
  height: auto;
}
.coupon{
  overflow: visible; /* بدل hidden */
}

/* حالة التعطيل */
.coupon.disabled {
  pointer-events: none;
  filter: blur(2px) grayscale(70%);
  opacity: 0.7;
}

/* طبقة تغطية */
.coupon.disabled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  z-index: 2;
}

/* ختم "قريباً" */
.coupon.disabled::after{
  content: "قريباً";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);

  color: #c1121f;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: 2px;

  border: 3px solid #c1121f;
  padding: 10px 28px;
  border-radius: 12px;

  background: rgba(255,255,255,0.15);

  z-index: 10;

  box-shadow:
    0 0 0 2px rgba(193,18,31,.15),
    0 8px 20px rgba(0,0,0,.25);

  text-transform: uppercase;
}
.coupon{
  position: relative;
  overflow: visible; /* مهم */
}

.coupon.disabled::after{
  z-index: 9999; /* خله فوق كل شيء */
}
.pwa-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.pwa-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.pwa-content h3 {
  margin-bottom: 10px;
}

.pwa-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #014aad;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}