#fw-section-hero-cd2126c8-c0e9-4bdd-80b8-c346826edc6c {

@media only screen and (max-width: 768px) {
  .container--10 {
    /* 1. تحديد ارتفاع كبير (مثلاً 70% من ارتفاع شاشة الهاتف) */
    min-height: 55vh !important;
    
    /* 2. جعل الصورة تغطي المساحة الطويلة بالكامل دون تكرار */
    background-size: cover !important;
    background-position: center center !important;
    
    /* 3. ضمان أن يبقى النص في وسط البانر بعد زيادة الطول */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
  }
}
}




#fw-section-hero-88ee0175-700e-4dcf-bceb-3245ba3080d5 {

@media only screen and (max-width: 768px) {
  .container--10 {
    /* 1. تحديد ارتفاع كبير (مثلاً 70% من ارتفاع شاشة الهاتف) */
    min-height: 50vh !important;
    
    /* 2. جعل الصورة تغطي المساحة الطويلة بالكامل دون تكرار */
    background-size: cover !important;
    background-position: center center !important;
    
    /* 3. ضمان أن يبقى النص في وسط البانر بعد زيادة الطول */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
  }
}
}






#fw-section-hero-0 {

/* ======================================================= */
/* ====== 1. شريط الإعلان (Announcement Bar) - أسود ====== */
/* ======================================================= */
.announcement-bar__inner {
    background-color: #000000; 
    color: #ffffff;            
    padding-top: 10px;      
    padding-bottom: 10px; 
    width: 100%; 
}

.announcement-bar__label {
    font-size: 14px;        
    font-weight: 500;
    text-align: center;      
    display: block;          
}

/* ======================================================= */
/* ====== 2. الهيدر والشعار (Header & Logo) ====== */
/* ======================================================= */
.header__grid {
    padding-top: 20px;      
    padding-bottom: 20px; 
    background-color: #ffffff;
}

.header__logo-image {
    max-height: 40px !important; 
    width: auto;
}

.header__logo-container {
    height: 40px; 
}

/* ======================================================= */
/* ====== 3. التحكم في الخط وصورة البانر (افتراضي) ====== */
/* ======================================================= */
body {
    font-family: 'اسم_الخط_الجديد', sans-serif; 
}

.hero-section {
    background-image: url('ضع_رابط_صورة_البانر_هنا.jpg');
    background-size: cover;            
    background-position: center center; 
    background-repeat: no-repeat;        
    min-height: 500px; 
    
    /* زوم X3 */
    transform: scale(3); 
    transition: transform 0.5s ease-out; 
    overflow: hidden; 
}


