

 /*====================== Serch Section ======================*/
.searched-product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  place-content: center;
  justify-items: center; 
}

 .no-results{
  
   color: var(--color-primary);
   font-family: var(--font-primary-ar);
   font-size: var(--fs-h1);
   font-weight: 600;
   animation: any 1s alternate steps(34) infinite;
   text-align: center;
   width: 3000px;
  
 }
@media (max-width: 576px) {
  .no-results {
    font-size: calc(var(--fs-h1) - 12px);
    padding: 0 10px;
  }
}

/* التابلت */
@media (min-width: 577px) and (max-width: 992px) {
  .no-results {
    font-size: calc(var(--fs-h1) - 6px);
  }
}


 @keyframes any {
   0%{
      opacity: 0.3;
   }
    20%{
      opacity: 0.5;
   }
    50%{
      opacity: 0.7;
   }
    1000%{
      opacity: 1;
   }
   
 }