/* ============================================================
   TAGHLEEFY — Custom Packaging Banner  v2.0  |  D2C  |  RTL
   ============================================================ */

:root {
  --tagh-ink-900:     #0A121F;
  --tagh-ink-700:     #16283F;
  --tagh-teal:        #0E9F9A;
  --tagh-teal-hover:  #0C8580;
  --tagh-teal-dim:    rgba(14,159,154,0.14);
  --tagh-text:        #E2E8F0;
  --tagh-muted:       #94A3B8;
  --tagh-white:       #FFFFFF;
  --tagh-ease:        220ms cubic-bezier(0.2,0,0.2,1);
  --tagh-glow-teal:   0 0 32px rgba(14,159,154,0.30);
}

.tagh-cpb, .tagh-cpb * { box-sizing: border-box; }

.tagh-cpb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tagh-ink-900) 0%, var(--tagh-ink-700) 100%);
  padding: 88px 24px;
  direction: rtl;
  font-family: 'Tajawal', 'Cairo', 'Segoe UI', system-ui, sans-serif;
  text-align: center;
}

.tagh-cpb__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.tagh-cpb__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,159,154,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,159,154,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
}
.tagh-cpb__glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
}
.tagh-cpb__glow--right {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(14,159,154,0.35), transparent 70%);
  top: -140px; right: -100px;
}
.tagh-cpb__glow--left {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(14,159,154,0.2), transparent 70%);
  bottom: -160px; left: -100px;
}

.tagh-cpb__container {
  position: relative; z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tagh-cpb__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--tagh-teal-dim);
  border: 1px solid rgba(14,159,154,0.35);
  color: var(--tagh-teal);
  box-shadow: var(--tagh-glow-teal);
  margin-bottom: 24px;
}

.tagh-cpb__title {
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  font-weight: 800;
  color: var(--tagh-white);
  line-height: 1.4;
  margin: 0 0 16px;
}

.tagh-cpb__subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  color: var(--tagh-muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 0 36px;
}

.tagh-cpb__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tagh-teal);
  color: var(--tagh-ink-900);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 17px 38px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--tagh-glow-teal);
  transition: transform var(--tagh-ease), background var(--tagh-ease), box-shadow var(--tagh-ease);
}
.tagh-cpb__cta:hover {
  background: var(--tagh-teal-hover);
  color: var(--tagh-white);
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(14,159,154,0.45);
}
.tagh-cpb__cta-arrow { transition: transform var(--tagh-ease); }
.tagh-cpb__cta:hover .tagh-cpb__cta-arrow { transform: translateX(-4px); }
