/* 1. إجبار زر أضف للسلة على التغير بكافة المعرفات المحتملة في زد */
[class*="add-to-cart"],
[class*="btn-add"],
[class*="product-card__add"],
.btn-primary[type="button"],
.product-card button,
.zc-product-card button {
    background-color: #a30000 !important; /* الأحمر الخمري */
    background: #a30000 !important;
    border-color: #a30000 !important;
    border-radius: 25px !important; /* زوايا دائرية */
    font-weight: bold !important;
    color: #ffffff !important;
}
/* إخفاء زر القلب والمفضلة بالكامل من على بطاقات المنتجات */
.product-card__wishlist,
[class*="wishlist"],
[class*="favorite"],
.zc-product-card .wishlist-btn,
.product-card button .fa-heart,
.product-card .wishlist-icon {
    display: none !important; /* إخفاء تام للعنصر */
    visibility: hidden !important;
}
/* إخفاء سطر رمز المنتج بالكامل من صفحة تفاصيل المنتج */
.product-details__sku,
[class*="product-sku"],
[class*="sku-wrapper"],
.product-meta-row:has([href*="sku"]),
div:has(> span:contains("رمز المنتج")),
tr:has(td:contains("رمز المنتج")) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* إخفاء سطر رمز المنتج SKU تماماً من الجداول في زد */
.product-info-table-row:has([href*="sku"]),
.product-info-table-row:nth-child(2),
[class*="sku"] {
    display: none !important;
}
/* 1. إخفاء أزرار التبويبات العلوية (الوصف والتقييمات) */
.product-details__tabs li:nth-child(2),
.product-details__tabs li:nth-child(3),
[class*="tabs"] [id*="description"],
[class*="tabs"] [id*="reviews"],
.nav-tabs .nav-item:has(a[href*="desc"]),
.nav-tabs .nav-item:has(a[href*="review"]),
button:contains("الوصف"),
button:contains("التقييمات"),
li:has(> a:contains("الوصف")),
li:has(> a:contains("التقييمات")) {
    display: none !important;
    visibility: hidden !important;
}

/* إخفاء سطر خيارات الدفع بالكامل من صفحة المنتج */
.product-details__payment-methods,
[class*="payment-methods"],
[class*="payment-icons"],
.product-meta-row:has([class*="payment"]),
div:has(> span:contains("خيارات الدفع")),
tr:has(td:contains("خيارات الدفع")),
.product-info-table-row:nth-child(4),
.product-attribute-row:has(.product-attribute-label:contains("الدفع")) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

<div class="seafood-title">
    غاوى سمك للماكولات البحرية
</div>
/* إخفاء العنصر الذي يحتوي على رابط جميع التصنيفات */
a[href*="categories"], a:contains("جميع التصنيفات") {
    display: none !important;
}
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

/* شبكة عرض المنتجات متجاوبة */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* بطاقة المنتج الواحدة */
.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* شريط الخصم الملون */
.discount-badge {
    background: #ffb300; /* لون أصفر ذهبي */
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.9;
}
/* منطقة النصوص والأزرار */
.product-details {
    padding: 15px;
    text-align: center;
    position: relative;
}

/* استهداف حقل الرقم الخاص بالكمية وتغيير لونه للأبيض */
.quantity-input,
.quantity-selector span,
input[type="number"].quantity,
[class*="quantity"] {
    color: #ffffff !important;      /* تغيير لون الرقم إلى الأبيض */
    font-size: 1.4rem !important;   /* تكبير حجم الرقم ليكون واضحاً */
    font-weight: bold !important;   /* جعل الخط عريضاً */
    opacity: 1 !important;          /* إزالة أي شفافية قد تحجب اللون */
}
/* 1. تحسين الخطوط والعناوين الرئيسية للأقسام */
.main-content h2, 
.section-title, 
[class*="title"] {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #1a365d !important; /* لون كحلي بحري فخم بدلاً من الأسود العادي */
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    border-right: 4px solid #ffb300; /* خط ذهبي جانبي يمنح العنوان مظهراً احترافياً */
    padding-right: 12px !important;
}

/* 2. تحسين مظهر قسم التصنيفات الدائرية المصغرة */
.categories-list img, 
[class*="category"] img {
    border-radius: 50% !important; /* جعل صور التصنيفات دائرية بالكامل */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important; /* ظل ناعم خلف الدوائر */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 2px solid #f0f4f8 !important;
}

