@charset "utf-8";
@font-face {
    font-family: 'hh1';
    src:url(../fonts/bold/DinNextBold.ttf);
    src:url(../fonts/bold/DinNextBold.eot);
    src:url(../fonts/bold/DinNextBold.woff);
    src:url(../fonts/bold/DinNextBold.woff2);
}
@font-face {
    font-family: 'hh2';
    src:url(../fonts/regu/DinNextRegular.ttf);
    src:url(../fonts/regu/DinNextRegular.eot);
    src:url(../fonts/regu/DinNextRegular.woff);
    src:url(../fonts/regu/DinNextRegular.woff2);
}

@font-face {
    font-family: 'hh3';
    src:url(../fonts/medium/DinNextLight.ttf);
    src:url(../fonts/medium/DinNextLight.eot);
    src:url(../fonts/medium/DinNextLight.woff);
    src:url(../fonts/medium/DinNextLight.woff2);
}

@font-face {
    font-family: 'hh22';
    src:url(../fonts/medium/DinNextMedium.ttf);
}


/* CSS Document */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'hh1';
}

p, span, body {
    font-family: 'hh2';
}
/* ===== Customer Support Bottom Bar ===== */

.customer-support-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none; /* حتى لا يمنع الضغط على الموقع، ونفعّل على المحتوى فقط */
  font-family: inherit;
  direction: rtl;
}

.csb-container {
  pointer-events: auto;
  max-width: 900px;
  margin: 0 auto 10px;
  padding: 6px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  background: linear-gradient(135deg, #b01b1f, #e0474b);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* مجموعات الايقونات يمين ويسار */
.csb-group {
  display: flex;
  align-items: center;
  gap: 6px;

  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* تظهر فقط عند الفتح */
.customer-support-bar.is-open .csb-group {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* زر الأيقونات (واتساب/هاتف) */
.csb-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.csb-btn:hover,
.csb-btn:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* زر خدمة العملاء في المنتصف */
