.elementor-626 .elementor-element.elementor-element-e35a230{--display:flex;}/* Start custom CSS for html, class: .elementor-element-31dcad7 *//* أضف هذا في Custom CSS الخاص بالصفحة أو في لوحة Elementor > Advanced > Custom CSS */
/* اجعل قسم الهيرو يمتد لعرض الشاشة بالكامل ويتخلص من الفراغات الجانبية */
.hero-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  box-sizing: border-box;
}

/* إن كنت تستخدم Elementor، قم بإلغاء أي Padding أو Margin افتراضي على الـ Section */
.elementor-section {
  padding: 0 !important;
  margin: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
}

/* كذلك الأعمدة داخل Elementor لتفادي فراغات padding */
.elementor-column .elementor-element-populated {
  padding: 0 !important;
  margin: 0 !important;
}

/* إزالة أي حدود عرض Container افتراضية */
.elementor-container,
.container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;          /* محاذاة أفقية */
  align-items: center;              /* محاذاة عمودية (لكن سيتم تعديله للتابلت) */
  height: 100vh;                     /* ارتفاع كامل الشاشة */
  background-image: url('https://eldesoki-fragrances.com/wp-content/uploads/2025/04/ChatGPT-Image-8-أبريل-2025،-05_31_57-م.png');
  background-size: cover;            /* يغطي كامل الخلفية */
  background-position: center center;
  background-repeat: no-repeat;      /* لا تكرار */
  padding: 0 20px;
}

/* طبقة التعتيم */
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* المحتوى فوق التعتيم */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* الشعار */
.hero-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* العنوان */
.hero-title {
  font-size: 3rem;
  color: #f4f4f5;
  margin: 0 0 10px;
}

/* النص الفرعي */
.hero-subtitle {
  font-size: 1.25rem;
  color: #f4f4f5;
  margin: 0 0 30px;
  line-height: 1.4;
}

/* الزر */
.hero-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  color: #f4f4f5;
  background: linear-gradient(90deg, #b59f85, #7f715c);
  border: 2px dotted #f4f4f5;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.hero-button:hover {
  background-color: #7f715c;
  border-color: #7f715c;
}

/* استجابة التابلت: محاذاة عمودية وسط الصفحة */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-section {
    align-items: center;  /* يبقى عموديّاً في المنتصف */
    padding: 200px 20px;   /* مسافات داخلية مناسبة */
    height: auto;
  }
}

/* استجابة الموبايل */
@media (max-width: 767px) {
  .hero-section {
    padding: 180px 20px 50px;
    height: auto;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8edb0e8 *//* ====== Bottom Highlight Section (Single Line) ====== */

.highlight-section {
  background-color: #7f715c;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  padding: 50px 20px;
}
.highlight-text {
  display: inline-block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 100%;
  white-space: nowrap;      /* يمنع الانكسار إلى أكثر من سطر */
  overflow: hidden;
  text-overflow: ellipsis;  /* يضيف ... إذا تجاوز العرض */
}

/* Responsive Adjustment */
@media (max-width: 767px) {
  .highlight-text {
    font-size: 0.9rem;
    white-space: normal;     /* يسمح بالانكسار عند الحاجة على الموبايل */
  }
}/* End custom CSS */