/* إعداد الجسم */
body {
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* منع التمرير الأفقي إذا تجاوز العنصر حدود الشاشة */
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(18 144 111 / 29%);
}
.rounded-full {
    border-radius: 0px; 
}
 
/* إعداد العرض الافتراضي للمنتجات */
.s-products-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* تصميم شبكي للمنتجات */
    gap: 20px; /* المسافة بين المنتجات */
}

/* تحسين الأبعاد للشاشات الصغيرة (الهاتف) */
@media (max-width: 768px) {
    .s-products-list-wrapper {
        grid-template-columns: 1fr; /* عرض عمودي للمنتجات في صف واحد */
    }
}
.btn-primary-blue:focus, .btn-primary-blue:hover, .btn-primary:focus, .btn-primary:hover {
    background: rgba(33, 69, 112, .8) !important;
    color: #fff !important;
    outline: none !important;
}

/*ايقونة مشاركة المنتج*/

button.s-social-share-btn {
    margin: 0px;
    height: 1.5rem;
    width: 1.5rem;
    color: black;
    background-color: #f2f2f2;
    border-radius: 50%;
    font-size: 18px;
    padding: 10px;
}

/*ggggggggg*/

.s-products-list-wrapper {
    position: relative; /* لجعل العنصر الأب يحتوي على العنصر المحاذي بشكل صحيح */
}

.product-entry .btn--add-to-cart button {
    background-color: #007570;
    color: #ffffff;
}
.s-button-primary-outline:hover {
    background-color: #007570;
    background-color: #ffffff;
    fill: #ff6767;
    fill: var(--color-primary-reverse);
    color: #ffffff;
    color: var(--color-primary-reverse);
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(18 144 111 / 29%);
}
.rounded-full {
    border-radius: 0px; 
}
.store-footer .s-contacts-item {
    padding-bottom: 130px; /* زيادة الفراغ داخل العنصر من الأسفل فقط */
}

.product-entry__title {
    pointer-events: none; /* يعطّل أي تفاعل */
    color: inherit;       /* يعيد اللون إلى الحالة الافتراضية */
    text-decoration: none;
}
 /* .product-entry__title { 
    color:#ffffff;
    text-decoration: none; */
}
.product-entry__title {         
    display: none; /* إخفاء العنصر */
    margin: 0; /* إزالة الفراق الناتج عن الهامش */
    padding: 0; /* إزالة الفراق الناتج عن الحشو */
}

.text-gray-800 {
    font-weight: normal; /* إزالة الـ bold */
}

/* تحسين تواصل معنا */
.store-footer .s-contacts-item {
    margin: 0; /* إزالة الهوامش الخارجية */
    padding: 5px 0; /* تقليل الحشو بين العناصر */
    line-height: 1.5; /* تحسين المسافات بين الأسطر */
}

/* ضبط النص ليكون متناسقًا */
.store-footer .s-contacts-item span,
.store-footer .s-contacts-item a {
    font-size: 16px; /* حجم النص */
    color: #333; /* لون النص */
    display: flex; /* عرض العناصر بشكل متناسق */
    align-items: center; /* محاذاة النص مع الأيقونات */
    gap: 10px; /* مسافة بين النص والأيقونة */
}