/* Add custom CSS styles below */ 

/* --- Block 1: Basic Shadow Removal --- */
.no-shadow {
  box-shadow: none !important;
}

/* --- Block 2: Comprehensive Shadow & Text-Shadow (Arabic Version) --- */
/* إزالة الشادو */
.no-shadow,
.no-shadow * {
    box-shadow: none !important;
    text-shadow: none !important;
}

/* --- Block 3: Layout & Section Shadow Removal --- */
/* إزالة الشادو من البنر والسيكشن */
section,
.section,
.banner,
.hero,
.slider,
.container,
.row {
  box-shadow: none !important;
  filter: none !important;
}

/* --- Block 4: Header Utility Icon Visibility --- */
/* Hide cart, search, and account icons */
.header-bar .icon-cart,
.header-bar .icon-search,
.header-bar .icon-user,
.header-bar .icon-menu {
    display: none !important;
}```