 .abajora-shop {
     background: linear-gradient(360deg, #D0944B 0%, #C3AB89 100%);

     .header *,
     .footer *,
     .mobile-footer * {
         color: var(--main-color) !important;
     }

     li a[aria-current="page"] {
         border-bottom: 1px solid var(--main-color) !important;
     }

     .woocommerce-page {
         padding: 10rem 4.6875% 70px;

         .page-title,
         .woocommerce-result-count,
         form {
             display: none;
         }

         & .products::before {
             display: none;
         }

         & .products {
             display: flex;
             flex-wrap: wrap;
             gap: 25px 10px;
             padding-top: 2.5rem;

             /* لو فيها عنصر فقط */
             &:has(li:nth-child(1)):not(:has(li:nth-child(2))) {
                 justify-content: center;
             }

             /* لو فيها عنصرين فقط */
             &:has(li:nth-child(2)):not(:has(li:nth-child(3))) {
                 justify-content: center;
             }

             @media (min-width: 992px) {
                 gap: 65px 4.76%;
             }


             & li {
                 display: flex;
                 flex-direction: column;
                 margin: 0 !important;
                 width: 100% !important;

                 @media (min-width: 768px) {
                     width: calc((100% - 20px) / 2) !important;
                 }

                 @media (min-width: 992px) {
                     width: calc((100% - 9.52%) / 3) !important;
                 }

                 & a {
                     .onsale {
                         display: none;
                     }

                     img {
                         width: 100%;
                         object-fit: cover;
                         aspect-ratio: 1/1;
                     }

                     h4 {
                         margin-top: 6px;
                         margin-bottom: 5px;

                         @media (max-width: 768px) {
                             text-align: center;
                             font-size: 40px;
                             line-height: 100%;
                             margin-bottom: 6px;
                         }

                         text-transform: capitalize;
                     }

                     p {
                         @media (max-width: 768px) {
                             text-align: center;
                         }

                         font-size: 16px;

                         del {
                            display: none;
                         }
                     }
                 }
             }
         }
     }

 }

 .woocommerce-LoopProduct-link h4 {
    font-size: 30px !important;
}