/* Add custom CSS styles below */ 
.slide--cat-entry h4 {
  color: #295795;
  font-size: 16px;
  font-family: 'Almarai', sans-serif;
  font-weight: bold;
}
.s-product-card-content-title.font-primary a {
    font-family: almarai, serif;
}

/*==start procducts==*/
/*تغيير لون الخلفية الرمادية اللي خلف صورة المنتج*/
.s-product-card-image {
    background-color: #f5d69a;
}

/*shadow around product card*/
.s-product-card-entry {
    border: 2px groove var(--color-primary);
    box-shadow: rgba(0, 0, 0, 0.36) 2.5px 2.5px 5px, rgba(0, 0, 0, 0) -2.5px -2.5px 5px;
}

.s-product-card-entry:hover {
    animation: zoomOut ease 0.5s; /* حركة التكبير للخارج */
}

@keyframes zoomOut {
    0% {
        transform: scale(1); /* الحجم الطبيعي */
    }

    100% {
        transform: scale(0.95); /* التصغير إلى 95% */
    }
}
/*==end products==*/
/*== genral==*/
‎/*عنوان المنتجات المتحركة*/
/*.s-slider-block__title {
    background: var(--color-primary);
    width: 100%;
}*/
/*عنوان المنتجات الثابتة*/
.s-block__title {
    background: var(--color-primary);
}
.s-block__title h2 {
    position: relative;
    font-size: 1.40rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.s-slider-block__title h2 {
    position: relative;
    font-size: 1.40rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.s-slider-block__display-all {
    display: inline-block;
    font-size: 0.90rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
}

*/ body#app {
    background: #fff;
}

.app-inner.flex.flex-col.min-h-full {
    background-color: #ffffff;
}

.shadow-default {
    box-shadow: none;
}
.s-product-card-content-title a {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, 1);
    color: rgba(31, 41, 55, var(--tw-text-opacity));
    }
/*==end general==*/

/* تنسيق زر "إضافة المنتج إلى السلة" باستخدام salla-button */
salla-mini-checkout-widget {
    padding: 0 auto;
    background: #ffffff; /* تدرج لوني عصري */
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* حركة انتقالية سلسة */
    text-align: center;
    position: relative;
    animation: shake 1s ease-in-out infinite; /* حركة ارتجاجية مستمرة */
}
/* تأثير عند النقر */
salla-mini-checkout-widget:active {
    transform: scale(0.95); /* تصغير الزر قليلاً عند النقر */
}

/* تعريف تأثير الارتجاج */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.\!w-14 {
    width: 4.8rem !important;
}

.\!h-14 {
    height: 4.8rem !important;
}
.s-product-card-price {
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #5468ae;
}

/* زر واتساب */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 24px;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

/* نافذة الخيارات */
.whatsapp-options {
    display: none; /* إخفاء نافذة الخيارات في البداية */
    position: fixed;
    bottom: 100px; /* فوق زر واتساب */
    right: 20px;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    width: 200px; /* عرض ثابت للنافذة */
}

/* تنسيق الأزرار داخل نافذة الخيارات */
.whatsapp-options button {
    display: block;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.whatsapp-options button:last-child {
    background-color: #128C7E; /* اللون الأخضر الداكن لزر الاتصال */
}

.whatsapp-options button:hover {
    background-color: #075e54; /* تأثير التمرير فوق الزر */
}