/* Netflix-like Design for Salla Store */
body {
    background-color: #141414 !important;
    color: #fff !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* إخفاء جميع المنتجات من الصفحة الرئيسية */
.products-section, 
.product-list, 
.product-grid,
.product-item,
.product-card,
[class*="product"],
[class*="Product"],
#products,
.products {
    display: none !important;
}

/* إخفاء أي أقسام أخرى تحتوي على منتجات */
section:has(.product-item),
div:has(.product-card),
main:has(.product-grid) {
    display: none !important;
}

/* Header styling */
.header, .s-header, header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 20px 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: background-color 0.3s ease !important;
}

/* Netflix Hero Banner */
.netflix-hero {
    position: relative !important;
    height: 100vh !important;
    width: 100% !important;
    background: linear-gradient(to top, #141414 0%, transparent 50%), 
                linear-gradient(to right, #141414 0%, transparent 30%),
                url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1925&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Hero content */
.hero-content {
    max-width: 800px !important;
    padding: 0 20px !important;
    z-index: 2 !important;
}

.hero-content h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7) !important;
    line-height: 1.2 !important;
}

.hero-content p {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7) !important;
    opacity: 0.9 !important;
}

/* Email form */
.email-form {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 30px !important;
    flex-wrap: wrap !important;
}

.email-form input {
    background-color: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 4px !important;
    width: 350px !important;
    max-width: 100% !important;
    font-size: 1rem !important;
}

.email-form input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.email-form button {
    background-color: #e50914 !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 15px 30px !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.email-form button:hover {
    background-color: #f40612 !important;
    transform: scale(1.05) !important;
}

/* Header buttons */
.header-buttons {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
}

.support-btn, .products-btn {
    background-color: rgba(255,255,255,0.1) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.support-btn:hover, .products-btn:hover {
    background-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) !important;
}

/* Netflix logo */
.netflix-logo {
    color: #e50914 !important;
    font-size: 2.5rem !important;
    font-weight: bold !important;
    letter-spacing: -1px !important;
    text-decoration: none !important;
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Footer */
.footer, .s-footer, footer {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.2rem !important;
    }
    
    .email-form {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .email-form input {
        width: 90% !important;
        margin-bottom: 10px !important;
    }
    
    .header {
        padding: 20px !important;
    }
    
    .netflix-logo {
        font-size: 2rem !important;
    }
}