div#branding-action-bar {
    display: none!important;
}
.blog-text img {
    height: auto;
}
.slide-menu-drawer-link-icon, .header-all-cat-item-icon, .header-all-cat-subitem-icon {
    display: none;
}
.outlit-product-card__discount {
    background: #c21f40;
}
;.category-circles-figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}.category-circles-item-title,
.category-circles-title,
.category-circles-caption {
  font-size: 20px !important;
  font-weight: 600 !important;
  .category-circles a,
.category-circles span,
.category-circles p,
.category-circles div {
  font-size: 22px !important;
  font-weight: 700 !important;
}
  }
}

/* ============================================
   BSB Blog Page — Separated CSS
   ============================================ */

/* --- Page wrapper --- */
.BSB-page {
  font-family: 'Almarai', sans-serif !important;
  padding: 48px 24px !important;
  direction: rtl !important;
}

/* --- Page title --- */
.BSB-page__title {
  text-align: center !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  margin-bottom: 40px !important;
}

.BSB-page__title span {
  display: inline-block !important;
  border-bottom: 3px solid #c21f40 !important;
  padding-bottom: 6px !important;
}

/* --- Grid --- */
.BSB-grid {
  display: grid !important;
  gap: 28px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  /* Default: single column (mobile first) */
  grid-template-columns: 1fr !important;
}

/* --- Desktop grid: 6-column base --- */
@media screen and (min-width: 992px) {
  .BSB-grid {
    grid-template-columns: repeat(6, 1fr) !important;
  }

  /* Card 1: full width, horizontal layout */
  .BSB-grid .BSB-card:nth-child(1) {
    grid-column: 1 / -1 !important;
    flex-direction: row !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__img-wrap {
    width: 60% !important;
    flex-shrink: 0 !important;
    aspect-ratio: unset !important;
    max-height: 420px !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__body {
    padding: 40px 36px !important;
    justify-content: center !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__title {
    font-size: 1.5rem !important;
  }

  /* Cards 2 & 3: half width (3 of 6 columns each) */
  .BSB-grid .BSB-card:nth-child(2) {
    grid-column: span 3 !important;
  }
  .BSB-grid .BSB-card:nth-child(3) {
    grid-column: span 3 !important;
  }

  /* Cards 4 and beyond: one third (2 of 6 columns each) */
  .BSB-grid .BSB-card:nth-child(n+4) {
    grid-column: span 2 !important;
  }
}

/* --- Card base --- */
.BSB-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(180, 100, 90, 0.10) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease !important;
  text-decoration: none !important;
  color: inherit !important;
}

.BSB-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 38px rgba(180, 100, 90, 0.18) !important;
}

/* --- Card image wrapper --- */
.BSB-card__img-wrap {
  width: 100% !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  flex-shrink: 0 !important;
}

.BSB-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.48s ease !important;
}

.BSB-card:hover .BSB-card__img {
  transform: scale(1.04) !important;
}

/* --- Card body --- */
.BSB-card__body {
  display: flex !important;
  flex-direction: column !important;
  padding: 24px 22px 20px !important;
  gap: 10px !important;
  flex: 1 !important;
}

.BSB-card__title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.BSB-card__date {
  font-size: 0.8rem !important;
  color: #b08e8a !important;
}

.BSB-card__excerpt {
  font-size: 0.9rem !important;
  color: #000000 !important;
  line-height: 1.75 !important;
  flex: 1 !important;
}

.BSB-card__link {
  display: inline-block !important;
  margin-top: 6px !important;
  padding: 9px 22px !important;
  background: #c21f40 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  align-self: flex-start !important;
  transition: background 0.25s ease !important;
}

.BSB-card__link:hover {
  background: #a85f56 !important;
  color: #ffffff !important;
}

/* --- Mobile: all cards stacked --- */
@media screen and (max-width: 991px) {
  .BSB-grid .BSB-card:nth-child(1) {
    flex-direction: column !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__img-wrap {
    width: 100% !important;
    max-height: unset !important;
    aspect-ratio: 16 / 9 !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__body {
    padding: 24px 22px 20px !important;
  }
  .BSB-grid .BSB-card:nth-child(1) .BSB-card__title {
    font-size: 1.05rem !important;
  }
  .BSB-card__img-wrap {
    aspect-ratio: 16 / 9 !important;
  }
}
/* ============================================
   EBSB Blog Page — English CSS
   Paste in Zid > Design > Custom CSS
   ============================================ */

.EBSB-page {
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  padding: 48px 24px !important;
}

.EBSB-page__title {
  text-align: center !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
}

.EBSB-page__title-underline {
  display: inline-block !important;
  border-bottom: 3px solid #c21f40 !important;
  padding-bottom: 6px !important;
}

/* --- Row wrappers --- */
.EBSB-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  margin-bottom: 28px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: stretch !important;
}

/* --- Card base --- */
.EBSB-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(180, 100, 90, 0.10) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease !important;
  text-decoration: none !important;
  color: inherit !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.EBSB-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 38px rgba(180, 100, 90, 0.18) !important;
}

/* --- Row 1: full-width card, horizontal layout --- */
.EBSB-row--full .EBSB-card {
  flex-direction: row !important;
}

.EBSB-row--full .EBSB-card__img-wrap {
  width: 58% !important;
  flex-shrink: 0 !important;
  aspect-ratio: unset !important;
  min-height: 380px !important;
  max-height: 420px !important;
}

