/* Add custom CSS styles below */ 
/* =========================================================
   ARTISTSHOP1 — Fine Art Boutique Custom CSS
   للصق في: لوحة تحكم سلة → التصميم → Custom CSS (الخانة الرسمية)
   يركّز على الصفحة الرئيسية. لا يحتوي أي JavaScript.
   لا يستهدف عناصر السلة/الدفع (cart/checkout) عمداً.
   ========================================================= */

/* ---------------------------------------------------------
   1) خلفية عامة كريمية ناعمة
   --------------------------------------------------------- */
body {
  background-color: #fdf8f5;
}

/* ---------------------------------------------------------
   2) تحسين المسافات بين أقسام الصفحة الرئيسية
   --------------------------------------------------------- */
.s-block {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .s-block {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ---------------------------------------------------------
   3) عناوين الأقسام — أنيقة ومريحة
   --------------------------------------------------------- */
.s-block__title {
  color: #59595a;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .s-block__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

/* ---------------------------------------------------------
   4) كروت المنتجات
   --------------------------------------------------------- */
.s-product-card,
.s-product-card-entry {
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(89, 89, 90, 0.06);
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.s-product-card:hover,
.s-product-card-entry:hover {
  box-shadow: 0 6px 20px rgba(89, 89, 90, 0.1);
}

.s-product-card-image {
  border-radius: 18px 18px 0 0;
  object-fit: cover;
}

.s-product-card-content {
  padding: 14px 16px 18px;
}

.s-product-card-title {
  color: #59595a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.s-product-card-price {
  color: #b9705f;
  font-weight: 700;
}

/* ---------------------------------------------------------
   5) الأزرار العامة
   --------------------------------------------------------- */
.s-button,
.s-button-primary {
  background-color: #f3b8a6 !important;
  border-color: #f3b8a6 !important;
  color: #4a3f3c !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.s-button:hover,
.s-button-primary:hover {
  background-color: #eda58e !important;
}

/* ---------------------------------------------------------
   6) الحاويات العامة — مسافات أريح على الجوال
   --------------------------------------------------------- */
.container,
.main-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container,
  .main-content {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ---------------------------------------------------------
   7) section
   --------------------------------------------------------- */
section {
  border-radius: 0;
}

/* ---------------------------------------------------------
   8) جوال أولاً
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .s-block__title {
    font-size: 20px;
  }

  .s-product-card-content {
    padding: 10px 12px 14px;
  }

  .s-button,
  .s-button-primary {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ---------------------------------------------------------
   9) كمبيوتر / شاشات أوسع
   --------------------------------------------------------- */
@media (min-width: 1024px) {
  .s-block {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .s-product-card-title {
    font-size: 15px;
  }
}
/* ==================================================
   ARTISTSHOP1 PATCH 01
   تقليل الفراغات وتحسين الجوال فقط
   ================================================== */

/* تقليل المسافات العامة بين الأقسام */
.s-block,
section {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* منع الفراغات الكبيرة داخل الأقسام */
.s-block .container,
section .container,
.s-block__container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* تحسين عناوين الأقسام */
.s-block__title,
.s-slider-block__title,
section h2,
section h3 {
  margin-bottom: 8px !important;
  color: #59595A !important;
  line-height: 1.45 !important;
}

/* تحسين النصوص تحت العناوين */
.s-block__subtitle,
.s-slider-block__subtitle,
section p {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  color: #59595A !important;
  line-height: 1.7 !important;
}

/* تنعيم الكروت */
.s-product-card-entry,
.s-block-item,
.card,
section [class*="card"] {
  border-radius: 18px !important;
  box-shadow: 0 8px 20px rgba(89, 89, 90, 0.06) !important;
  border: 1px solid #EADFD7 !important;
  overflow: hidden !important;
}

/* تحسين صور المنتجات بدون قص */
.s-product-card-image img,
.s-product-card-entry img {
  object-fit: contain !important;
  background: #ffffff !important;
}

/* تحسين الأزرار */
.s-button-primary,
.s-button-btn,
button,
.btn,
.button,
a[class*="button"] {
  background: #F8DCD3 !important;
  color: #59595A !important;
  border-radius: 999px !important;
  border: 1px solid #EADFD7 !important;
  box-shadow: none !important;
}

/* الجوال */
@media (max-width: 768px) {
  .s-block,
  section {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .s-block__title,
  .s-slider-block__title,
  section h2,
  section h3 {
    font-size: 24px !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
  }

  .s-block__subtitle,
  .s-slider-block__subtitle,
  section p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-bottom: 10px !important;
  }

  .s-product-card-entry,
  .s-block-item,
  .card,
  section [class*="card"] {
    border-radius: 18px !important;
  }

  .s-product-card-image img,
  .s-product-card-entry img {
    max-height: 220px !important;
    object-fit: contain !important;
  }
}

  
/* =========================================================
   ARTISTSHOP1 PATCH 17 - Color Palette circles (SAFE VERSION)
   يستهدف روابط البحث الفريدة للألوان فقط — لا يؤثر على أي
   قسم آخر لأن هذي الروابط (/search?q=...) غير مستخدمة إلا هنا.
   ========================================================= */

a[href*="/search?q="] {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  text-align: center !important;
  margin: 0 auto !important;
}

a[href*="/search?q="] i,
a[href*="/search?q="] svg {
  display: none !important;
}

a[href*="/search?q="]::before {
  content: "" !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  margin: 0 auto 6px !important;
  display: block !important;
  border-radius: 999px !important;
  border: 1px solid #EFE3DC !important;
  box-shadow: 0 6px 14px rgba(70, 55, 45, 0.06) !important;
}

a[href*="q=%D9%88%D8%B1%D8%AF%D9%8A"]::before,
a[href*="q=وردي"]::before { background: #E8B4A8 !important; }

a[href*="q=%D8%A3%D8%B2%D8%B1%D9%82"]::before,
a[href*="q=أزرق"]::before { background: #A9C3D1 !important; }

a[href*="q=%D8%A3%D8%AE%D8%B6%D8%B1"]::before,
a[href*="q=أخضر"]::before { background: #8A8F5C !important; }

a[href*="q=%D9%81%D8%AD%D9%85"]::before,
a[href*="q=فحم"]::before { background: #4A4A4A !important; }

a[href*="q=%D9%88%D8%B1%D9%82"]::before,
a[href*="q=ورق"]::before { background: #E3D5B8 !important; }

a[href*="q=%D8%A8%D9%86%D9%81%D8%B3%D8%AC%D9%8A"]::before,
a[href*="q=بنفسجي"]::before { background: #B8A4C9 !important; }

a[href*="/search?q="] h2,
a[href*="/search?q="] span,
a[href*="/search?q="] p,
a[href*="/search?q="] div {
  margin: 0 !important;
  color: #3F3D3B !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

/* END ARTISTSHOP1 PATCH 

/* ARTISTSHOP1 FINAL GLOBAL CSS - SAFE VERSION */

/* لوحة الألوان - تسوق حسب اللون */
salla-slider[block-title="تسوق حسب اللون"] {
  display: block;
  background: #FDF8F5;
  padding: 10px 0 16px !important;
  overflow: hidden !important;
}

salla-slider[block-title="تسوق حسب اللون"] .s-slider-block__title {
  margin-bottom: 10px !important;
}

salla-slider[block-title="تسوق حسب اللون"] .s-slider-block__title h2 {
  color: #3F3D3B !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

salla-slider[block-title="تسوق حسب اللون"] .s-slider-block__title-right::after {
  content: "اختر لونك وابدأ من هنا.";
  display: block;
  margin-top: 2px;
  color: #59595A;
  font-size: 13px;
  line-height: 1.6;
}

/* تصغير كروت الألوان */
salla-slider[block-title="تسوق حسب اللون"] .swiper-slide {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
}

salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry {
  min-height: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* إخفاء الأيقونة الأصلية بالكامل */
salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry i,
salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry i::before,
salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry svg {
  display: none !important;
  content: none !important;
}

/* إنشاء دائرة لون واحدة فقط */
salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 7px;
  border-radius: 999px;
  border: 1px solid rgba(63, 61, 59, 0.12);
  box-shadow: 0 6px 14px rgba(63, 61, 59, 0.06);
}

/* ألوان الدوائر */
salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(1) .slide--cat-entry::before {
  background: #E8B4A8 !important;
}

salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(2) .slide--cat-entry::before {
  background: #A9C3D1 !important;
}

salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(3) .slide--cat-entry::before {
  background: #8A8F5C !important;
}

salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(4) .slide--cat-entry::before {
  background: #4A4A4A !important;
}

salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(5) .slide--cat-entry::before {
  background: #E3D5B8 !important;
}

salla-slider[block-title="تسوق حسب اللون"] .swiper-slide:nth-child(6) .slide--cat-entry::before {
  background: #B8A4C9 !important;
}

/* نص اللون */
salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry h2 {
  margin: 0 !important;
  color: #3F3D3B !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  white-space: normal !important;
}

/* إخفاء الأسهم وعرض الكل */
salla-slider[block-title="تسوق حسب اللون"] .s-slider-block__display-all,
salla-slider[block-title="تسوق حسب اللون"] .s-slider-nav-arrow {
  display: none !important;
}

/* خلفيات خفيفة للأقسام */
salla-art-supplies-grid,
[class^="salla-art-supplies-grid"],
[class*="art-supplies-grid"],
salla-best-sellers-carousel-v2,
[class*="best-sellers-carousel"] {
  display: block;
  background: #FDF8F5;
  overflow-x: hidden;
}

/* الفوتر */
footer,
.store-footer,
.footer,
.footer-is-light footer {
  background: #F7F1EB !important;
  color: #3F3D3B !important;
}

footer .container,
.store-footer .container {
  padding-top: 18px !important;
  padding-bottom: 16px !important;
}

footer h3,
footer h4,
.store-footer h3,
.store-footer h4 {
  margin-bottom: 8px !important;
  color: #3F3D3B !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

footer p,
footer a,
footer li,
.store-footer p,
.store-footer a,
.store-footer li {
  color: #59595A !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

footer ul,
.store-footer ul {
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer .s-contacts,
.store-footer .s-contacts {
  gap: 6px !important;
}

@media (max-width: 768px) {
  salla-slider[block-title="تسوق حسب اللون"] {
    padding: 8px 0 12px !important;
  }

  salla-slider[block-title="تسوق حسب اللون"] .swiper-slide {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }

  salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry::before {
    width: 42px;
    height: 42px;
  }

  salla-slider[block-title="تسوق حسب اللون"] .slide--cat-entry h2 {
    font-size: 11.5px !important;
  }

  footer .container,
  .store-footer .container {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}



/* 1. تنسيق الفوتر العام - مركز ومريح */
.footer {
    text-align: center !important;
    background-color: #fcf9f7 !important; /* لون كريمي هادئ */
    padding: 40px 20px !important;
}

/* 2. تنسيق العناوين داخل الفوتر */
.footer-widget-title {
    color: #4a4a4a !important;
    font-weight: bold;
    margin-bottom: 15px !important;
    text-align: center !important;
}

/* 3. تنسيق القوائم والروابط */
.footer-links li {
    margin-bottom: 10px !important;
}

.footer-links a {
    color: #666 !important;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b5838d !important; /* لمسة وردي باهت عند المرور */
}

/* 4. تنسيق منطقة السجل التجاري والبيانات */
.footer-bottom {
    border-top: 1px solid #e0dcd9;
    padding-top: 20px !important;
    margin-top: 20px !important;
    color: #888 !important;
    font-size: 12px !important;
}
/* ARTISTSHOP1 - Signature art footer */
body.theme-raed footer.store-footer {
  margin-top: 14px !important;
  padding: 0 !important;
  background: #f8eee8 !important;
  color: #453f3b !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}

body.theme-raed footer.store-footer .store-footer__inner {
  position: relative !important;
  padding: 30px 0 24px !important;
  background:
    linear-gradient(180deg, #fffaf7 0%, #fbf2ed 56%, #f7e8df 100%) !important;
  border-top: 1px solid #ead8cf !important;
  border-bottom: 1px dashed #dbc4ba !important;
}

body.theme-raed footer.store-footer .store-footer__inner::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 8px !important;
  background:
    linear-gradient(90deg,
      #d99087 0 16%,
      #f2cfc8 16% 32%,
      #ead9c7 32% 48%,
      #c9bfa3 48% 64%,
      #e8b8b0 64% 80%,
      #d99087 80% 100%) !important;
  opacity: .75 !important;
}

body.theme-raed footer.store-footer .store-footer__inner::after {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  top: 52px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #e6d4cc, transparent) !important;
  pointer-events: none !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid {
  position: relative !important;
  z-index: 1 !important;
  gap: 24px !important;
  align-items: start !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child {
  text-align: center !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :nth-child(2),
body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :nth-child(3) {
  position: relative !important;
}

body.theme-raed footer.store-footer h3,
body.theme-raed footer.store-footer h4,
body.theme-raed footer.store-footer .s-contacts-title {
  color: #3d3734 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

body.theme-raed footer.store-footer h3::after,
body.theme-raed footer.store-footer h4::after,
body.theme-raed footer.store-footer .s-contacts-title::after {
  content: "" !important;
  display: block !important;
  width: 42px !important;
  height: 3px !important;
  margin: 7px auto 0 !important;
  background: linear-gradient(90deg, transparent, #cf8178, transparent) !important;
  border-radius: 999px !important;
}

body.theme-raed footer.store-footer p,
body.theme-raed footer.store-footer a,
body.theme-raed footer.store-footer li,
body.theme-raed footer.store-footer .unicode {
  color: #5d5651 !important;
  font-size: 13px !important;
  line-height: 1.58 !important;
}

body.theme-raed footer.store-footer .s-menu-footer-item {
  display: block !important;
  margin-bottom: 5px !important;
}

body.theme-raed footer.store-footer .s-menu-footer-item:hover {
  color: #c87870 !important;
  opacity: 1 !important;
}

body.theme-raed footer.store-footer .max-w-sm,
body.theme-raed footer.store-footer .mb-6 {
  margin-bottom: 11px !important;
}

body.theme-raed footer.store-footer .s-trust-badges-wrapper {
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

body.theme-raed footer.store-footer .s-trust-badges-image {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  filter: saturate(.92) contrast(.98) !important;
}

body.theme-raed footer.store-footer .s-social-list {
  justify-content: center !important;
  gap: 8px !important;
}

body.theme-raed footer.store-footer .s-social-link,
body.theme-raed footer.store-footer .s-social-link a {
  width: 30px !important;
  height: 30px !important;
  background: #fffaf7 !important;
  border: 1px solid #e7d4cb !important;
  border-radius: 999px !important;
  box-shadow: 0 3px 10px rgba(92, 70, 60, .05) !important;
}

body.theme-raed footer.store-footer .s-social-icon,
body.theme-raed footer.store-footer .s-social-icon svg {
  width: 14px !important;
  height: 14px !important;
}

body.theme-raed footer.store-footer > .container {
  background: #f1ded4 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  color: #76665f !important;
}

body.theme-raed footer.store-footer .copyright-text {
  color: #76665f !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
}

body.theme-raed footer.store-footer .s-payments-list {
  justify-content: center !important;
  gap: 5px !important;
}

body.theme-raed footer.store-footer .s-payments-list-item {
  width: 42px !important;
  height: 28px !important;
  padding: 2px 4px !important;
  background: #fffaf7 !important;
  border: 1px solid #e6d2c9 !important;
  border-radius: 10px !important;
}

/* Mobile signature art footer */
@media (max-width: 767px) {
  body.theme-raed footer.store-footer {
    margin-top: 10px !important;
    font-size: 13px !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner {
    padding: 24px 0 18px !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner::after {
    top: 48px !important;
    left: 18px !important;
    right: 18px !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner > .container.grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 18px !important;
    align-items: start !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    padding: 0 8px 8px !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :nth-child(2) {
    padding-left: 9px !important;
    border-left: 1px solid #ead8cf !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :nth-child(3) {
    padding-right: 9px !important;
  }

  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > salla-apps-icons {
    grid-column: 1 / -1 !important;
  }

  body.theme-raed footer.store-footer h3,
  body.theme-raed footer.store-footer h4,
  body.theme-raed footer.store-footer .s-contacts-title {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  body.theme-raed footer.store-footer p,
  body.theme-raed footer.store-footer a,
  body.theme-raed footer.store-footer li,
  body.theme-raed footer.store-footer .unicode {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  body.theme-raed footer.store-footer .s-menu-footer-item {
    margin-bottom: 5px !important;
    text-align: center !important;
  }

  body.theme-raed footer.store-footer .s-contacts-list #contact-slot {
    margin-bottom: 6px !important;
  }

  body.theme-raed footer.store-footer .s-contacts-item {
    justify-content: center !important;
    min-height: 26px !important;
    height: auto !important;
    white-space: nowrap !important;
  }

  body.theme-raed footer.store-footer .s-contacts-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: 6px !important;
    flex: 0 0 24px !important;
    background: #fffaf7 !important;
    border: 1px solid #e7d4cb !important;
  }

  body.theme-raed footer.store-footer .s-contacts-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  body.theme-raed footer.store-footer .s-trust-badges-image {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
  }

  body.theme-raed footer.store-footer .s-social-list {
    margin-top: 8px !important;
  }

  body.theme-raed footer.store-footer > .container {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  body.theme-raed footer.store-footer .copyright-text {
    display: block !important;
    margin-bottom: 7px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  body.theme-raed footer.store-footer .s-payments-list-item {
    width: 40px !important;
    height: 27px !important;
  }
}
/* ARTISTSHOP1 - Footer final polish */
body.theme-raed footer.store-footer .store-footer__inner::before {
  height: 5px !important;
  opacity: .52 !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child {
  position: relative !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child::after {
  content: "artist shop" !important;
  position: absolute !important;
  inset-inline-start: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) rotate(-8deg) !important;
  color: rgba(201, 129, 118, .07) !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

body.theme-raed footer.store-footer .s-trust-badges-wrapper {
  display: inline-flex !important;
  padding: 6px 10px !important;
  background: rgba(255, 250, 247, .62) !important;
  border: 1px solid rgba(231, 212, 203, .85) !important;
  border-radius: 14px !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child::after {
    font-size: 30px !important;
    top: 58% !important;
  }

  body.theme-raed footer.store-footer .s-trust-badges-wrapper {
    padding: 5px 9px !important;
    border-radius: 12px !important;
  }
}
/* ARTISTSHOP1 - Footer micro polish */
body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child::after {
  opacity: .45 !important;
  color: rgba(201, 129, 118, .045) !important;
}

body.theme-raed footer.store-footer .s-trust-badges-wrapper {
  margin-inline: auto !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner > .container.grid > :first-child::after {
    font-size: 26px !important;
    opacity: .35 !important;
    transform: translate(-50%, -50%) rotate(-6deg) !important;
  }
}
/* ARTISTSHOP1 - Footer logo watermark */
body.theme-raed footer.store-footer .store-footer__inner {
  position: relative !important;
}

body.theme-raed footer.store-footer .store-footer__inner > .container.grid {
  position: relative !important;
  z-index: 1 !important;
}

body.theme-raed footer.store-footer .store-footer__inner::after {
  content: "" !important;
  position: absolute !important;
  top: 34px !important;
  inset-inline-start: 34px !important;
  width: 118px !important;
  height: 118px !important;
  background-image: url("https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/ngaXr/j7I6zapq4Gnui98O9YmSbF5p1EZ9QJiwwzN8KR7S.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: .075 !important;
  filter: sepia(.25) saturate(.75) contrast(.9) !important;
  transform: rotate(-10deg) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner::after {
    top: 74px !important;
    inset-inline-start: 18px !important;
    width: 96px !important;
    height: 96px !important;
    opacity: .08 !important;
    transform: rotate(-11deg) !important;
  }
}
/* ARTISTSHOP1 - Stronger footer logo watermark */
body.theme-raed footer.store-footer .store-footer__inner::after {
  top: 42px !important;
  inset-inline-start: 22px !important;
  width: 150px !important;
  height: 150px !important;
  opacity: .18 !important;
  filter: sepia(.18) saturate(.9) contrast(.95) !important;
  transform: rotate(-8deg) !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner::after {
    top: 82px !important;
    inset-inline-start: 12px !important;
    width: 128px !important;
    height: 128px !important;
    opacity: .18 !important;
    transform: rotate(-8deg) !important;
  }
}
/* ARTISTSHOP1 - Reposition footer watermark */
body.theme-raed footer.store-footer .store-footer__inner::after {
  top: 96px !important;
  inset-inline-start: 26px !important;
  width: 118px !important;
  height: 118px !important;
  opacity: .16 !important;
  transform: rotate(0deg) !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner::after {
  top: 165px !important;
    inset-inline-start: 18px !important;
    width: 104px !important;
    height: 104px !important;
    opacity: .16 !important;
    transform: rotate(0deg) !important;
  }
}
/* ARTISTSHOP1 - Final watermark position */
body.theme-raed footer.store-footer .store-footer__inner::after {
  top: 92px !important;
  inset-inline-start: 22px !important;
  inset-inline-end: auto !important;
  width: 86px !important;
  height: 86px !important;
  opacity: .13 !important;
  transform: rotate(0deg) !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner::after {
    top: 96px !important;
    inset-inline-start: 16px !important;
    inset-inline-end: auto !important;
    width: 74px !important;
    height: 74px !important;
    opacity: .14 !important;
    transform: rotate(0deg) !important;
  }
}
/* ARTISTSHOP1 - Clear footer watermark */
body.theme-raed footer.store-footer .store-footer__inner::after {
  top: 82px !important;
  inset-inline-start: 20px !important;
  inset-inline-end: auto !important;
  width: 112px !important;
  height: 112px !important;
  opacity: .22 !important;
  transform: rotate(0deg) !important;
  filter: sepia(.08) saturate(1.05) contrast(1) !important;
}

@media (max-width: 767px) {
  body.theme-raed footer.store-footer .store-footer__inner::after {
    top: 92px !important;
    inset-inline-start: 14px !important;
    inset-inline-end: auto !important;
    width: 96px !important;
    height: 96px !important;
    opacity: .22 !important;
    transform: rotate(0deg) !important;
    filter: sepia(.08) saturate(1.05) contrast(1) !important;
  }
}
/* ARTISTSHOP1 - Compact homepage top sections */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-art-hero {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body.theme-raed .s-block--bundle-art-hero > * {
    display: block !important;
    max-height: 235px !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body.theme-raed .s-block--bundle-store-features {
    margin-top: 6px !important;
    margin-bottom: 8px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body.theme-raed .s-block--bundle-store-features > * {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    min-height: 0 !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    margin-top: 8px !important;
    padding-top: 14px !important;
  }
}
/* ARTISTSHOP1 - Reduce gaps around top homepage blocks */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-art-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  body.theme-raed .s-block--bundle-store-features {
    margin-top: -32px !important;
    margin-bottom: -22px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.theme-raed .s-block--bundle-store-features > * {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    margin-top: -12px !important;
    padding-top: 6px !important;
  }
}
/* ARTISTSHOP1 - Restore soft top-section background */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-store-features {
    position: relative !important;
    background: linear-gradient(180deg, #f8eee8 0%, #f6eee9 100%) !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  body.theme-raed .s-block--bundle-store-features::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
      radial-gradient(circle at 15% 20%, rgba(232, 185, 173, .22), transparent 32%),
      radial-gradient(circle at 85% 80%, rgba(216, 190, 148, .16), transparent 30%) !important;
    pointer-events: none !important;
  }

  body.theme-raed .s-block--bundle-store-features > * {
    position: relative !important;
    z-index: 1 !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    background: #fbf4ef !important;
  }
}
/* ARTISTSHOP1 - Tighten space before art categories */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-store-features {
    margin-bottom: -44px !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    margin-top: -26px !important;
    padding-top: 0 !important;
  }

  body.theme-raed .s-block--bundle-art-categories .s-block__title,
  body.theme-raed .s-block--bundle-art-categories h2,
  body.theme-raed .s-block--bundle-art-categories h3 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }
}
/* ARTISTSHOP1 - Safe spacing fix for top sections */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-store-features {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    margin-top: 0 !important;
    padding-top: 10px !important;
  }

  body.theme-raed .s-block--bundle-art-categories .s-block__title,
  body.theme-raed .s-block--bundle-art-categories h2,
  body.theme-raed .s-block--bundle-art-categories h3 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }
}
/* ARTISTSHOP1 - Mild spacing trim after features */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-store-features {
    padding-bottom: 0 !important;
    margin-bottom: -10px !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    padding-top: 0 !important;
    margin-top: -6px !important;
  }
}
/* ARTISTSHOP1 - Final top spacing polish */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-store-features {
    margin-bottom: -14px !important;
  }

  body.theme-raed .s-block--bundle-art-categories {
    margin-top: -8px !important;
  }
}
/* ARTISTSHOP1 - Responsive header polish */

/* Desktop */
@media (min-width: 768px) {
  body.theme-raed header.store-header {
    background: #fffaf7 !important;
    border-bottom: 1px solid #eadbd4 !important;
    box-shadow: 0 4px 14px rgba(92, 70, 60, .035) !important;
  }

  body.theme-raed header.store-header .top-navbar {
    background: linear-gradient(90deg, #fffaf7 0%, #fbf1ec 100%) !important;
    border-bottom: 1px solid rgba(234, 219, 212, .65) !important;
  }

  body.theme-raed header.store-header .s-search-input,
  body.theme-raed header.store-header .s-search-placeholder-trigger,
  body.theme-raed header.store-header .s-search-input-wrapper {
    background: #f7f2ef !important;
    border: 1px solid #eadbd4 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  body.theme-raed header.store-header {
    background: #fffaf7 !important;
    border-bottom: 1px solid #eadbd4 !important;
    box-shadow: none !important;
  }

  body.theme-raed header.store-header::after {
    content: none !important;
    display: none !important;
  }

  body.theme-raed header.store-header .top-navbar {
    background: #fffaf7 !important;
    border-bottom: 1px solid #f0e4de !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  body.theme-raed header.store-header .s-search-input,
  body.theme-raed header.store-header .s-search-placeholder-trigger,
  body.theme-raed header.store-header .s-search-input-wrapper {
    background: #f5f1ef !important;
    border: 1px solid #eadbd4 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }

  body.theme-raed header.store-header .navbar-brand img {
    width: 42px !important;
    height: 48px !important;
    object-fit: contain !important;
  }
}
/* ARTISTSHOP1 - Mobile header final spacing */
@media (max-width: 767px) {
  body.theme-raed header.store-header {
    margin-bottom: 0 !important;
  }

  body.theme-raed header.store-header .top-navbar {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  body.theme-raed header.store-header .s-search-input,
  body.theme-raed header.store-header .s-search-placeholder-trigger,
  body.theme-raed header.store-header .s-search-input-wrapper {
    min-height: 38px !important;
    height: 38px !important;
  }

  body.theme-raed header.store-header .navbar-brand img {
    width: 40px !important;
    height: 46px !important;
  }
}
/* ARTISTSHOP1 - Mobile header height trim */
@media (max-width: 767px) {
  body.theme-raed header.store-header .top-navbar {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  body.theme-raed header.store-header .s-search-input,
  body.theme-raed header.store-header .s-search-placeholder-trigger,
  body.theme-raed header.store-header .s-search-input-wrapper {
    height: 36px !important;
    min-height: 36px !important;
  }

  body.theme-raed header.store-header .navbar-brand img {
    width: 38px !important;
    height: 44px !important;
  }
}
/* ARTISTSHOP1 - Artistic wrapper for real Salla reviews */
body.theme-raed .s-block--testimonials {
  position: relative !important;
  overflow: hidden !important;
  margin-top: 12px !important;
  margin-bottom: 18px !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 185, 173, .22) 0 80px, transparent 82px),
    radial-gradient(circle at 88% 80%, rgba(216, 190, 148, .16) 0 90px, transparent 92px),
    linear-gradient(180deg, #fffaf7 0%, #fbf1ec 100%) !important;
  border-top: 1px solid rgba(234, 223, 215, .9) !important;
  border-bottom: 1px solid rgba(234, 223, 215, .9) !important;
}

body.theme-raed .s-block--testimonials::before {
  content: "تجارب عملائنا" !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  width: fit-content !important;
  max-width: calc(100% - 32px) !important;
  margin: 0 auto 16px !important;
  padding: 8px 22px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 249, .86) !important;
  border: 1px solid rgba(234, 223, 215, .95) !important;
  box-shadow: 0 10px 24px rgba(92, 70, 60, .07) !important;
  color: #3f3a37 !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

body.theme-raed .s-block--testimonials::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 5px !important;
  background: linear-gradient(90deg, #e7a19a 0 18%, #f5ddd8 18% 40%, #d8be94 40% 62%, #f1c8c1 62% 82%, #e7a19a 82% 100%) !important;
  opacity: .62 !important;
  pointer-events: none !important;
}

body.theme-raed .s-block--testimonials > salla-reviews {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
}

@media (min-width: 768px) {
  body.theme-raed .s-block--testimonials {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 34px 0 38px !important;
    border-radius: 22px !important;
  }

  body.theme-raed .s-block--testimonials::before {
    font-size: 22px !important;
    margin-bottom: 22px !important;
  }
}

@media (max-width: 767px) {
  body.theme-raed .s-block--testimonials {
    padding: 22px 0 24px !important;
    margin-top: 8px !important;
    margin-bottom: 14px !important;
    border-radius: 0 !important;
  }

  body.theme-raed .s-block--testimonials::before {
    font-size: 17px !important;
    margin-bottom: 14px !important;
    padding: 7px 18px 9px !important;
  }
}
/* ARTISTSHOP1 - Final mobile hero/features spacing */
@media (max-width: 767px) {
  body.theme-raed .s-block--bundle-art-hero {
    margin-bottom: -34px !important;
  }

  body.theme-raed .s-block--bundle-store-features {
    margin-top: -24px !important;
    padding-top: 0 !important;
  }

  body.theme-raed .s-block--bundle-store-features .container,
  body.theme-raed .s-block--bundle-store-features .s-container {
    padding-top: 0 !important;
    margin-top: -26px !important;
  }
}