/* =========================================
   CODE VIVO — PRODUCT CARDS
   Homepage + categories + search + sliders
========================================= */

/*
  Salla uses:
  - salla-products-slider on homepage/product sliders
  - salla-products-list on category and search pages
  - .fixed-product for manually fixed product sections
*/

:is(salla-products-slider, salla-products-list, .fixed-product)
custom-salla-product-card {
  display: flex !important;
  height: 100% !important;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #eee8f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(66, 25, 112, 0.06);
}

/* Product image */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-image {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  flex: none;
  overflow: hidden;
  background: #faf9fb;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-image > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Card content */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content {
  display: flex !important;
  min-height: 196px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 12px !important;
}

/* Product title */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-main {
  min-height: 46px;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-title {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  margin: 0 !important;
  color: #25202a;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-title a {
  color: inherit !important;
}

/* Price and rating area */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-sub {
  direction: rtl;
  display: flex !important;
  min-height: 76px;
  width: 100%;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center;
  gap: 3px;
  margin-top: 6px;
  text-align: right;
}

/* Sale price */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-sale-price {
  direction: rtl;
  display: flex !important;
  min-height: 50px;
  width: 100%;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center;
  gap: 3px;
  text-align: right;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-sale-price h4 {
  margin: 0 !important;
  color: #421970 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-sale-price h4 .sicon-sar {
  margin-inline-start: 3px;
  font-size: 13px !important;
  font-weight: 600;
}

/* Old price */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-sale-price > span {
  color: #8a8490 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* Product without discount */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-price {
  margin: 0 !important;
  color: #421970 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

/* Rating */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-rating {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 3px;
  color: #625b67;
  font-size: 13px;
}

/* Footer and add-to-cart */
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-footer {
  width: 100%;
  margin-top: auto !important;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-footer > *,
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-footer salla-add-product-button,
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-footer salla-button,
:is(salla-products-slider, salla-products-list, .fixed-product)
.s-product-card-content-footer .s-button-wrap {
  width: 100% !important;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-button-primary-outline {
  width: 100% !important;
  min-height: 44px;
  border-color: #683f96 !important;
  border-radius: 8px !important;
  background: #683f96 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-button-primary-outline:hover {
  border-color: #421970 !important;
  background: #421970 !important;
  color: #ffffff !important;
}

:is(salla-products-slider, salla-products-list, .fixed-product)
.s-button-primary-outline:focus-visible {
  outline: 3px solid rgba(104, 63, 150, 0.28);
  outline-offset: 2px;
}

/* Mobile-first product layout */
@media (max-width: 639px) {
  salla-products-slider .s-products-slider-card {
    width: 50% !important;
    max-width: none !important;
    padding-inline: 4px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  custom-salla-product-card {
    border-radius: 11px;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-content {
    min-height: 184px;
    padding: 9px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-content-main {
    min-height: 42px;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-content-title {
    min-height: 40px;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-content-sub {
    min-height: 70px;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-sale-price h4,
  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-price {
    font-size: 20px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-sale-price > span {
    font-size: 12px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-button-primary-outline {
    min-height: 42px;
    padding-inline: 8px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 370px) {
  salla-products-slider .s-products-slider-card {
    padding-inline: 3px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-content {
    padding: 8px !important;
  }

  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-sale-price h4,
  :is(salla-products-slider, salla-products-list, .fixed-product)
  .s-product-card-price {
    font-size: 19px !important;
  }
} 
/* إخفاء وثيقة العمل الحر بالكامل */
salla-trust-badges.s-trust-badges-wrapper {
  display: none !important;
}