/* Add custom CSS styles below */ 
/* تنسيق القائمة */
.s-payments-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* تنسيق كل عنصر في القائمة */
.s-payments-list-item {
    margin: 10px;
    width: 80px;  /* تحديد عرض ثابت لكل عنصر */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* تنسيق الصور */
.payment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease; /* إضافة تأثير تكبير */
}

/* تأثير تكبير عند التمرير على الصورة */
.payment-img:hover {
    transform: scale(1.1);
}

.s-product-card-content-title a {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(31 32 34);
    color: rgb(137 125 98);
}
.s-product-card-content-subtitle {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, 1);
    color: rgb(0 0 0);
}
.top-navbar .s-search-input {
    border-style: none;
    background-color: #a19475;
}
.s-product-card-price {
    font-size: 0.875rem; /* حجم النص */
    line-height: 1.12rem; /* ارتفاع الخط */
    font-weight: 1000; /* وزن النص عريض */
    color: #a19475; /* النص باللون الاسود*/
}

/* الكود الخاص بلون وصف المنتج */
article > p:nth-child(1) > span {
  color: ‎#000000; !important;
}

body {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #a19475;
    color: #000000;
    position: relative;
}

.s-search-input::placeholder {
    color: #FFFFFF;
}
.s-button-element:not(:disabled):not([loading]) {
    pointer-events: auto;
    background-color: #a19475;
    color:  #e8dcbe;
}

.s-button-element:not(:disabled):not([loading]):hover,
.s-button-element:not(:disabled):not([loading]):focus {
    background-color: #54655c;
}
.header-btn__icon {
    color: #45605e;
}
.s-cart-summary-total {
    color: #a09375;
}
.s-cart-summary-count {
    color: white; /* لون النص الأبيض */
    background-color:  #a09375; /* لون الخلفية الأزرق */
}
.footer-is-light .store-footer .store-footer__inner {
    --tw-border-opacity: 227;
    border-bottom-color: #25524f;
    border-bottom-color: rgb(249 250 251/var(--tw-border-opacity));
    --tw-bg-opacity: 169;
    background-color: #f9fafb;
    background-color: rgb(161 148 117/var(--tw-bg-opacity));
}

.footer-is-light .store-footer {
    --tw-bg-opacity: 1;
    background-color: #f9fafb;
    background-color: rgb(249 250 251/var(--tw-bg-opacity));
    --tw-text-opacity: 49;
    color: #ffffff;
    color: rgb(255 255 255/var(--tw-text-opacity));
}

.store-footer__inner h3 {
    color: #ffe49e;
}
.s-slider-block__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide--cat-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
h2 {
    text-align: center;
    font-size: 24px; /* حجم الخط الافتراضي */
    line-height: 1.4; /* لضمان قراءة مريحة */
    margin: 0 auto; /* لضبط المحاذاة */
    padding: 10px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 17px; /* حجم الخط للأجهزة الصغيرة */
    }
}

@media (max-width: 480px) {
    h2 {
}
.s-product-card-image {
    display: flex; /* تمكين Flexbox */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* نسبة عرض إلى ارتفاع متساوية (اختياري) */
}

.s-product-card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* وسائط لتحسين التصميم على الشاشات الكبيرة */
@media (min-width: 768px) {
    .s-product-card-image {
        width: 300px;
        height: 300px; /*
        background-size: cover;
    }
}