/* Add custom CSS styles below */ 
body {
  background-color: #ffffff !important;
}




/* إخفاء شريط البحث في متجر سلة */
.search-bar, .search-icon, [class*="search"] {
    display: none !important;
}




















body {
  background: linear-gradient(180deg, #fdf6f0 0%, #fefaf5 40%, #fdf6f0 100%);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* زخرفة دائرية علوية */
body::before {
  content: "";
  position: fixed;
  top: 120px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 210, 180, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
  pointer-events: none;
}

/* زخرفة دائرية سفلية */
body::after {
  content: "";
  position: fixed;
  bottom: 100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
  pointer-events: none;
}















/* محاذاة المنتج في المنتصف */
.s-products-list-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  padding: 60px 0;
  flex-wrap: wrap;
  gap: 40px;
}

/* تصميم البطاقة */
.s-product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

/* تأثير hover */
.s-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
}

/* تصميم زر إضافة للسلة */
.s-product-card .s-add-to-cart,
.s-product-card button {
  background: linear-gradient(to right, #f4b183, #f8cbb0);
  color: #000 !important;
  font-weight: bold;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.s-product-card .s-add-to-cart:hover,
.s-product-card button:hover {
  background: linear-gradient(to right, #f8cbb0, #f4b183);
  transform: scale(1.03);
  cursor: pointer;
}

/* تأثير عند الظهور */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* إضافة دائرة خفيفة زخرفية داخل البطاقة */
.s-product-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 195, 140, 0.15) 0%, transparent 80%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

















button.s-button-element.s-button-btn.s-button-outline.s-button-wide {
  background: linear-gradient(to right, #f6c09c, #f9e1d0);
  color: #4d2d1f !important;
  font-weight: bold;
  padding: 12px 28px;
  font-size: 16px;
  border: none !important;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(250, 170, 120, 0.2);
  transition: all 0.3s ease-in-out;
}

button.s-button-element.s-button-btn.s-button-outline.s-button-wide:hover {
  background: linear-gradient(to left, #f9e1d0, #f6c09c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 170, 120, 0.3);
}

















.s-block--features__item {
  background: rgba(255, 250, 240, 0.7); /* بيج فاتح شفاف */
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.s-block--features__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* تنسيق الأيقونة */
.s-block--features__item svg {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  color: #7a5c3d; /* بني جذاب */
}

/* تنسيق العنوان */
.s-block--features__item strong {
  font-size: 18px;
  color: #4e392a;
  display: block;
  margin-bottom: 8px;
}

/* تنسيق النص */
.s-block--features__item p {
  color: #6f6f6f;
  font-size: 14px;
}


















#jazebia-preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-align: center;
  font-family: 'Cairo', sans-serif;
  color: #333;
}

#jazebia-preloader img {
  width: 180px;
  height: auto;
  animation: zoomIn 2s ease-in-out;
}

#jazebia-preloader p {
  margin-top: 20px;
  max-width: 90%;
  font-size: 16px;
  color: #5a4b3c;
  opacity: 0;
  animation: fadeIn 2s ease-in-out 0.5s forwards;
}

@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}














.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
}










/* غطاء الشاشة */
#popup-overlay{
  position: fixed !important;
  inset: 0;                 /* top/right/bottom/left = 0 */
  background: rgba(0,0,0,.6);
  display: grid;
  place-items: center;      /* توسيط أفقي وعمودي */
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease;
}

/* حالة الظهور */
#popup-overlay.show{
  visibility: visible;
  opacity: 1;
}

/* صندوق الصورة */
#popup-box{
  position: relative;
  width: min(92vw, 700px);  /* مناسب لسطح المكتب والجوال */
  max-height: 90vh;         /* ما يتعدّى ارتفاع الشاشة */
  border-radius: 12px;
  overflow: hidden;         /* يمنع التمدد */
  background: transparent;
}

/* الصورة نفسها */
#popup-box img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 12px;
}

/* زر الإغلاق */
#popup-close{
  position: absolute;
  top: 8px;
  inset-inline-end: 12px;   /* يدعم RTL و LTR */
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #1f2937;
  background: rgba(255,255,255,.9);
  border: 0;
  border-radius: 9999px;
  padding: 2px 10px 6px;
}










/* FAQ */
.faq-container {
  max-width: 1100px;
  margin: 120px auto;
  padding: 20px;
  font-family: 'Cairo', sans-serif;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start; /* Prevent row stretching */
}

@media (max-width: 700px) {
  .faq-container {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item.active {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  gap: 12px;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  flex: 1;
}

.faq-icon {
  min-width: 40px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8f1ea, #fff);
  font-size: 20px;
  font-weight: bold;
  color: #7a4f2a;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  background: #7a4f2a;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 150px;
  font-size: 15px;
  color: #4f4f4f;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 12px 18px 16px 18px;
}