/* Basic styling for the section */
#E_store_features_sec_16 {
  text-align: center;
  padding: 20px;
  background-color: #f9fafb; /* Light background color */
}

/* Title and paragraph styling */
#E_store_features_sec_16 h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#E_store_features_sec_16 p {
  font-size: 16px;
  color: #666; /* Light gray for description */
  margin-bottom: 30px;
}

/* Feature items container styling */
.feature-items {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Each feature item styling */
.f_features-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 20px;
  text-align: center;
}

.f_features-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.f_features-item p {
  font-size: 14px;
  color: #666;
}

.feature-icon img {
  width: 50px;
  height: auto;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
  .f_features-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.f_enhanced-store-features .f_features-item {
    display: flex;
    flex: 1 1 0%;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    background-color: var(--main-background);
    padding: 1rem;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 500ms;
}


.f_enhanced-store-features .f_features-item:hover {
    --tw-shadow: 5px 10px 30px #2B2D340D;
    --tw-shadow-colored: 5px 10px 30px var(--tw-shadow-color);
    box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
@media (min-width: 768px) {
    .f_enhanced-store-features .f_features-item .feature-icon {
        height: 7rem;
        width: 10rem;
    }
}

/* Basic styling for the section */
#E_store_features_sec_16 {
  text-align: center;
  padding: 20px;
  background-color: #f9fafb; /* Light background color */
}

/* Title and paragraph styling */
#E_store_features_sec_16 h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#E_store_features_sec_16 p {
  font-size: 16px;
  color: #666; /* Light gray for description */
  margin-bottom: 30px;
}

/* Feature items container styling */
.feature-items {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Each feature item styling */
.f_features-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease; /* Adding a hover effect */
}

/* Add hover effect for scaling the feature item */
.f_features-item:hover {
  transform: translateY(-10px); /* Slight lift on hover */
}

/* Styling for feature titles */
.f_features-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.f_features-item p {
  font-size: 14px;
  color: #666;
}

/* Image icon styling with h-full class */
.feature-icon img.h-full {
  width: 50px;
  height: 50px; /* Ensuring a fixed height for consistency */
  object-fit: contain; /* Ensure image keeps its aspect ratio */
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
  .f_features-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.f_enhanced-store-features .f_features-item .feature-icon {
    margin-bottom: .5rem;
    display: flex;
    height: 4rem;
    width: 7rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .f_enhanced-store-features .f_features-item .feature-icon {
        height: 7rem;
        width: 10rem;
    }
}
.feature-icon img.h-full {
    width: 171px;
    height: 50px;
    object-fit: scale-down;
    height: 100%;
}
.f_enhanced-store-features .f_features-item:hover .feature-icon i, .f_enhanced-store-features .f_features-item:hover .feature-icon img {
    animation: toRightFromLeft .3s forwards;
}



@media (min-width: 768px) {
    .f_enhanced-store-features .f_features-item {
        border-radius: 4rem;
        padding: 2rem;
    }
}

.f_enhanced-store-features .f_features-item h3 {
    margin-bottom: .25rem;
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
}
.f_enhanced-store-features .f_features-item p {
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    color: var(--secondary-color);
}.section-heading {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px; /* المسافة بين العنوان والأقسام */
  color: #333;
}

/* تنسيق الحاوية التي تحتوي على الفئات */
.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* محاذاة العناصر في المنتصف */
}

/* باقي التنسيقات كما هي */
.category-item {
  flex: 1 1 calc(20% - 40px);
  max-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-item a {
  display: block;
  text-align: center;
  padding: 10px;
}

.category-item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 0;
}

.category-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .category-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .category-item {
    flex: 1 1 100%;
  }
}
.section-heading {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    color: #333;
    PADDING-TOP: 64PX;
}
.categories-container {
    display: flex;
    flex-wrap: inherit;
    gap: 3px;
    justify-content: space-evenly;
}

