/* ملف CSS للتصميم - هوية أورجانكس الحديثة */

/* استيراد خطوط جوجل */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* متغيرات الألوان المستوحاة من هوية أورجانكس */
:root {
    --primary-blue: #4A90E2;
    --secondary-blue: #357ABD;
    --accent-green: #7ED321;
    --dark-green: #5BA617;
    --light-blue: #E8F4FD;
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #7ED321 100%);
    --gradient-secondary: linear-gradient(45deg, #E8F4FD 0%, #F0F8FF 100%);
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --shadow-light: 0 4px 20px rgba(74, 144, 226, 0.1);
    --shadow-medium: 0 8px 30px rgba(74, 144, 226, 0.15);
    --shadow-heavy: 0 15px 50px rgba(74, 144, 226, 0.2);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-secondary);
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden !important; /* إصلاح جذري */
}

html {
    overflow-x: hidden !important; /* إصلاح جذري */
}

/* تأثيرات الحركة العامة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* الهيدر الحديث */
.header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    width: 100%; /* تأكيد العرض */
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    /* تغيير left إلى right بسبب اتجاه RTL */
    right: -50%; 
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0; /* تم التعديل */
}

.logo {
    height: 50px; /* حجم شعار Organix */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: pulse 3s ease-in-out infinite;
}