.EBSB-row--full .EBSB-card__body {
  padding: 40px 36px !important;
  justify-content: center !important;
}

.EBSB-row--full .EBSB-card__title {
  font-size: 1.5rem !important;
}

/* --- Image wrapper --- */
.EBSB-card__img-wrap {
  width: 100% !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  flex-shrink: 0 !important;
}

.EBSB-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.48s ease !important;
}

.EBSB-card:hover .EBSB-card__img {
  transform: scale(1.04) !important;
}

/* --- Card body --- */
.EBSB-card__body {
  display: flex !important;
  flex-direction: column !important;
  padding: 24px 22px 20px !important;
  gap: 10px !important;
  flex: 1 !important;
}

.EBSB-card__title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.EBSB-card__date {
  font-size: 0.8rem !important;
  color: #b08e8a !important;
  display: block !important;
}

.EBSB-card__excerpt {
  font-size: 0.9rem !important;
  color: #000000 !important;
  line-height: 1.75 !important;
  flex: 1 !important;
  margin: 0 !important;
}

.EBSB-card__link {
  display: inline-block !important;
  margin-top: 6px !important;
  padding: 9px 22px !important;
  background: #c21f40 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  align-self: flex-start !important;
  transition: background 0.25s ease !important;
}

.EBSB-card__link:hover {
  background: #a85f56 !important;
  color: #ffffff !important;
}

/* ============================================
   MOBILE — stack everything
   ============================================ */
@media screen and (max-width: 991px) {
  .EBSB-row {
    flex-direction: column !important;
  }

  .EBSB-row--full .EBSB-card {
    flex-direction: column !important;
  }

  .EBSB-row--full .EBSB-card__img-wrap {
    width: 100% !important;
    min-height: unset !important;
    max-height: unset !important;
    aspect-ratio: 16 / 9 !important;
  }

  .EBSB-row--full .EBSB-card__body {
    padding: 24px 22px 20px !important;
    justify-content: flex-start !important;
  }

  .EBSB-row--full .EBSB-card__title {
    font-size: 1.05rem !important;
  }

  .EBSB-card__img-wrap {
    aspect-ratio: 16 / 9 !important;
  }
}

/* ============================================
   EBSB Blog Page — English CSS
   Paste in Zid > Design > Custom CSS
   ============================================ */

.EBSB-page {
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  padding: 48px 24px !important;
}

.EBSB-page__title {
  text-align: center !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
}

.EBSB-page__title-underline {
  display: inline-block !important;
  border-bottom: 3px solid #c21f40 !important;
  padding-bottom: 6px !important;
}

/* --- Row wrappers --- */
.EBSB-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  margin-bottom: 28px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: stretch !important;
}

/* --- Card base --- */
.EBSB-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(180, 100, 90, 0.10) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease !important;
  text-decoration: none !important;
  color: inherit !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.EBSB-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 38px rgba(180, 100, 90, 0.18) !important;
}

/* --- Row 1: full-width card, horizontal layout --- */
.EBSB-row--full .EBSB-card {
  flex-direction: row !important;
}

.EBSB-row--full .EBSB-card__img-wrap {
  width: 58% !important;
  flex-shrink: 0 !important;
  aspect-ratio: unset !important;
  min-height: 380px !important;
  max-height: 420px !important;
}

.EBSB-row--full .EBSB-card__body {
  padding: 40px 36px !important;
  justify-content: center !important;
}

.EBSB-row--full .EBSB-card__title {
  font-size: 1.5rem !important;
}

/* --- Image wrapper --- */
.EBSB-card__img-wrap {
  width: 100% !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  flex-shrink: 0 !important;
}

.EBSB-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.48s ease !important;
}

.EBSB-card:hover .EBSB-card__img {
  transform: scale(1.04) !important;
}

/* --- Card body --- */
.EBSB-card__body {
  display: flex !important;
  flex-direction: column !important;
  padding: 24px 22px 20px !important;
  gap: 10px !important;
  flex: 1 !important;
}

.EBSB-card__title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #c21f40 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.EBSB-card__date {
  font-size: 0.8rem !important;
  color: #b08e8a !important;
  display: block !important;
}

.EBSB-card__excerpt {
  font-size: 0.9rem !important;
  color: #000000 !important;
  line-height: 1.75 !important;
  flex: 1 !important;
  margin: 0 !important;
}

.EBSB-card__link {
  display: inline-block !important;
  margin-top: 6px !important;
  padding: 9px 22px !important;
  background: #c21f40 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  align-self: flex-start !important;
  transition: background 0.25s ease !important;
}

.EBSB-card__link:hover {
  background: #a85f56 !important;
  color: #ffffff !important;
}

/* ============================================
   MOBILE — stack everything
   ============================================ */
@media screen and (max-width: 991px) {
  .EBSB-row {
    flex-direction: column !important;
  }

  .EBSB-row--full .EBSB-card {
    flex-direction: column !important;
  }

  .EBSB-row--full .EBSB-card__img-wrap {
    width: 100% !important;
    min-height: unset !important;
    max-height: unset !important;
    aspect-ratio: 16 / 9 !important;
  }

  .EBSB-row--full .EBSB-card__body {
    padding: 24px 22px 20px !important;
    justify-content: flex-start !important;
  }

  .EBSB-row--full .EBSB-card__title {
    font-size: 1.05rem !important;
  }

  .EBSB-card__img-wrap {
    aspect-ratio: 16 / 9 !important;
  }
}