.Nextron-our-story-3 .Nextron-image-item {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 45vh;
}
.mt-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  salla-products-slider .s-product-card-image,
  .s-product-card-image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .s-product-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .s-product-card-content {
    padding-top: 10px !important;
  }

  .s-product-card-entry {
    height: auto !important;
    min-height: 0 !important;
  }
}

.s-product-card-vertical .s-product-card-content-footer salla-add-product-button button {
    background-color: #d4beaa;
    border: 1px solid #ffffff;
    color: var(--color-secondary);
    opacity: 1;
}

custom-salla-product-card .s-product-card-content-desc {
    display: none !important;
}
.store-footer .max-w-sm.leading-6.mb-6 {
  display: none !important;
}
.store-footer .custom-social-links {
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

}


/* أيقونة الريال للسعر السابق */
.s-product-card-content-sub .s-product-card-sale-price > span i {
  color: #ed1414 !important;
}
/* السعر السابق فقط */
.fix_sale_price .s-product-card-sale-price > span {
  color: #ed1414 !important;
  -webkit-text-fill-color: #ed1414 !important;
  text-decoration: line-through !important;
  text-decoration-color: #ed1414 !important;
}
/* السعر الحالي */
.fix_sale_price .s-product-card-sale-price > h4 {
  color: #99999 !important;
  -webkit-text-fill-color: #99999 !important;
}

.opacity-100 {
    opacity: 0;
}
.s-product-card-vertical .s-product-card-content-footer salla-add-product-button button::before {
    background-color: #928b84 !important;
}

(function () {
  const url = 'https://differentsa.com/%D8%B3%D9%8A%D8%A7%D8%B3%D8%A9-%D8%A7%D9%84%D8%A7%D8%B3%D8%AA%D8%A8%D8%AF%D8%A7%D9%84-%D9%88%D8%A7%D9%84%D8%A7%D8%B3%D8%AA%D8%B1%D8%AC%D8%A7%D8%B9/page-888399354';
  const text = 'سياسة الاستبدال والاسترجاع';

  function addLink() {
    if (document.getElementById('custom-return-policy-link')) return;

    const target =
      document.querySelector('footer .footer_links salla-menu') ||
      document.querySelector('footer .footer_links') ||
      document.querySelector('footer');

    if (!target) return;

    const link = document.createElement('a');
    link.id = 'custom-return-policy-link';
    link.href = url;
    link.textContent = text;
    link.style.display = 'block';
    link.style.marginTop = '10px';
    link.style.color = 'inherit';
    link.style.fontSize = '15px';
    link.style.textDecoration = 'none';
    link.style.lineHeight = '1.8';

    target.appendChild(link);
  }

  addLink();
  document.addEventListener('DOMContentLoaded', addLink);
  window.addEventListener('load', addLink);

  const observer = new MutationObserver(addLink);
  observer.observe(document.body, {
    childList: true,
    subtree: true
  });
})();