:root {
  --bg: #071028;
  --card: #f8fafc;
  --accent: #06b6d4;
  --accent2: #7c3aed;
  --muted: #9aa7b6;
  --glass: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, #021226 100%);
  color: var(--card);
}

/* ========== العناصر العامة ========== */
.container {
  max-width: 1200px;
  margin: 28px auto;
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand h1 {
   color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00ffff;
}
.brand h1:hover {
  transform: scale(1.04);
  text-shadow: 0 0 14px rgba(124, 58, 237, 0.8),
    0 0 26px rgba(6, 182, 212, 0.6);
}
.brand h1 {
  font-size: 2.0rem; /* كان 2.2rem - كبرناها */
  font-weight: 800;
  color: #00e5ff;
  text-shadow: 0 0 15px #2a9df4, 0 0 35px #0048ff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #021226;

}



/* على الجوال */
@media (max-width: 768px) {
  .nav-logo img {
    width: 270px !important;  /* الحجم على الجوال */
    height: auto !important;

  }
}

h1 {
  margin: 0;
  font-size: 22px;
}

p.lead {
  margin: 0;
  color: var(--muted);
}

/* ========== كروت المنتجات ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}


.img {
  width: 100%;
  height: 280px; /* زودنا الطول قليلاً */
  border-radius: 0px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  margin-bottom: 10px;
  overflow: hidden;
}

.img img {
  width: 110%; /* زودنا العرض قليلاً */
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  
}

/* تأثير بسيط عند المرور */
.img:hover img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 👈 يخليها مربعة على الجوال */
    height: auto !important; /* نلغي أي ارتفاع ثابت */
  }

  .img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* عشان الصورة تملى المربع بدون تشوه */
  }
}



.title {
  font-weight: 800;
  color: #e6eef8;
  margin-bottom: 6px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.chip {
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--card);
}

.actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--card);
}

footer {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 6px 8px;
  border-radius: 8px;
  color: #000000;
  font-weight: 900;
  font-size: 12px;
}

/* ========== المودال ========== */


.modal {
  max-width: 900px;
  width: 90%;
  background: linear-gradient(180deg, #021226, #071028);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(2, 6, 19, 0.8);
  display: flex;
  gap: 16px;
  align-items: center;
}

.modal .modal-img {
  flex: 1;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  
}

.modal .modal-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

.modal .modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  color: var(--card);
  font-size: 22px;
  padding: 6px;
  cursor: pointer;
}

/* ========== ريسبونسيف ========== */
@media (max-width: 720px) {
  .modal {
    flex-direction: column;
  }
  .modal .modal-img {
    min-height: 200px;
  }
}

@media (max-width: 520px) {
  .img {
    height: 140px;
  }
}

/* ========== شريط الروابط العلوي ========== */
.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}

.top-nav a {
  color: var(--card);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }
}

/* ========== قسم المميزات ========== */
.features-intro {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.features-intro h2 {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5), 0 0 16px rgba(6, 182, 212, 0.4);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.features-intro h2:hover {
  transform: scale(1.04);
  text-shadow: 0 0 14px rgba(124, 58, 237, 0.8),
    0 0 26px rgba(6, 182, 212, 0.6);
}

/* ========== كروت المميزات ========== */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.intro-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: var(--card);
  transition: all 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.intro-card .icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}

.intro-card h3 {
  margin: 6px 0;
  font-size: 18px;
  color: #fff;
}

.intro-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ========== قسم لمن يناسب ========== */
.for-all {
  text-align: center;
  margin: 60px 0;
}

.for-all h2 {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5), 0 0 16px rgba(6, 182, 212, 0.4);
  margin-bottom: 40px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.for-all h2:hover {
  transform: scale(1.04);
  text-shadow: 0 0 14px rgba(124, 58, 237, 0.8),
    0 0 26px rgba(6, 182, 212, 0.6);
}

.for-all .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.for-all .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.for-all .card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.for-all .icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}

.for-all .card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.for-all .card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ========== الشريط العلوي الثابت ========== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 18, 38, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* الروابط على اليسار */
.nav-left {
  position: absolute;
  left: 40px;
  display: flex;
  gap: 20px;
}

.nav-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-left a:hover {
  color: var(--accent);
}

/* اللوجو في المنتصف */
.nav-logo img {
  width: 180px;
  height: auto;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* زر القائمة للجوال */
.menu-toggle {
  position: absolute;
  right: 20px;
  background: var(--accent2);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}

/* القائمة الجانبية للجوال */
.side-nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 220px;
  height: 100%;
  background: #021226;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 80px 20px;
  transition: right 0.3s ease;
  z-index: 1001;
}