.categories-list img:hover {
    transform: translateY(-5px) !important; /* حركة تفاعلية خفيفة للأعلى عند مرور الماوس */
    border-color: #ffb300 !important; /* تغيير الحافة للون الذهبي */
}

/* 3. تنسيق بطاقات المنتجات (العروض والأسماك) */
.product-card, 
[class*="product-item"] {
    background: #ffffff !important;
    border-radius: 16px !important; /* زوايا منحنية احترافية */
    border: 1px solid #e2e8f0 !important; /* حد رمادي خفيف جداً */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important; /* ظل خفيف يمنح المنتجات عمقاً */
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    padding: 12px !important;
}

.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08) !important;
}

/* 4. تعديل أزرار "إضافة" و "السلة" لتصبح عصرية */
.add-btn, 
.btn-cart, 
[class*="add-to-cart"] {
    background: linear-gradient(135deg, #b71c1c, #d32f2f) !important; /* تدرج لوني أحمر فخم */
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 25px !important; /* أزرار دائرية الأطراف */
    border: none !important;
    padding: 8px 20px !important;
    box-shadow: 0 4px 8px rgba(183, 28, 28, 0.2) !important;
    transition: all 0.3s ease !important;
}

.add-btn:hover {
    background: #b71c1c !important;
    box-shadow: 0 6px 14px rgba(183, 28, 28, 0.4) !important;
    transform: scale(1.02) !important;
}
.add-to-cart-btn {
    background-color: #d32f2f; /* لون أحمر حيوي أو استبداله بهوية الموقع */
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* مسافة بين الأيقونة والنص */
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #b71c1c; /* تأثير عند مرور الفأرة */
}
/* 1. خلفية المتجر الرئيسية */
body, .main-container {
    background-color: #F9F6F0; /* درجة الأوف وايت الدافئة */
    color: #2D2D2D; /* لون نصوص داكن لضمان وضوح القراءة */
}

/* 2. بطاقات المنتجات والأقسام المحيطة */
.product-card, .details-section {
    background-color: #ffffff; /* أبيض ناصع لتبرز البطاقات فوق الخلفية الأوف وايت */
    border: 1px solid #EAEAEA; /* إطار خفيف جداً لتحديد العناصر */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); /* ظل ناعم جداً */
}

/* 3. شريط زر أضف للسلة السفلي (تنسيق متناسق مع الخلفية الجديدة) */
.cart-sticky-bar {
    background-color: #ffffff;
    border-top: 1px solid #EAEAEA;
}

.add-to-cart-btn {
    background-color: #1A365D; /* نقترح الأزرق الداكن/البحري لأنه يتناسق بشكل فاخر جداً مع الأوف وايت */
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
}
/* 1. ضبط محاذاة اسم المنتج في المنتصف */
.product-title, .product-card h3 {
    text-align: center;         /* توسيط النص في المنتصف */
    display: block;             /* جعل العنصر يأخذ السطر كاملاً لضمان التوسيط */
    margin: 12px auto 8px auto; /* توزيع المسافات فوق وتحت الاسم بشكل متناسق */
    
    /* 2. تحسين وضوح وجمال الخط */
    font-family: 'Cairo', 'Tajawal', sans-serif; /* استخدام خطوط ويب عربية ممتازة وعصرية */
    font-size: 16px;            /* حجم مناسب وواضح للقراءة على مختلف الشاشات */
    font-weight: 700;            /* جعل الخط عريضاً (Bold) ليبرز بشكل أفضل */
    color: #2D2D2D;             /* لون رمادي داكن مريح للعين وأكثر احترافية من الأسود الحالك */
    line-height: 1.5;           /* إعطاء مساحة مريحة لأسطر النص إذا كان الاسم طويلاً */
}
/* ضبط وتكبير شعار واسم المتجر في الأعلى */
.store-header-logo, .header-title-container {
    display: flex;
    align-items: center;
    gap: 12px; /* مسافة مناسبة بين الأيقونة والنص */
}

/* استهداف النص الخاص باسم المتجر */
.store-name, .header-title-container h1, .header-title-container span {
    font-family: 'Cairo', 'Tajawal', sans-serif; /* نفس الخط العريض المستخدم بالأسفل */
    font-size: 24px;            /* تكبير الحجم ليكون بارزاً وواضحاً فور دخول الموقع */
    font-weight: 700;            /* جعل الخط عريضاً وقوياً (Bold) */
    color: #1A365D;             /* لون كحلي/أزرق داكن يناسب الهوية البحرية ويبرز فوق الأوف وايت */
    line-height: 1.4;
    letter-spacing: 0.5px;
}
/* 1. تكبير وضبط الشعار (الأيقونة) */
.header-title-container img, 
[class*="logo"] img {
    width: 55px !important;       /* زيادة حجم أيقونة السمكة */
    height: auto !important;
    vertical-align: middle !important;
}

/* 2. تكبير نص "غاوي سمك للمأكولات البحرية" بالكامل */
.header-title-container h1, 
.header-title-container span,
[class*="store-name"],
[class*="logo-text"] {
    font-family: 'Cairo', 'Tajawal', sans-serif !important; /* فرض الخط العريض الجميل */
    font-size: 26px !important;       /* حجم كبير وواضح جداً مثل عناصر الأقسام بالأسفل */
    font-weight: 800 !important;       /* خط عريض جداً (Extra Bold) ليطابق الأقسام */
    color: #1a365d !important;         /* لون داكن وبارز بشكل ممتاز فوق الأوف وايت */
    display: inline-block !important;
    margin-right: 12px !important;    /* مسافة مريحة بين الشعار والنص */
}
/* 1. تنسيق وتكبير الشعار (الأيقونة) */
.header-title-container img, 
[class*="logo"] img {
    width: 60px !important;              /* تكبير حجم الأيقونة لتبرز */
    height: auto !important;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.15)) !important; /* ظل ناعم للشعار */
    transition: transform 0.3s ease !important;
}

