/* Rajabi site-wide sticky bar — all pages / all devices */
:root{
  --rj-sticky-h:62px;
  --rj-sticky-font:iranyekanweblight,iranyekanwebregular,Tahoma,sans-serif;
  --rj-sticky-font-bold:iranyekanwebbold,iranyekanwebregular,Tahoma,sans-serif;
  --rj-sticky-navy:#0b2347;
  --rj-sticky-navy-2:#123665;
  --rj-sticky-gold:#c7953d;
  --rj-sticky-gold-2:#e2b966;
}

.rj-sticky-bar,
.rj-sticky-bar *{
  box-sizing:border-box;
}

.rj-sticky-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:99990;
  direction:rtl;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.98));
  border-top:1px solid #e9e1d5;
  box-shadow:0 -10px 30px rgba(11,35,71,.10);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.rj-sticky-bar__inner{
  width:min(1180px,calc(100% - 8px));
  margin-inline:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.rj-sticky-bar__btn{
  min-height:48px;
  padding:0 14px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  text-decoration:none !important;
  font-family:var(--rj-sticky-font-bold) !important;
  font-size:15px;
  font-weight:700;
  line-height:1.35;
  transition:transform .2s ease,box-shadow .2s ease;
}
.rj-sticky-bar__ico{
  width:20px;
  height:20px;
  flex:0 0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.rj-sticky-bar__ico svg{
  width:100%;
  height:100%;
  display:block;
}
.rj-sticky-bar__label{
  white-space:nowrap;
}

.rj-sticky-bar__btn:hover,
.rj-sticky-bar__btn:focus{
  transform:translateY(-1px);
}

.rj-sticky-bar__btn--primary{
  color:#142033 !important;
  background:linear-gradient(135deg,var(--rj-sticky-gold),var(--rj-sticky-gold-2));
  box-shadow:0 8px 20px rgba(199,149,61,.28);
}

.rj-sticky-bar__btn--secondary{
  color:#fff !important;
  background:linear-gradient(135deg,var(--rj-sticky-navy),var(--rj-sticky-navy-2));
  box-shadow:0 8px 20px rgba(11,35,71,.18);
}

.rj-sticky-bar__btn--secondary:visited,
.rj-sticky-bar__btn--secondary:hover,
.rj-sticky-bar__btn--secondary:focus{
  color:#fff !important;
}

/* فضای پایین صفحه تا محتوا زیر نوار نرود */
body.rj-has-sticky-bar{
  padding-bottom:calc(var(--rj-sticky-h) + env(safe-area-inset-bottom,0px) + 16px);
}

@media (max-width:640px){
  :root{--rj-sticky-h:56px}
  .rj-sticky-bar{padding:8px 12px calc(8px + env(safe-area-inset-bottom,0px))}
  .rj-sticky-bar__inner{gap:8px}
  .rj-sticky-bar__btn{
    min-height:46px;
    font-size:14px;
    padding:0 10px;
    gap:6px;
  }
  .rj-sticky-bar__ico{
    width:18px;
    height:18px;
    flex-basis:18px;
  }
}

@media (min-width:981px){
  .rj-sticky-bar__inner{
    max-width:720px;
    margin-inline:auto;
  }
}