/* تظبيط صورة المنتج */ 
img.s-product-card-image-contain.lazy__bg.lazy_img.lazy.loaded {
    aspect-ratio: auto !important;
}
/* البنر فول ويتدث*/

#app > div.app-inner.flex.flex-col.min-h-full > section:nth-child(3) > div {
    margin-left: 0px !important;
    margin-right: 0px !important;
    max-width: 100% !important;
}

@media only screen and (min-width: 992px){
#app>div.app-inner.flex.flex-col.min-h-full>section:nth-child(3)>div>a>img {
    margin-top: -127px;
}
}

header.store-header .inner {
    padding: 10px 20px;
}






.angel-ad__slider {
    animation-duration: 70s !important;
}
/* تعديل شكل الصور داخل المربعات */
.box-img {
  border-radius: 10px; /* زوايا مدورة خفيفة */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* ظل خفيف */
  transition: transform 0.3s ease-in-out;
}

.box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* لضمان تناسق الصورة داخل المربع */
}

.box-img:hover {
  transform: scale(1.08); /* تأثير تكبير خفيف عند التحويم */
}

/* تعديل النص أسفل الصور */
.text-wrapper h3 {
  color: #222; /* لون أغمق للنص */
  font-size: 1rem;
  text-align: center; /* توسيط النص */
  font-weight: 500; /* خط متوسط العرض */
  margin-top: 10px;
}

/* تعديل الشبكة لجعلها متجاوبة */
.square-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* عمودان للشاشات الصغيرة */
  gap: 15px;
  margin: 0 auto;
  padding: 10px;
}

/* تعديل التخطيط للشاشات المتوسطة والكبيرة */
@media (min-width: 768px) {
  .square-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 أعمدة للشاشات المتوسطة */
  }
}

@media (min-width: 1024px) {
  .square-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 أعمدة للشاشات الكبيرة */
    gap: 20px; /* زيادة المسافة بين المربعات */
  }
}

/* تحسين مظهر المربعات */
.banner-square {
  padding: 10px;
  background-color: #fff; /* خلفية بيضاء نظيفة */
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.banner-square:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* تأثير ظل عند التحويم */
  transform: translateY(-5px); /* رفع المربع عند التحويم */
}
.s-block--banners .banner-square h3 {
    margin-top: 2.375rem;
    margin-bottom: 2.375rem;
}
/* جعل كل منتج يأخذ 50% من العرض */
.swiper-slide {
    width: calc(50% - 10px); /* عرض 50% مع مساحة صغيرة بين العناصر */
    margin: 5px;
}

/* التأكد من أن العناصر تأخذ الطول الكلي المتساوي */
.s-products-slider-card {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* إذا كان العرض صغيرًا، عرض منتج واحد فقط في كل سطر */
@media (max-width: 768px) {
    .swiper-slide {
        width: calc(100% - 10px); /* عرض كامل للمنتج في الأجهزة الصغيرة */
    }
}
/* تنسيق القسم الرئيسي */
.s-block__title {
    text-align: center; /* مركز العنوان في المنتصف */
    margin-bottom: 20px; /* إضافة مسافة بين العنوان والمحتوى التالي */
}

/* تنسيق الهيدينج الرئيسي */
.s-block__title h2 {
    font-size: 2rem; /* حجم كبير للعنوان */
    font-weight: bold; /* جعل النص عريض */
    color: white; /* لون جذاب، يمكنك تغييره إلى اللون الذي تفضله */
    position: relative; /* نستخدم position لإضافة تأثيرات إضافية */
    display: inline-block;
    padding-bottom: 10px; /* إضافة مساحة أسفل العنوان */
    margin-bottom: 10px;
}

/* إضافة خط تحت العنوان */
.s-block__title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px; /* عرض الخط */
    height: 3px; /* سمك الخط */
    background-color: #f08a5d; /* نفس لون النص، يمكنك تغييره */
    border-radius: 50px; /* جعل الخط دائري الأطراف */
}

/* تأثير الظل الخفيف */
.s-block__title h2 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* ظل خفيف لنص العنوان */
    color:rgb(78, 16, 121);
}

/* تأثير Hover */
.s-block__title h2:hover {
    color: #b83b5e; /* لون مغاير عند التحريك فوق العنوان */
    cursor: pointer; /* تحويل المؤشر إلى يد عند التمرير فوق النص */
    transition: color 0.3s ease; /* انتقال سلس */
}

/* تنسيق الفقرة */
.s-block__title p {
    font-size: 1rem; /* حجم مناسب للفقرة */
    color: #999; /* لون خافت للفقرة */
    margin-top: 10px;
}

/* إضافة نمط خلفية لطيف */
.s-block__title {

    padding: 20px;
    border-radius: 10px; /* جعل الزوايا دائرية */
}
/* تنسيق العنوان الرئيسي */
.s-slider-block__title-right h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #4E1079; /* اللون البنفسجي */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    background-color: #F9F4FF; /* خلفية فاتحة متناسقة مع البنفسجي */
    border-radius: 10px;
    padding: 10px;
}

/* إضافة خط سفلي */
.s-slider-block__title-right h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #FFB100; /* لون ذهبي متناسق مع الأصفر */
    border-radius: 50px;
}

/* تنسيق أزرار التنقل */
.s-slider-block__title-nav button {
    background-color: transparent;
    border: 2px solid #FF7800; /* لون برتقالي */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #FF7800; /* لون الأيقونة */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* تغيير لون الأزرار عند التمرير */
.s-slider-block__title-nav button:hover {
    background-color: #FF7800; /* برتقالي غامق عند التمرير */
    color: #ffffff;
}

/* الأيقونات داخل الأزرار */
.s-slider-button-icon svg {
    width: 24px;
    height: 24px;
}

/* تنسيق الزر عند كونه معطلاً */
.s-slider-block__title-nav button[disabled] {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

/* تأثير حركة بسيطة للعناصر */
.s-slider-block__title-right h2, .s-slider-block__title-nav button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

/* حركة الظهور */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
header.store-header a :not(angel-ad__content pointer-events-none) , .s-cart-summary-total , header.store-header i {
    color:#FBCE14 ;
}
.fixed-header a :not(angel-ad__content pointer-events-none) , .fixed-header P, s-cart-summary-total , .fixed-header i {
    color:black !important;
}
@media only screen and (max-width: 600px) {

#app>div.app-inner.flex.flex-col.min-h-full>section:nth-child(3)>div>a>img {
    margin-top: -90px;
}
}