/* شاشة الترحيب للزوار الجدد */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    font-family: 'Cairo', sans-serif;
}

.welcome-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
}

/* اللوجو */
.welcome-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.welcome-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* النصوص */
.welcome-content {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.welcome-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.welcome-description {
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 400px;
    line-height: 1.5;
}

/* أيقونة التحميل */
.welcome-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loading-circle {
    width: 40px !important;
    height: 40px !important;
    border: 3px solid #e5e7eb !important;
    border-top: 3px solid #3b82f6 !important;
    border-radius: 50% !important;
    animation: welcomeRotate 1s linear infinite !important;
    display: block !important;
    flex-shrink: 0 !important;
}

@keyframes welcomeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-message {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* منع السكرول الأفقي - بدون تأثير على الهيدر */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

.main-content, .slider-container, .products-grid, .categories-grid, 
.testimonials-grid, .hero-slider, .products-section {
    max-width: 100%;
    overflow-x: hidden;
}

/* الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .welcome-logo {
        width: 100px;
        height: 100px;
    }
    
    .welcome-logo img {
        width: 70px;
        height: 70px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-description {
        padding: 0 20px;
        font-size: 0.8rem;
    }
    
    .loading-circle {
        width: 35px !important;
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .welcome-logo {
        width: 90px;
        height: 90px;
    }
    
    .welcome-logo img {
        width: 60px;
        height: 60px;
    }
    
    .welcome-title {
        font-size: 1.3rem;
    }
    
    .loading-circle {
        width: 30px !important;
        height: 30px !important;
    }
}

/* إصلاح محدد للسكرول الأفقي - بدون تأثير على الهيدر */
.welcome-screen {
    overflow: hidden;
}

/* منع السكرول الأفقي في المحتوى الرئيسي فقط */
main, .main-content {
    overflow-x: hidden;
    max-width: 100%;
}

/* إصلاح العناصر التي قد تسبب سكرول أفقي */
.slide, .product-card, .category-card, .testimonial-card {
    max-width: 100%;
    box-sizing: border-box;
}

.hero-slider img, .product-card img, .category-card img {
    max-width: 100%;
    height: auto;
}