/* 1. تجربة التصفح السلس (Smooth UX) */
:root {
    --primary-black: #000000;
    --light-grey: #f8f9fa;
    --border-color: #eeeeee;
}

/* منع الاهتزاز أثناء التمرير وتحسين استجابة اللمس */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* 2. الهيدر الذكي (Sticky Header) */
/* يجعل العميل يصل للبحث والسلة دائماً دون الحاجة للرجوع للأعلى */
.main-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px); /* تأثير شفاف احترافي */
    border-bottom: 1px solid var(--border-color);
}

/* 3. ترتيب شبكة المنتجات (Modern Grid) */
@media (max-width: 768px) {
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* منتجين متساويين تماماً */
        gap: 12px !important;
        padding: 12px !important;
    }

    /* بطاقة المنتج - تصميم "نظيف" بدون زحمة */
    .product-item {
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        transition: transform 0.2s ease;
        overflow: hidden;
        box-shadow: none !important;
    }

    /* تحسين مساحة النقر للأزرار لتجنب "النقر الخاطئ" */
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

salla-add-product-button {
    --main-color: var(--primary-black) !important;
}

.s-add-to-cart-main, .s-bundle-checkout-button {
    background: #fff !important;
    color: #000 !important;
    border: 1.5px solid #000 !important;
    border-radius: 4px !important; /* حواف بسيطة لراحة العين */
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: opacity 0.3s ease;
    will-change: opacity;
}
.product-item:active {
    transform: scale(0.96);
    background-color: var(--light-grey);
}