/* 🌿 تصميم تراثي فخم لشريط القائمة */
.quicklinks {
  background: linear-gradient(90deg, #f8f5ec 0%, #efe9da 50%, #f8f5ec 100%);
  border-top: 1px solid rgba(212,163,115,0.25);
  border-bottom: 1px solid rgba(163,177,138,0.25);
  box-shadow: inset 0 -1px 3px rgba(163,177,138,0.1);
  position: relative;
  overflow: hidden;
}

/* ✴️ زخرفة خفيفة (نمط موجي ذهبي خافت) */
.quicklinks::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212,163,115,0.06) 0px,
    rgba(212,163,115,0.06) 2px,
    transparent 3px,
    transparent 8px
  );
  pointer-events: none;
}

/* 🔸 النصوص */
.quicklinks-item span {
  color: #4a5931 !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  padding: 8px 4px;
}

/* 💫 التفاعل */
.quicklinks-item span:hover {
  color: #d4a373 !important;
  background: rgba(212,163,115,0.08);
  border-radius: 6px;
  padding: 8px 10px;
}
/* 💫 تحسين تصميم بطاقة المنتج */
.product-entry {
  background: linear-gradient(180deg, #fdfbf6 0%, #f8f5ef 100%);
  border: 1px solid rgba(212,163,115,0.25);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(163,177,138,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

/* ✨ تأثير الحركة عند المرور */
.product-entry:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(163,177,138,0.18);
  border-color: rgba(212,163,115,0.4);
}

/* 🖼️ صورة المنتج */
.product-entry__image img {
  border-radius: 16px 16px 0 0;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-entry:hover .product-entry__image img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ❤️ زر المفضلة */
.btn--wishlist button {
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  border: 1px solid rgba(212,163,115,0.3);
  transition: all 0.3s ease;
}
.btn--wishlist button:hover {
  background: #d4a373;
  color: #fff;
}

/* 💰 السعر */
.product-entry__price {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}

.sale-price {
  color: #4a5931;
  font-weight: 700;
  font-size: 1.2rem;
}

.regular-price {
  text-decoration: line-through;
  color: rgba(0,0,0,0.4);
  font-size: 0.9rem;
}

.discount-amount {
  background: linear-gradient(90deg, #d4a373, #a3b18a);
  color: #fff;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 8px;
}

/* 🌿 اسم المنتج */
.product-entry__title a {
  color: #3e4a27;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}
.product-entry__title a:hover {
  color: #d4a373;
}

/* ⭐ التقييم */
.s-rating-stars-wrapper svg path {
  fill: #d4a373 !important;
}

/* 🛍️ زر “إضافة للسلة” */
.s-button-element.s-button-primary {
  background: linear-gradient(90deg, #a3b18a, #d4a373);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.s-button-element.s-button-primary:hover {
  background: linear-gradient(90deg, #d4a373, #a3b18a);
  transform: scale(1.03);
}

/* ✨ حركة ناعمة عند ظهور البطاقة */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-entry {
  animation: fadeInUp 0.6s ease both;
}
/* توسيط محتوى البطاقة */
.product-entry__content {
  display: flex;
  flex-direction: column;
  align-items: center;  /* أفقي */
  justify-content: center;  /* عمودي */
  text-align: center;
  height: 100%;
  padding: 15px 10px;
}

/* تعديل النصوص لتكون في المنتصف */
.product-entry__title a,
.sale-price,
.regular-price,
.discount-amount {
  text-align: center;
  display: block;
}

/* تصغير التباعد بين العناصر */
.product-entry__content .flex {
  justify-content: center;
}

/* تعديل النجوم لتكون في المنتصف أيضًا */
.s-rating-stars-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

/* زر إضافة للسلة */
.s-button-element.s-button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 80%;
}
.product-entry__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}/* 🌿 تنسيق عام للعنوان */
.s-block__title h2 {
  font-family: "Cairo", "Noto Kufi Arabic", sans-serif;
  font-weight: 700;
  color: #4a5931; /* زيتوني غامق */
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 20px auto;
  letter-spacing: 0.5px;
  animation: titleFadeIn 1s ease both;
}

/* ✨ تدرج ذهبي ناعم أسفل النص */
.s-block__title h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #d4a373, #a3b18a);
  border-radius: 2px;
  opacity: 0;
  animation: lineSlideIn 1.2s ease forwards 0.4s;
}

/* 💫 الحركة الناعمة */
@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lineSlideIn {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

/* 📱 حجم الخط متجاوب */
@media (max-width: 768px) {
  .s-block__title h2 {
    font-size: 1.3rem; /* موبايل */
  }
}
@media (min-width: 769px) {
  .s-block__title h2 {
    font-size: 1.8rem; /* ديسكتوب */
  }
}
/* ✨ عنوان متحرك بلون فاخر */
.s-block__title h2 {
  font-family: "Cairo", "Noto Kufi Arabic", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 2rem); /* متجاوب تلقائيًا */
  text-align: center;
  background: linear-gradient(
    90deg,
    #d4a373,
    #a3b18a,
    #d4a373,
    #f0e5d0
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: movingGradient 5s linear infinite;
  position: relative;
  display: inline-block;
  margin: 20px auto;
}

/* 🌈 حركة التدرج داخل النص */
@keyframes movingGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ✨ خط ذهبي بسيط تحت النص */
.s-block__title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #d4a373, #a3b18a);
  border-radius: 2px;
}

/* 🎯 في الموبايل */
@media (max-width: 768px) {
  .s-block__title h2 {
    font-size: 1.4rem;
  }
}
/* ✨ تصميم جذاب لمميزات المتجر */
.s-block--features__item {
  background: linear-gradient(180deg, #fdfbf6 0%, #f8f5ef 100%);
  border: 1px solid rgba(212,163,115,0.25);
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(163,177,138,0.1);
  transition: all 0.4s ease;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* عند المرور */
.s-block--features__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(163,177,138,0.2);
  border-color: rgba(212,163,115,0.4);
}

/* ✨ زخرفة خفيفة بالخلفية */
.s-block--features__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,163,115,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.s-block--features__item:hover::before {
  opacity: 1;
}

/* 🌈 أيقونة بلون متدرج متحرك */
.feature-icon i {
  font-size: 3rem;
  background: linear-gradient(
    90deg,
    #d4a373,
    #a3b18a,
    #d4a373,
    #f0e5d0
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: movingGradient 5s linear infinite;
  transition: transform 0.4s ease;
}

/* 💫 نفس حركة العنوان */
@keyframes movingGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* حركة بسيطة للأيقونة عند المرور */
.s-block--features__item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
}

/* 🪔 العنوان */
.s-block--features__item h2 {
  color: #4a5931;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.s-block--features__item:hover h2 {
  color: #d4a373;
}

/* 🩶 النص */
.s-block--features__item p {
  color: #5f6642;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.s-block--features__item:hover p {
  opacity: 1;
  transform: scale(1.02);
}

/* 💫 حركة دخول عند الظهور */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.s-block--features__item {
  animation: fadeInUp 0.8s ease both;
}

.store-footer {
    background: transparent !important;

}.store-footer h2 {
    line-height: 3rem;
}
/* 🌿 الفوتر بخلفية لبان راقية */
.store-footer-wrap {
  position: relative;
  background: linear-gradient(
      rgba(248, 246, 239, 0.73),
      rgba(243, 239, 229, 0.96)
    ),
    url("https://i.postimg.cc/Y0zpFLNV/6636c75c-9e0e-46f9-9e0d-095bd74b2b98.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 20px rgba(163, 177, 138, 0.15);
  color: #4a5931;
  padding-top: 40px;
  overflow: visible !important;
  z-index: 0;
}

/* ✨ جميع العناصر فوق الخلفية */
.store-footer,
.footer-links-bar,
.contacts-list,
.text-gray-400 {
  position: relative;
  z-index: 2;
}

/* 💎 العنوان الرئيسي */
.store-footer h2 {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #d4a373, #a3b18a, #d4a373);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: movingGradient 6s linear infinite;
  margin-bottom: 15px;
}

/* ✨ حركة اللون داخل النص */
@keyframes movingGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🪔 وصف المتجر */
.pref-about-store {
  color: #5b6240;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.9;
  text-align: center;
}

/* 🌿 الروابط */
.footer-links-bar a,
.contacts-list a {
  color: #4a5931;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-links-bar a:hover,
.contacts-list a:hover {
  color: #d4a373;
  transform: translateY(-3px);
}

/* أيقونات التواصل */
.contacts-list i {
  background: #fffdf8;
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: #4a5931;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-inline-end: 8px;
}
.contacts-list a:hover i {
  background: linear-gradient(90deg, #d4a373, #a3b18a);
  color: #fff;
  transform: scale(1.1);
}

/* 💳 أيقونات الدفع */
ul.flex.flex-wrap img {
  border-radius: 8px;
  border: 1px solid rgba(212, 163, 115, 0.3);
  background-color: #fffdf8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 32px;
}
ul.flex.flex-wrap img:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(163, 177, 138, 0.25);
}

/* ✨ تأثير دخول ناعم */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.store-footer-wrap {
  animation: fadeInUp 1s ease both;
}

/* 📱 مظهر الموبايل */
@media (max-width: 768px) {
  .store-footer h2 {
    font-size: 1.6rem;
  }
  .pref-about-store {
    font-size: 0.9rem;
    padding: 0 15px;
  }
}
footer.store-footer-wrap {
    margin-top: 1rem !important;
}/* قسم آراء العملاء */
#testimonials-block-7 {
  background: linear-gradient(135deg, #f8f4ef, #ede6db);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* خلفية زخرفية خفيفة تشبه بخور أو لبان */
#testimonials-block-7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.pixabay.com/photo/2020/03/13/08/33/smoke-4928080_1280.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

/* المحتوى النصي */
#testimonials-block-7 .content-area {
  position: relative;
  z-index: 2;
  color: #2e2e2e;
  text-align: right;
}

#testimonials-block-7 label {
  color: #a98d3c;
  letter-spacing: 1px;
  font-weight: 600;
}

#testimonials-block-7 h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b59e5f, #a2b29f, #b59e5f);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 5s linear infinite;
}

#testimonials-block-7 p {
  font-size: 1rem;
  color: #6b6b6b;
  margin-top: 8px;
}

/* انميشن اللون المتدرج في العنوان */
@keyframes textGradient {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* صندوق التقييمات */
#testimonials-block-7 blockquote {
  background: #ffffffb3;
  backdrop-filter: blur(6px);
  border: 1px solid #d6c79f;
  border-radius: 14px;
  padding: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(180, 170, 120, 0.15);
}

#testimonials-block-7 blockquote:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(180, 170, 120, 0.25);
}

/* اسم العميل */
#testimonials-block-7 figcaption div.font-semibold {
  color: #4d4d2a;
  font-weight: 700;
}

/* الأيقونات النجمية */
#testimonials-block-7 .s-rating-stars-btn-star path {
  fill: url(#gold-gradient);
}

#testimonials-block-7 .s-rating-stars-btn-star svg {
  animation: glow 3s ease-in-out infinite alternate;
}

/* تأثير توهج خفيف على النجوم */
@keyframes glow {
  0% { filter: drop-shadow(0 0 1px #bba56a); }
  100% { filter: drop-shadow(0 0 6px #d4c38f); }
}

/* النقاط السفلية (pagination) */
.swiper-pagination-bullet {
  background: #a98d3c !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}/* خلفية قسم آراء العملاء */
.bg-area.lazy.absolute.w-screen.lg\:w-\[50vw\].h-full.top-0.z-0.bg-no-repeat.bg-cover.bg-right.right-0 {
  background: linear-gradient(
      rgba(248, 246, 239, 0.73),
      rgba(243, 239, 229, 0.96)
    ),
    url("https://i.postimg.cc/d0YWZ3Bx/Whisk-5dda0b1d06d566597a747a80729f671ceg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
  opacity: 0.9;
  transition: all 0.8s ease-in-out;
}

/* تأثير ناعم عند التحريك */
.bg-area.lazy.absolute.w-screen.lg\:w-\[50vw\].h-full.top-0.z-0.bg-no-repeat.bg-cover.bg-right.right-0:hover {
  transform: scale(1.03);
  filter: brightness(1) saturate(1.2);
}