.boxItem {
    position: relative;
    width: calc(50% - 10px);
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-color: #f7d8e9;
    transition: transform 0.3s ease;
}
.category-item {
    flex: 1 1 calc(20% - 40px);
    max-width: 200px;
    box-shadow: NONE;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
/* التأكد من أن الحاوية الرئيسية تأخذ عرض الشاشة بالكامل */
.wide-placeholder .container {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* التأكد من أن البنر داخل الحاوية يأخذ عرض الحاوية بالكامل */
.wide-placeholder .banner--fixed {
    width: 100%;
    height: auto;
}
.category-item {
    flex: 1 1 calc(20% - 40px);
    max-width: 200px;
    box-shadow: NONE;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}


.header-btn__icon {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: #e5e7eb;
    border-color: #001614;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: #001614;
}
.s-cart-summary-total {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: #001614;
}
.sicon-menu:before {
    content: "\ed7f";
    COLOR: #001614;
}
    .top-navbar {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        BACKGROUND: #36BCD24A;
    }
    
    .top-navbar .s-search-input {
    border-style: none;
    background-color: WHITE;
}.top-navbar .s-search-input:hover {
    background-color: WHITE;
}
.s-product-card-entry {
    position: relative;
    display: flex
;
    height: 100%;
    justify-content: space-between;
    border-radius: .75rem;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    BORDER: 2PX SOLID #36BCD2;
}
.s-button-element:not(:disabled):not([loading]) {
    pointer-events: auto;
    BACKGROUND: #36BCD2;
    COLOR: WHITE;
}/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #36BCD2;
}
.s-block {
    margin-top: 0REM;
    PADDING-BOTTOM: 2REM;
}

Almost out of storage … If you run out, you can't create, edit, and upload files.
.wrapperContainer {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  margin: auto;
  width: 100%; /* تغيير العرض ليتناسب مع الشاشة */
  gap: 20px; /* تقليل الفراغ بين العناصر */
  flex-wrap: wrap; /* السماح للعناصر بالتفاف */
}

.boxItem {
  position: relative;
  width: calc(50% - 10px); /* عرض العناصر بنسبة 50% مع خصم فراغ */
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #f7d8e9;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) { /* لأجهزة التابلت والمحمول */
  .boxItem {
    width: 100%; /* عرض 100% في الشاشات الصغيرة */
    height: 300px; /* تعديل ارتفاع العناصر */
  }
}

.imageStyle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textOverlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #d83268;
  background: linear-gradient(45deg, #b383f1, #ff8d8d);
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}





.boxItem {
  position: relative;
  width: calc(50% - 10px); /* عرض العناصر بنسبة 50% مع خصم فراغ */
  height: 400px;
  border-radius: 10px;
  overflow: hidden; /* منع العناصر من الخروج عن الحدود */
  text-align: center;
  background-color: #f7d8e9;
  transition: transform 0.3s ease; /* إضافة تأثير على التحجيم */
}

.boxItem:hover {
  transform: scale(1.05); /* تكبير العنصر عند تمرير الماوس */
}

.imageStyle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* إضافة تأثير على الصورة */
}

.boxItem:hover .imageStyle {
  transform: scale(1.1); /* تكبير الصورة عند تمرير الماوس */
}
.wrapperContainer {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
    margin: auto;
    width: 60%;
    gap: 20px;
    flex-wrap: wrap;
}


.boxItem {
    position: relative;
    width: 45%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-color: #f7d8e9;
    transition: transform 0.3s ease;
}

.wrapperContainer {
    display: flex
;
    justify-content:center;
    padding: 20px;
    margin: auto;
    width: 90%;
    gap: 20px;
    flex-wrap: wrap;
}.textOverlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #d83268;
    background: linear-gradient(45deg, #b383f1, #ff8d8d);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: none;
}
.boxItem {
    position: relative;
    width: 45%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
    transition: transform 0.3s ease;
}.footer-is-light .store-footer .store-footer__inner {
    --tw-border-opacity: 1;
    border-bottom-color: rgba(229, 231, 235, 1);
    border-bottom-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, 1);
    background-color: white;
    color: #333333;
    font-family: cairo;
}

.s-slider-block__title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: flex
;
    max-width: 1280px;
    align-items: center;
    justify-content: space-between;
    padding-top: 70px;
}@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Cairo', sans-serif;
}

/* ستايل الحاوية الرئيسية */
.customWrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* ستايل كل عنصر داخل الحاوية */
.customBox {
    position: relative;
    width: 200px;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* عند تمرير الماوس، تكبر قليلاً */
.customBox:hover {
    transform: scale(1.05);
}

/* ستايل الصورة */
.customImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ستايل النص فوق الصورة */
.customText {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    white-space: nowrap;
}

/* تأثير تحريك النص عند تمرير الماوس */
.customBox:hover .customText {
    transform: translate(-50%, -20px);
}
.customText {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    white-space: nowrap;
    display: none;
}

.customBox {
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}.categories-grid {
    display: flex
;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: space-evenly;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    color: #333;
    PADDING-TOP: 0px;
}


.y-cat h2 {
    font-size: 36px;
    font-family: 'cairo';
    padding-bottom: 19px;
}