.side-nav.open {
  right: 0;
}

.side-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.side-nav a:hover {
  color: var(--accent);
}

/* التراك عند فتح القائمة */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

.overlay.show {
  display: block;
}

/* الهواتف */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-left {
    display: none;
  }
  .nav-logo img {
    width: 60px;
    height: 60px;
  }
}

/* تعويض الشريط العلوي الثابت */
body {
  padding-top: 100px;
}
/* المودال (نافذة عرض الصورة) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

/* النافذة */
/* المودال الأساسي */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* محتوى المودال */
.modal-content {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  max-width: 600px;  /* 👈 حجم الصورة المعقول */
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* الصورة داخل المودال */
.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff0000; /* خلفية الزر */
  color: #000000 !important; /* X لونها أسود دايمًا */
  border: none;
  border-radius: 50%;

  font-weight: bold; 
  width: 60px;
height: 60px;
font-size: 32px;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* لما تحط الماوس عليه */
.modal-close:hover {
  background: #4f21bb; /* الزر نفسه يصبح أسود */
  color: #ffffff !important; /* X تتحول للأحمر */
  transform: scale(1.1);
}
/* قسم روابط السوشيال */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-links a {
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00bcd4; /* لون متدرج جميل عند المرور */
  transform: scale(1.2);
}


/* أيقونات السوشيال ميديا أسفل القائمة */
.menu-social {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social a {
  color: #fff;
  font-size: 30px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu-social a:hover {
  color: var(--accent);
  transform: scale(1.2);
}


.price-box {
  display: flex;
  flex-direction: column; /* يخليهم تحت بعض */
  align-items: center;
  margin-top: 10px;
  gap: 4px;
}

.new-price {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00e0ff, #a37bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(0, 224, 255, 0.3);
}

.old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  opacity: 0.7;
}
 /*  اراء  


.testimonials {
  text-align: center;
  margin: 60px auto;
  padding: 40px 0;
  background: linear-gradient(to right, #0a0f1c, #0f1830);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #00ffff;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 80%;
}

.slide {
  min-width: 220px;
  transition: transform 0.5s ease-in-out;
}

.slide img {
  width: 220px;
  height: 220px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

 أزرار التنقل 
.prev-btn, .next-btn {
  background-color: rgba(0,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0,255,255,0.5);
}

.prev-btn {
  margin-right: 10px;
}

.next-btn {
  margin-left: 10px;
}

 للجوال 
@media (max-width: 768px) {
  .slide img {
    width: 160px;
    height: 160px;
  }

  .slider {
    width: 90%;
  }

  .prev-btn, .next-btn {
    font-size: 22px;
    padding: 8px 12px;
  }
}

.testimonials h2 {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5), 0 0 16px rgba(6, 182, 212, 0.4);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.testimonials h2:hover {
  transform: scale(1.04);
  text-shadow: 0 0 14px rgba(124, 58, 237, 0.8),
    0 0 26px rgba(6, 182, 212, 0.6);
}
.testimonials .section-title {
  font-size: 2.8rem; /* كان 2.2rem - كبرناها 
  font-weight: 800;
  color: #00e5ff;
  text-shadow: 0 0 15px #2a9df4, 0 0 35px #0048ff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}*/



/* ===== HERO STYLES ===== */
.hero {
  position: relative;
  height: calc(100vh - 100px); /* يقلل من ارتفاع الهيرو لتعويض الهيدر الثابت */
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(2,6,19,0.85), rgba(3,18,38,0.85));
}

/* شريط خلفي ناعم (ممكن تغيره لصورة خلفية) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(124,58,237,0.12), transparent 8%),
              radial-gradient(circle at 85% 80%, rgba(6,182,212,0.12), transparent 10%);
  pointer-events: none;
  z-index: 0;
}

/* محتوى الهيرو */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: var(--card);
  padding: 40px 20px;
  box-sizing: border-box;

  /* دخول انسيابي */
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 900ms cubic-bezier(.22,.9,.32,1) 300ms forwards;
}

/* العنوان */
.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 28px rgba(6,182,212,0.08);
}

/* الوصف */
.hero-desc {
  margin: 0 auto 22px;
  max-width: 820px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.7;
}

/* أزرار الدعوة */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  box-shadow: 0 8px 32px rgba(6,182,212,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(6,182,212,0.14); }

