@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Cairo', sans-serif;
    background: #0a0b0e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 118, 117, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0b0e 0%, #1a1b23 100%);
    z-index: -2;
}

/* Floating Particles Animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(120, 119, 198, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 118, 117, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(120, 219, 226, 0.2), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: float 20s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(-20px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.header {
    position: fixed !important; /* تثبيت الشريط العلوي بشكل دائم */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important; /* لضمان بقائه في الأعلى دائماً */
    background: rgba(10, 11, 14, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    padding: 1rem 0 !important;
    transition: all 0.3s ease !important;
    /* تأكد من أن الشريط العلوي لا يختفي أو يتحرك */
    transform: translateY(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
}

.logo span {
    background: linear-gradient(135deg, #7877c6 0%, #78dbe2 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    letter-spacing: -0.5px !important;
    position: relative !important;
    display: inline-block !important;
}

.logo:hover {
    transform: translateY(-1px) !important;
}

.logo:hover span {
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a:hover {
    color: #78dbe2;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #78dbe2);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

/* No Products Section */
.no-products-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-products-message {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
}

.no-products-message h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.no-products-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
}

.contact-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

/* Floating Products Trigger */
.floating-products-trigger {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1000;
}

.products-toggle-btn {
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.products-toggle-btn:hover {
    transform: translateY(-2px) translateX(-5px);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

.products-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.toggle-text {
    font-size: 0.9rem;
}

/* Floating Products */
.floating-products {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 999;
    background: rgba(26, 27, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.floating-products.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.floating-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-products-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.close-floating {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.close-floating:hover {
    color: #ff7675;
    background: rgba(255, 118, 117, 0.1);
}

.floating-products-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.floating-product-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-product-item:hover {
    background: rgba(120, 119, 198, 0.1);
    border-color: #7877c6;
    transform: translateX(-5px);
}

.floating-product-item.active {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2), rgba(120, 219, 226, 0.2));
    border-color: #7877c6;
}

.floating-product-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #78dbe2;
}

.floating-product-image {
    flex-shrink: 0;
}

.floating-product-image img {
    transition: all 0.3s ease;
}

.floating-product-item:hover .floating-product-image img {
    transform: scale(1.05);
    border-color: rgba(120, 119, 198, 0.6);
}

.product-info {
    flex: 1;
}

/* Product Selector (Legacy) */
.product-selector {
    background: rgba(26, 27, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-selector:hover {
    background: rgba(120, 119, 198, 0.2);
    border-color: #7877c6;
    color: #ffffff;
    transform: translateX(-5px);
}

.product-selector.active {
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.4);
}

/* Main Container */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 2rem 2rem;
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

/* Hero Section */
.hero-section {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7877c6;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '⚡';
    font-size: 1rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #78dbe2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: #ffffff;
}

.price-display {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(120, 219, 226, 0.1));
    border: 2px solid;
    border-image: linear-gradient(135deg, #7877c6, #78dbe2) 1;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(120, 119, 198, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

#current-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Form Section */
.form-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7877c6, #78dbe2, transparent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #7877c6;
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
    border-color: #ff7675 !important;
    background: rgba(255, 118, 117, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(255, 118, 117, 0.2) !important;
}

.form-input.error:focus {
    border-color: #ff7675 !important;
    box-shadow: 0 0 0 3px rgba(255, 118, 117, 0.3) !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-group {
    display: flex;
    gap: 0.5rem;
}

.phone-prefix {
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #7877c6;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    font-family: 'Space Grotesk', sans-serif;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-support {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1002; /* Higher than navigation menu */
}

.whatsapp-support:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-support img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Product Features */
.product-features {
    margin-top: 2rem;
}

.product-features h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

#product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-info {
    margin-top: 1.5rem;
    text-align: center;
}

.payment-methods h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-icon {
    font-size: 2rem;
    opacity: 0.7;
}

.error-message {
    color: #ff7675;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
    padding: 0.5rem;
    background: rgba(255, 118, 117, 0.1);
    border: 1px solid rgba(255, 118, 117, 0.3);
    border-radius: 8px;
}

.error-message:not(:empty)::before {
    content: '⚠️ ';
    margin-right: 0.5rem;
}

.form-help {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    text-align: right;
    direction: rtl;
}

.form-help::before {
    content: '💡 ';
    margin-left: 0.3rem;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-product-image img:hover {
    transform: scale(1.05) !important;
    border-color: rgba(120, 119, 198, 0.6) !important;
    box-shadow: 0 12px 35px rgba(120, 119, 198, 0.4) !important;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Desktop Large Screen Adjustments */
@media (min-width: 1201px) {
    .main-container {
        padding-top: 90px;
        align-items: flex-start;
    }
    
    .content-wrapper {
        align-items: flex-start;
        margin-top: 1.5rem;
        gap: 3rem;
    }
    
    .form-section {
        margin-top: 0.5rem;
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .hero-section {
        padding-top: 1rem;
    }
}

/* Extra Large Desktop Screens */
@media (min-width: 1400px) {
    .main-container {
        padding-top: 70px;
    }
    
    .content-wrapper {
        margin-top: 0.5rem;
        gap: 4rem;
    }
    
    .form-section {
        top: 90px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        align-items: center;
        padding-top: 120px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .floating-products-trigger {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        text-align: center;
    }

    .floating-products {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .floating-products.active {
        transform: none;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.8rem !important;
        gap: 8px !important;
        padding: 6px 12px !important;
    }
    
    .logo-icon {
        width: 10px !important;
        height: 10px !important;
        margin-right: 6px !important;
    }



    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 11, 14, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-20px);
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-item {
        margin: 1.2rem 0;
        animation: slideInFromLeft 0.4s ease forwards;
        animation-delay: calc(var(--i) * 0.1s);
        opacity: 0;
        transform: translateX(-30px);
    }

    .nav-menu.active .nav-item {
        animation-play-state: running;
    }

    .nav-item:nth-child(1) { --i: 1; }
    .nav-item:nth-child(2) { --i: 2; }
    .nav-item:nth-child(3) { --i: 3; }
    .nav-item:nth-child(4) { --i: 4; }

    .nav-item a {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        min-width: 220px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .nav-item a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-item a:hover::before {
        left: 100%;
    }

    .nav-item a:hover {
        background: rgba(120, 119, 198, 0.25);
        border-color: rgba(120, 119, 198, 0.4);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    }

    .nav-item a.active {
        background: linear-gradient(135deg, rgba(120, 119, 198, 0.3), rgba(120, 219, 226, 0.3));
        border-color: rgba(120, 119, 198, 0.5);
        box-shadow: 0 4px 15px rgba(120, 119, 198, 0.2);
    }

    /* Navigation Menu Overlay */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(120, 219, 226, 0.08) 0%, transparent 50%);
        z-index: -1;
    }

    @keyframes slideInFromLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .main-container {
        padding: 100px 1rem 2rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .phone-group {
        flex-direction: column;
    }

    .phone-prefix {
        min-width: auto;
    }

    .floating-products-trigger {
        right: 15px;
    }

    .floating-products {
        right: 15px;
        min-width: 250px;
    }

    .product-selector {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .price-display {
        padding: 1rem;
    }

    #current-price {
        font-size: 2rem;
    }

    .no-products-message {
        padding: 2rem;
        margin: 1rem;
    }

    .no-products-message h2 {
        font-size: 1.5rem;
    }

    /* Enhanced Mobile Menu Effects */
    .nav-menu.active .nav-item {
        animation: fadeInSlideUp 0.5s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.4s; }

    @keyframes fadeInSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Better Menu Backdrop */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        z-index: -1;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .price-display {
        padding: 1rem;
    }

    #current-price {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.4rem !important;
        gap: 4px !important;
        padding: 4px 8px !important;
    }
    
    .logo-icon {
        width: 4px !important;
        height: 4px !important;
        margin-right: 3px !important;
    }



    .floating-products-trigger {
        right: 10px;
    }

    .products-toggle-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .products-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .floating-products {
        right: 10px;
        min-width: 220px;
    }

    .no-products-message {
        padding: 1.5rem;
    }

    .no-products-message h2 {
        font-size: 1.3rem;
    }
}

/* Additional Logo Styles */
.logo-icon {
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background: linear-gradient(135deg, #7877c6, #78dbe2) !important;
    border-radius: 50% !important;
    margin-right: 4px !important;
    transition: all 0.3s ease !important;
}

/* تأكد من أن الشريط العلوي يبقى ثابتاً دائماً */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* منع إخفاء الشريط العلوي */
.header,
.header * {
    pointer-events: auto !important;
}

/* تأكد من أن المحتوى الرئيسي يبدأ تحت الشريط العلوي */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.landing-page {
    padding-top: 80px !important;
    margin-top: 0 !important;
}

.main-container {
    padding-top: 100px !important;
    margin-top: 0 !important;
}

/* Email Support Button */
.email-support {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #78dbe2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(120, 119, 198, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.email-support:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(120, 119, 198, 0.4);
}

.email-support svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .email-support {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .email-support svg {
        width: 25px;
        height: 25px;
    }
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05) 0%, rgba(120, 219, 226, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.featured-products-section .section-title {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.featured-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #78dbe2);
    border-radius: 2px;
}

.featured-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* استخدام نفس grid المستخدم في products.php */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    margin-bottom: 3rem;
}

/* تصميم بسيط ومميز للمنتجات المميزة */
.featured-products-section .product-card.featured-product-special {
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.12) 0%, 
        rgba(120, 219, 226, 0.06) 50%, 
        rgba(255, 215, 0, 0.03) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1.6rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 8px 25px rgba(120, 119, 198, 0.2),
        0 0 15px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* شارة المنتج المميز - بسيطة وأنيقة */
.featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    padding: 6px 10px;
    border-radius: 0 15px 0 15px;
    font-size: 0.65rem;
    font-weight: 800;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.featured-badge-icon {
    font-size: 0.7rem;
}

.featured-badge-text {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.3px;
}

/* Hover effect بسيط للمنتجات المميزة */
.featured-products-section .product-card.featured-product-special:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(120, 119, 198, 0.25),
        0 0 20px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

/* خط بسيط علوي للمنتجات المميزة */
.featured-products-section .product-card.featured-product-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.6;
    z-index: 6;
}

/* تحسين عناصر المنتجات المميزة */
.featured-products-section .product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-products-section .product-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2), rgba(120, 219, 226, 0.2));
}

.featured-products-section .product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-products-section .product-info {
    flex: 1;
    min-width: 0;
}

/* عنوان مميز بسيط للمنتجات المميزة */
.featured-products-section .product-card.featured-product-special .product-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-products-section .product-badge {
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

.featured-products-section .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.featured-products-section .meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-products-section .product-footer {
    margin-top: auto;
}

.featured-products-section .product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.featured-products-section .info-btn {
    background: rgba(120, 219, 226, 0.1);
    color: #78dbe2;
    border: 1px solid rgba(120, 219, 226, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.featured-products-section .info-btn:hover {
    background: rgba(120, 219, 226, 0.2);
    transform: translateY(-1px);
}

.featured-products-section .order-btn {
    background: linear-gradient(135deg, #7877c6, #78dbe2);
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

/* تصميم بسيط لأزرار المنتجات المميزة */
.featured-products-section .product-card.featured-product-special .order-btn {
    background: linear-gradient(135deg, #7877c6 0%, #78dbe2 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.featured-products-section .product-card.featured-product-special .order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.4);
    background: linear-gradient(135deg, #6b66b8 0%, #6bb8c7 100%);
}

/* سعر مميز بسيط */
.featured-products-section .product-card.featured-product-special .btn-price {
    color: #ffd700;
    font-weight: 800;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* شاشات كبيرة جداً */
@media (min-width: 1600px) {
    .featured-products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .featured-products-section .product-card {
        min-height: 220px;
    }
}

/* شاشات متوسطة كبيرة */
@media (max-width: 1200px) {
    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* الأجهزة اللوحية */
@media (max-width: 900px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-products-section .product-card {
        min-height: 200px;
        padding: 1.3rem;
    }
}

/* الهواتف */
@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .featured-products-section .product-card.featured-product-special {
        min-height: 180px;
        padding: 1rem;
    }
    
    /* تقليل حجم الشارة في الهواتف */
    .featured-badge {
        top: -3px;
        right: -3px;
        padding: 5px 8px;
        font-size: 0.6rem;
    }
    
    .featured-badge-icon {
        font-size: 0.65rem;
    }
    
    .featured-products-section .product-image {
        width: 45px;
        height: 45px;
    }
    
    .featured-products-section .product-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 1;
    }
    
    .featured-products-section .product-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .featured-products-section .meta-item {
        font-size: 0.7rem;
    }
    
    .featured-products-section .info-btn,
    .featured-products-section .order-btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* الهواتف الصغيرة */
@media (max-width: 480px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    
    .featured-products-section .product-card.featured-product-special {
        min-height: 160px;
        padding: 0.8rem;
    }
    
    /* تصغير الشارة في الهواتف الصغيرة */
    .featured-badge {
        top: -2px;
        right: -2px;
        padding: 4px 6px;
        font-size: 0.55rem;
    }
    
    .featured-badge-icon {
        font-size: 0.6rem;
    }
    
    .featured-products-section .product-image {
        width: 40px;
        height: 40px;
    }
    
    .featured-products-section .product-title {
        font-size: 0.85rem;
        -webkit-line-clamp: 1;
    }
    
    .featured-products-section .product-header {
        gap: 0.7rem;
    }
    
    .featured-products-section .product-meta {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .featured-products-section .meta-item {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .featured-products-section .product-actions {
        gap: 0.4rem;
    }
    
    .featured-products-section .info-btn,
    .featured-products-section .order-btn {
        font-size: 0.65rem;
        padding: 4px 6px;
    }
}







.featured-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile and Small Screen optimizations */
@media (max-width: 768px) {
    .featured-products-section {
        padding: 60px 1rem;
    }
    
    .featured-products-section .section-title {
        font-size: 2rem;
    }
    
    .featured-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Large screens */
@media (min-width: 1401px) {
    .featured-products-section {
        padding: 100px 2rem;
    }
}