/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
/* تغيير ألوان أيقونات ونصوص الهيدر إلى الأبيض */
 .flex.items-stretch.justify-between *,
.header-btn i,
.currency,
.sicon-menu {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.angel-ad__content:hover {
    color: unset!important;
    opacity: 0.7;
}
img.logo-light {
    padding: 5px;
}
/* في حال وجود أيقونة SVG السلة */
.s-cart-summary-wrapper svg path {
    fill: #ffffff !important;
}
/*mobile menu*/
nav#mobile-menu li .lazy__bg.lazy_menu {
    background-size: contain;
}
/*product-card*/
custom-salla-product-card img {
    background-color: #ffffff !important;
}

.s-product-card-content-sub.justify-center.gap-2:after {
    content: '';
    display: inline-block;
    width: 5rem;
    height: 1.5rem;
    background-image: url(https://i.postimg.cc/Qt00z341/tamara-tabby.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.s-product-card-discount.card-discount.font-primary {
  animation: discountPulse 1.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes discountPulse {
  0%, 100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
}
/*product bage*/
.s-add-product-button-mini-checkout-content {
    color: #fff !important;
}

/*categories*/
.categories h3{
    color: #ffffff!important;
}

/*footer*/
.store-footer .footer-container .footer-list a:hover  {
    color: #ffffff !important;
    opacity: 0.7;
}
.store-footer a:hover {
    color: unset !important;
    opacity: 0.7;
}
/*banner-square*/
/* ============ Stable Luxury Border ============ */

.sub-categories .banner-square {
  position: relative;
  padding: 2px !important;
  border-radius: 12px;
  overflow: hidden;

  background: linear-gradient(
    120deg,
    #111,
    #444,
    #fff,
    #444,
    #111
  );

  background-size: 250% 100%;

  animation: borderShine 5s ease-in-out infinite;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* الصورة */
.sub-categories .banner-square .box-img {
  position: relative;
  z-index: 1;

  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* حركة الإطار */
@keyframes borderShine {
  0% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Hover */
.sub-categories .banner-square:hover {
  transform: translateY(-4px) scale(1.03);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18),
    0 0 12px rgba(255,255,255,0.18);

  z-index: 2;
}

/* Hover على الصورة */
.sub-categories .banner-square:hover .box-img {
  transform: scale(1.01);
}

/* إخفاء النص */
.sub-categories .banner-square .text-center {
  display: none !important;
}

/* المسافات */
.sub-categories .banner-square {
  margin: 1px 10px;
}

/*famous-popup*/
.famous-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  direction: rtl;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.famous-popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.famous-popup-content {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  padding: 36px 28px 28px;
  text-align: center;
  transform: scale(0.9) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.famous-popup-overlay.is-active .famous-popup-content {
  transform: scale(1) translateY(0);
}

.famous-popup-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  background-color: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.famous-popup-close:hover {
  background-color: #e5e7eb;
  color: #111827;
  transform: rotate(90deg);
}

.famous-popup-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.famous-popup-badge {
  display: inline-block;
  align-self: center;
  background-color: rgba(93, 80, 63, 0.08);
  color: var(--color-primary, #5d503f);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.famous-popup-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1.4;
  margin: 0;
}

.famous-popup-title span {
  color: var(--color-primary, #5d503f);
  display: inline-block;
}

.famous-popup-btn {
  width: 100%;
  background-color: var(--color-primary, #5d503f);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.famous-popup-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.famous-payment-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed #e5e7eb;
}

.famous-payment-text {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin: 0;
}

.famous-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.famous-payment-img {
  height: 26px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.famous-payment-img:hover {
  transform: scale(1.05);
}