.hero-btn.ghost {
  background: transparent;
  color: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  -webkit-text-fill-color: initial;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ريسبونسيف */
@media (max-width: 900px) {
  .hero { min-height: 520px; }
  .hero-desc { font-size: 15px; padding: 0 6px; }
}

@media (max-width: 520px) {
  .hero { height: auto; padding: 40px 18px; min-height: 420px; }
  .hero-content { padding: 24px 6px; }
  .hero-cta { gap: 10px; }
}


/* زر الرجوع للأعلى */
#backToTop {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(45deg, #7a3cff, #00d4ff);
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px #00d4ff;
  transition: 0.3s;
  z-index: 9999;
}

#backToTop:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #7a3cff;
}

.footer {
  width: 100%;
  background: linear-gradient(135deg, #020b1b, #04162d, #051e3a);
  padding: 60px 20px 30px;
  color: #fff;
  direction: rtl;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 260px;
}

.footer-section h3 {
  color: #72b7e6;
  font-size: 22px;
  margin-bottom: 20px;
  border-right: 4px solid #ffffff;
  padding-right: 10px;
}

.footer-section p {
  color: #d9d9d9;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin: 10px 0;
  color: #d0d0d0;
  font-size: 16px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  padding-right: 8px;
  color: #fff;
}

.footer-logo {
  width: 300px;
  margin-bottom: 20px;
  
}

.footer-social a {
  color: #fff;
  font-size: 35px;
  margin-left: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #2fc0b9;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #d0d0d0;
  font-size: 15px;
}



/* زر الجرس الأحمر */
.alert-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(65, 95, 122, 0.671);
  transition: 0.3s;
}



/* على الجوال يكون يسار اللوجو */
/* زر الجرس جنب اللوجو على الجوال */
@media (max-width: 768px) {
  .alert-btn {
    position: absolute !important;
    top: 50%;
    left: 20px;    /* 👈 الزر يجي جنب اللوجو */
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    margin: 0;
  }
}



/* الشريط الزجاجي */
.discount-bar {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fdfdfd;
  font-weight: 800;
  font-size: 20px;
  z-index: 9998;
  transition: top 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* زر الإغلاق داخل الشريط */
.hide-bar {
  position: absolute;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}


/* إصلاح تداخل الزر الأحمر */
.alert-btn {
  bottom: 30px;
  right: 30px;
  z-index: 99999 !important;
}
/* زر الجرس على الكمبيوتر – يمين اللوجو */
@media (min-width: 769px) {
  .alert-btn {
    position: absolute;
    top: 30px;          /* مستوى ارتفاعه */
    right: 140px;       /* يمين اللوجو حسب مكانه بالضبط */
    width: 50px;
    height: 50px;
    bottom: auto;
    left: auto;
  }
}


/* على الجوال – حركه تحت الشريط */
/* زر الجرس جنب اللوجو على الجوال */
@media (max-width: 768px) {
  .alert-btn {
    position: absolute !important;
    top: 57px;         /* 👈 مستوى أعلى الهيدر */
    left: 12px;        /* 👈 يسار اللوجو مباشرة */
    right: auto;
    bottom: auto;
    width: 48px;
    height: 48px;
    margin: 0;
    transform: none !important;
  }
}


/* إصلاح زر × */
/* زر الإغلاق على اليسار */
.hide-bar {
  left: 6px !important;
  right: auto !important;
  top: 10px;
  transform: translateY(-50%);
  font-size: 28px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* الشريط يكون تحت الهيدر بدقة */
.discount-bar {
  top: -80px;
  height: 55px;
  padding-top: 5px;
}

/* لما يظهر يكون تحت الهيدر مباشرة */
.show-discount {
  top: 100px !important; /* 👈 نفس ارتفاع الهيدر */
}

/* شريط الخصم على الجوال */
@media (max-width: 768px) {
  .discount-bar {
    height: 45px !important;      /* 👈 أصغر */
    font-size: 14px !important;   /* 👈 الخط أصغر للجوال */
    padding: 0 10px !important;
    top: -60px;                   /* يخبيه فوق */
  }

  /* لما يظهر تحت الهيدر تمامًا */
.show-discount {
  top: 120px !important; /* 👈 نزّلته 20px تحت */
}
  }

  /* زر الإغلاق على الجوال */
  .hide-bar {
    font-size: 22px !important;
    top: 50%;
    transform: translateY(-50%);
    left: 10px !important;
  }