.header h1 {
    font-size: 3.5rem; /* Increased size */
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slogan {
    font-size: 3.5rem; /* Increased size to match h1 */
    font-weight: 900;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem; /* Add some space */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slogan span {
    font-size: 3.5rem; /* Ensure font size matches h1 */
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quality-badge {
    height: 50px; /* تكبير شعار Quality Inside ليتساوى مع شعار Organix */
    width: auto;
    filter: brightness(1.2);
}

/* شريط التنقل المحدث */
.nav {
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    width: 100%; /* تأكيد العرض */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* إضافة flex-wrap لضمان التفاف العناصر على الشاشات الصغيرة */
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    /* تقليل الهامش على الجوانب */
    margin: 0 0.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    /* تغيير left إلى right بسبب اتجاه RTL */
    right: -100%; 
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.nav a:hover::before {
    right: 0;
}

.nav a:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    background: var(--primary-blue); /* تغيير الخلفية لتكون مرئية على شريط التنقل الأبيض */
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    padding: 0.5rem; /* إضافة حشو لجعلها أسهل للنقر */
    border-radius: 50%; /* لجعلها دائرية */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* تحديد عرض وارتفاع ثابتين */
    height: 40px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
    color: var(--white);
    background: var(--dark-green);
}

.social-link span {
    font-size: 1.2rem;
}

/* الحاوي الرئيسي */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%; /* تأكيد العرض */
}

/* قسم البحث المحدث */
.search-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.welcome-text {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.welcome-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-box {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 3px solid var(--light-blue);
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.search-box:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.search-box::placeholder {
    color: var(--text-light);
    font-style: italic;
}

/* الفلاتر المحدثة */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* تغيير التوزيع لضمان عدم التداخل */
    justify-content: space-around;
}

.filter-section {
    flex: 1;
    min-width: 250px;
    /* إضافة flex-basis لضمان أخذ مساحة كافية */
    flex-basis: 100%; /* تغيير هذا لضمان أن كل فلتر يأخذ سطرًا كاملاً على الموبايل */
}

.filter-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    cursor: pointer; /* للإشارة إلى أنه قابل للطي */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0.5rem;
}

.collapsible-content.active {
    max-height: 500px; /* قيمة كبيرة بما يكفي لاستيعاب المحتوى */
    padding: 0.5rem;
}

.collapsible-header i {
    transition: transform 0.3s ease-out;
}

.collapsible-header.active i {
    transform: rotate(90deg); /* يمكن استخدام أيقونة أخرى أو تدوير الأيقونة الحالية */
}

.filter-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-tag {
    background: var(--light-blue);
    border: 2px solid transparent;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.filter-tag::before {
    content: '';
    position: absolute;
    top: 0;
    /* تغيير left إلى right بسبب اتجاه RTL */
    right: -100%; 
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.filter-tag:hover::before,
.filter-tag.active::before {
    right: 0;
}

.filter-tag:hover,
.filter-tag.active {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* شبكة المنتجات المحدثة */
.products-grid {
    display: grid;
    /* تغيير minmax لتقليل الحد الأدنى لعرض البطاقة */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    width: 100%;
    max-width: 100% !important; /* إصلاح جذري */
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 4px);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-details {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.product-tag i {
    margin-left: 0.25rem;
}

/* زر عرض التفاصيل */
.view-details-btn {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(126, 211, 33, 0.4);
}

.view-details-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(126, 211, 33, 0.6);
}

/* عداد المنتجات */
.products-counter {
    text-align: center;
    margin-bottom: 2rem;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.counter-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.counter-content i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

#productsCount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-green);
}

/* رسالة لا توجد نتائج */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.no-results-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.no-results-content .btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.no-results-content .btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* تنسيق المودال (Modal) */
.modal {
    display: none; /* مخفي افتراضياً */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* خلفية معتمة */
    padding-top: 60px;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto; /* 5% من الأعلى و يتوسط أفقياً */
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    width: 80%; /* عرض افتراضي */
    max-width: 800px;
    position: relative;
    /* تغيير slideInRight إلى slideInLeft ليتناسب مع RTL */
    animation: slideInLeft 0.5s ease-out; 
}

.close {
    color: var(--text-light);
    /* إلغاء float: right; */
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    /* تغيير left إلى right بسبب اتجاه RTL */
    right: 20px; 
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
}

#modalContent {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: right;
}

#modalContent .modal-image-container {
    flex: 0 0 40%;
    max-width: 40%;
}

#modalContent .modal-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

#modalContent .modal-details {
    flex: 1;
}

#modalContent h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

#modalContent p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

#modalContent .modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

#modalContent .modal-tag {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* تنسيق الفوتر */
.footer-modern {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem; /* إضافة حشو جانبي */
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-slogan {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1 !important;
    text-decoration: underline;
}

.footer-separator {
    opacity: 0.5;
}

.footer-copyright {
    opacity: 0.8;
}

/* Media Query for Footer */
@media (max-width: 480px) {
    .footer-logo-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-title {
        font-size: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-separator {
        display: none; /* إخفاء الفواصل على الشاشات الصغيرة */
    }
}

/* -------------------------------------------------- */
/* استعلامات الوسائط (Media Queries) للتجاوب */
/* -------------------------------------------------- */

/* شاشات الأجهزة اللوحية والهواتف الكبيرة (أقل من 768 بكسل) */
@media (max-width: 768px) {
    /* الهيدر */
    .header {
        padding: 1.5rem 1rem;
    }
    .header h1 {
        font-size: 2rem; /* تصغير حجم الخط */
        line-height: 1.2;
    }
    .slogan {
        font-size: 2rem; /* تصغير حجم خط الشعار */
        line-height: 1.2;
        flex-direction: column;
        gap: 0.5rem;
    }
    .slogan span {
        font-size: 2rem;
        line-height: 1.2;
    }
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo, .quality-badge {
        height: 40px;
    }
    .header-content {
        gap: 0.5rem;
    }

    /* شريط التنقل */
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        width: 100%;
        text-align: center;
    }
    .social-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav a {
        padding: 0.5rem 1rem;
        margin: 0.1rem;
        font-size: 0.9rem;
    }
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .social-link span {
        font-size: 1rem;
    }

    /* الفلاتر */
    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    .filter-section {
        flex-basis: 100%;
    }
    .filter-tags {
        justify-content: center;
    }
    .filter-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* عداد المنتجات */
    .products-counter .counter-content {
        font-size: 0.9rem;
    }
    .products-counter #productsCount {
        font-size: 1.5rem;
    }

    /* شبكة المنتجات */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); /* بطاقة واحدة في كل صف */
    }
    .product-card {
        padding: 1rem;
    }
    .product-image {
        height: auto; /* السماح بارتفاع تلقائي */
        max-height: 200px;
        object-fit: contain;
    }

    /* المودال */
    .modal-content {
        width: 95%;
        margin: 2.5% auto;
        padding: 20px;
    }
    #modalContent {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #modalContent .modal-image-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #modalContent h3 {
        font-size: 1.5rem;
    }
    #modalContent p {
        font-size: 0.9rem;
    }
}

/* شاشات الهواتف الصغيرة (أقل من 480 بكسل) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem; /* تقليل الحشو على الجوانب */
    }
    .search-section {
        padding: 1rem;
    }
    .welcome-text h2 {
        font-size: 1.5rem;
    }
    .welcome-text p {
        font-size: 0.9rem;
    }
    .header h1, .slogan span {
        font-size: 1.5rem;
    }
    .logo-container {
        flex-direction: row; /* إعادة ترتيب الشعار والنص في صف واحد إذا كان النص قصيرًا */
        gap: 0.5rem;
    }
    .logo, .quality-badge {
        height: 30px;
    }
    .products-grid {
        gap: 1rem;
    }
}
