/* Add custom CSS styles below */ 
#advanced-slider-1 .advanced-slider__caption__inner__content__heading,
#advanced-slider-1 .advanced-slider__caption__inner__content__text {
    color: #fff !important; /* أبيض */
}
@keyframes fadeOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

@supports (animation-timeline: view()) {
  #advanced-slider-1 .advanced-slider__caption__inner__content,
  .s-product-card,
  .product-card {
    opacity: 0;
    animation-name: fadeOnly;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-timeline: view(block);
    animation-range: entry 10% cover 60%;
    will-change: opacity;
  }

  .s-products-list > .s-product-card:nth-child(2),
  .products-grid > *:nth-child(2) { animation-delay: .12s; }

  .s-products-list > .s-product-card:nth-child(3),
  .products-grid > *:nth-child(3) { animation-delay: .24s; }

  .s-products-list > .s-product-card:nth-child(4),
  .products-grid > *:nth-child(4) { animation-delay: .36s; }
}

@supports not (animation-timeline: view()) {
  #advanced-slider-1 .advanced-slider__caption__inner__content,
  .s-product-card,
  .product-card { opacity: 1; }
}