/* حركة تفاعلية عند تمرير الماوس فوق الشعار */
.header-title-container img:hover {
    transform: scale(1.08);
}

/* 2. تحويل النص إلى تصميم عصري وملفت */
.header-title-container h1, 
.header-title-container span,
[class*="store-name"],
[class*="logo-text"] {
    font-family: 'Cairo', 'Tajawal', sans-serif !important; /* الخط العصري الواضح */
    font-size: 28px !important;              /* حجم كبير وواضح جداً */
    font-weight: 800 !important;              /* خط عريض وجريء */
    letter-spacing: -0.5px !important;
    
    /* تأثير التدرج اللوني العصري والملفت */
    background: linear-gradient(135deg, #1A365D 0%, #2B6CB0 50%, #D69E2E 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* ظلال خفيفة خلف النص لإعطائه عمقاً بصرياً */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05) !important;
    
    display: inline-block !important;
    margin-right: 15px !important;           /* مسافة مريحة عن الأيقونة */
    vertical-align: middle !important;
}
/* 1. ضبط الخلفية العامة للمتجر (أوف وايت دافئ مريح) */
body, main, #app, .site-wrapper {
    background-color: #F9F6F0 !important;
}

/* 2. توحيد تصميم جميع البطاقات (المنتجات والأقسام) */
.product-card, .category-card, .item-box {
    background-color: #ffffff !important; /* خلفية الكرت بيضاء ناصعة */
    border: none !important;
    border-radius: 12px !important; /* زوايا منحنية ناعمة */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important; /* ظل ناعم جداً وخفيف */
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* تأثير حركي خفيف عند تمرير الماوس على أي كرت */
.product-card:hover, .category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

/* 3. توحيد الخطوط (كحلي، عريض، ومتناسق) */
.product-title, .category-title, h1, h2, h3, h4 {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    color: #1A365D !important; /* لون كحلي مطابق للأقسام */
    font-weight: 700 !important; /* خط عريض وواضح */
    font-size: 18px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

/* 4. إضافة الشريط الأصفر المميز بجانب النصوص (Border Anchor) */
.product-title-container, .title-wrapper, .product-card .text-section {
    position: relative !important;
    border-right: 4px solid #D69E2E !important; /* شريط ذهبي/أصفر على اليمين */
    padding-right: 12px !important;
    margin: 15px 10px !important;
}

/* 5. تحويل كافة الأزرار الفرعية وأزرار الانتقال لتصبح دائرية وبسيطة */
.btn-arrow, .view-product, .action-btn {
    width: 32px !important;
    height: 32px !important;
    border: 2px solid #1A365D !important; /* إطار كحلي */
    border-radius: 50% !important; /* جعل الزر دائري تماماً */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1A365D !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

.btn-arrow:hover, .view-product:hover {
    background-color: #1A365D !important;
    color: #ffffff !important;
}