/* ======================================================= */
/* ====== 4. العناوين والأزرار (Desktop Styles) ====== */
/* ======================================================= */
h1 {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 160px;
  transform: translateY(120px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

h1.hero__heading.hero__heading--small {
    /* اللون الأبيض لجميع الشاشات */
    color: #ffffff !important; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); 
}

/* 🌟🌟 إطار رقيق 1px 🌟🌟 */
.button--secondary {
  background-color: #ffffff; /* الخلفية بيضاء */
  color: #000000;          /* النص أسود */
  padding: 12px 50px;
  font-weight: 700;
  transform: translateY(30px);
  border: 1px solid #000000; /* تم التعديل ليصبح 1px */
  border-radius: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

/* 🌟🌟 إطار رقيق 1px 🌟🌟 */
.button--primary {
  background-color: #ffffff; /* الخلفية بيضاء */
  color: #000000;          /* النص أسود */
  padding: 12px 60px;
  font-weight: 700;
  transform: translateY(30px);
  border: 1px solid #000000; /* تم التعديل ليصبح 1px */
  border-radius: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

/* 4.4 تأثير الهوفر للكمبيوتر (تم التعديل: إضاءة فقط بدون حركة) */
.button--secondary:hover,
.button--primary:hover {
  background-color: #000000; /* الخلفية تصبح سوداء */
  color: #ffffff;          /* النص يصبح أبيض */
  
  /* 👇 الإطار يبقى 1px لمنع اهتزاز النص */
  border: 1px solid #000000; 
  
  /* 👇 نفس مكان الزر الأصلي بالضبط (لمنع الحركة) */
  transform: translateY(30px) scale(1); 
  
  /* 👇 تأثير الإضاءة (الظل) */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ======================================================= */
/* ====== 5. استعلامات الوسائط للهواتف (Mobile Styles) ====== */
/* ======================================================= */
@media screen and (max-width: 767px) {
    
    /* 5.0 زيادة طول الحاوية لأسفل على الهاتف */
    .hero-section {
        min-height: 650px !important; 
    }

    /* 5.1 العنوان على الهاتف */
    h1 {
        font-size: 32px;
        margin-bottom: 60px;
        transform: translateY(160px); 
    }
    
    /* 5.2 الحل الحاسم: إجبار الحاوية على Flex وإلغاء العرض الكامل */
    .hero__cta-container {
        display: flex !important; 
        justify-content: center !important; 
        gap: 240px !important; 
    }

    /* 5.3 الأزرار على الهاتف (التحكم في الحجم) */
    .button--secondary,
    .button--primary {
        width: auto !important;
        max-width: none !important;
        display: inline-block !important; 
        flex-grow: 1 !important; 

        /* 🔥🔥 الحجم المكبر للأزرار (كما طلبت سابقاً) 🔥🔥 */
        height: 42px !important;       
        padding: 10px 28px !important; 
        line-height: 20px !important; 
        font-size: 14px !important;  
    }

    /* 5.4 التحكم في الموضع الأفقي (X) على الهاتف - الوضع العادي */
    /* ✅✅ تم توحيد قيمة Y لتصبح 0px للزرين ليكونا على نفس الخط ✅✅ */
    .button--secondary {
        transform: translate(80px, -140px) !important; 
    }

    .button--primary {
        transform: translate(-90px, 162px) !important;
    }
    
    /* 5.5 هوفر الأزرار على الهاتف (تم التعديل: إضاءة فقط بدون حركة) */
    .button--secondary:hover {
        /* ✅✅ استخدام نفس إحداثيات الوضع العادي لمنع الحركة ✅✅ */
        transform: translate(80px, -140px) !important; 
        background-color: #000000 !important;
        color: #ffffff !important;
        border: 1px solid #000000 !important; 
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.6) !important; 
    }
    
    .button--primary:hover {
        /* ✅✅ استخدام نفس إحداثيات الوضع العادي لمنع الحركة ✅✅ */
        transform: translate(-90px, 162px) !important; 
        background-color: #000000 !important;
        color: #ffffff !important;
        border: 1px solid #000000 !important; 
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.6) !important; 
    }
}
}
#fw-section-featured-collection-0 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #000000;
--color-on-background-rgb: 0, 0, 0;
--color-product-image-background: #000000;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-newsletter-1604adb0-9e49-43a0-aba3-61150dec392e {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #000000;
--color-on-background-rgb: 0, 0, 0;
--color-product-image-background: #000000;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);
/* ==================================================
   1. تنسيق النصوص والمسافات (ثابت كما طلبت)
   ================================================== */
.newsletter__heading {
    margin-bottom: 25px !important; 
}

.newsletter__text {
    margin-bottom: 40px !important; 
    line-height: 1.6 !important; 
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==================================================
   2. تنسيق الحواف (ثابت كما طلبت)
   ================================================== */
/* حواف الزر دائرية بنسبة بسيطة (5px) */
button[type="submit"],
input[type="submit"],
.newsletter-form__button {
    border-radius: 5px !important;
}

/* حواف خانة الإيميل مربعة (0) */
.newsletter-form__input,
.input-field,
.input-field__input,
input[type="email"] {
    border-radius: 0 !important;
}

/* ==================================================
   2.1 — توسيط نص خانة الإيميل
   ================================================== */
.input-field__input,
input[type="email"] {
    text-align: center !important;
}

.newsletter-form__input {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* ==================================================
   2.2 — زيادة ارتفاع الزر + توسيط النص
   ================================================== */
button[type="submit"],
.newsletter-form__button,
.button--primary {
    height: 50px !important;
    line-height: 50px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    text-align: center !important;
    position: relative !important;
}

/* منع الـ spinner من دفع النص */
.button__spinner {
    position: absolute !important;
    right: 10px !important;
}

/* ==================================================
   2.3 — التحكم في مكان زر الاشتراك على الحاسوب فقط
   ================================================== */
@media (min-width: 768px) {
    button[type="submit"],
    .newsletter-form__button,
    .button--primary {
        margin-top: var(--desktop-button-offset, 5.5px) !important;
    }
}

/* ==================================================
   3. تنسيق الموبايل
   ================================================== */
@media (max-width: 767px) {
    
    form[action*="newsletter"], 
    .newsletter-form {
        flex-direction: column !important; 
        align-items: center !important; 
        gap: 15px !important; 
    }

    .newsletter-form__input,
    .input-field,
    .input-field__input,
    input[type="email"] {
        width: 100% !important;
        min-width: 0 !important;
        text-align: center !important;
        padding-left: 0 !important;
    }

    /* ==================================================
       👇 تحريك خانة الإيميل نفسها بالكامل (يمين/يسار)
       ================================================== */
    .newsletter-form__input {
        transform: translateX(var(--mobile-input-offset, 5px)) !important;
    }

    button[type="submit"],
    input[type="submit"],
    .newsletter-form__button {
        width: 40% !important; 
        min-width: 120px !important;
        flex: none !important; 
        margin-top: 5px !important;
        text-align: center !important;
        padding: 0 !important;

        height: 50px !important;
        line-height: 50px !important;
    }
}

}
#fw-section-footer {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #ffffff;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-announcement-bar-cabf8876-d933-45f0-b0cd-5d77002c70a9 {

/* ===== شريط الإعلان (Announcement Bar) - لون أسود وحجم متحكم به ===== */

/* 1. استهداف الحاوية الداخلية للتحكم في الأبعاد واللون الأساسي */
.announcement-bar__inner {
    /* 🎨 اللون الجديد: أسود */
    background-color: #000000 !important; 
    color: #ffffff !important;         /* لون النص أبيض */
    
    /* 📐 التحكم في الارتفاع (يمكنك تغيير هذه القيم) */
    padding-top: 7px !important;    
    padding-bottom: 10px !important; 
    
    /* خصائص أساسية إضافية */
    width: 100% !important; 
}

/* 2. استهداف النص داخل الشريط */
.announcement-bar__label {
    font-size: 14px !important;      
    
    /* 🔥 التغيير هنا: جعل الخط عريضاً جداً 🔥 */
    font-weight: bold !important; 
    /* يمكنك أيضاً استخدام قيمة رقمية مثل: 700 أو 800 أو 900 */

    text-align: center !important;    
    display: block !important;        
}
}
#fw-section-header {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #010102;
--color-on-background-rgb: 1, 1, 2;
--color-product-image-background: #010102;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);
/* ===== التحكم في ارتفاع الهيدر (Header) وحجم الشعار (Logo) ===== */

/* 1. استهداف الحاوية الرئيسية للهيدر للتحكم في الارتفاع العام */
.header__grid {
    /* 📐 التحكم في ارتفاع الهيدر: زد أو قلل هذه القيم */
    padding-top: 15px !important;    /* 🌟 حشو علوي */
    padding-bottom: 15px !important; /* 🌟 حشو سفلي */
    
    /* 🎨 خصائص أخرى (اختياري) */
    background-color: #ffffff !important; /* لون الخلفية الافتراضي للهيدر */
}

/* 2. استهداف صورة الشعار للتحكم في حجمها */
.header__logo-image {
    /* 📐 التحكم في حجم الشعار (اللوجو): قم بتعديل هذه القيمة */
    max-height: 100px !important; /* 🌟 أقصى ارتفاع مسموح به للصورة */
    width: auto !important;      /* للحفاظ على نسبة العرض إلى الارتفاع */
}

/* 3. استهداف حاوية الشعار (اختياري) */
/* قد تحتاج لتعديل ارتفاع الحاوية إذا كان الشعار لا يتجاوز الحدود */
.header__logo-container {
    height: 45px !important; /* 🌟 نحدد ارتفاع الحاوية ليتطابق مع max-height */
}
}