  /* الأساسيات */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        /* Parallax Container */
        .parallax-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: brightness(0.4);
        }
        
        /* القائمة */
        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .menu.scrolled {
            background: rgba(26, 26, 46, 0.95);
            padding: 5px 0;
        }
        
        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .logo i {
            margin-left: 10px;
            font-size: 32px;
        }
        
        .logo[dir="ltr"] i {
            margin-left: 0;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links[dir="ltr"] {
            flex-direction: row;
        }
        
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .nav-links a i {
            margin-left: 8px;
            font-size: 18px;
        }
        
        .nav-links[dir="ltr"] a i {
            margin-left: 0;
            margin-right: 8px;
        }
        
        .nav-links a:hover {
            color: #e94560;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            transition: width 0.3s ease;
        }
        
        .nav-links[dir="ltr"] a::after {
            right: auto;
            left: 0;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        /* القائمة المنسدلة للحساب */
.account-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.account-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-size: 14px;
}

.dropdown-item i {
    margin-left: 10px;
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
}

/* نافذة التسجيل/الدخول */
.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: linear-gradient(145deg, #1e1e3a, #252547);
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .auth-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #e94560, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #e94560;
    transform: rotate(90deg);
}

.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.auth-tab.active {
    background: rgba(233, 69, 96, 0.3);
    color: #fff;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #e94560, #ff7e5f);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
        .language-switcher {
            display: flex;
            align-items: center;
        }
        
        .language-switcher[dir="ltr"] {
            flex-direction: row;
        }
        
        .language-switcher button {
            background: transparent;
            border: none;
            color: #fff;
            margin: 0 5px;
            cursor: pointer;
            font-size: 14px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .language-switcher button.active {
            background: rgba(233, 69, 96, 0.2);
            color: #e94560;
        }
        
        .language-switcher button:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* المحتوى الرئيسي */
        .hero {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* أقسام المحتوى */
        .content-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
        }
        
        /* تصميم جديد للمنتجات */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(233, 69, 96, 0.1), rgba(255, 126, 95, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(233, 69, 96, 0.3);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-actions {
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            bottom: 20px;
        }
        
        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .action-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 50%;
            width: 0;
            height: 0;
            background: rgba(233, 69, 96, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(50%, -50%);
        }
        
        .action-btn:hover::after {
            width: 100%;
            height: 100%;
        }
        
        .action-btn.active {
            background: #e94560;
            color: white;
        }
        
        .action-btn.added::before {
            content: '✓';
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            font-weight: bold;
        }
        
        .action-btn:hover {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            color: #e94560;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
        }
        
        .product-rating span {
            margin-right: 5px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .view-all-container {
            text-align: center;
            margin-top: 50px;
            position: relative;
        }
        
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background: transparent;
            color: #e94560;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid #e94560;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            transition: right 0.4s ease;
            z-index: -1;
        }
        
        /* الشريط البرتقالي المتحرك */
        .view-all-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 3px;
            background: #ff7e5f;
            transition: all 0.4s ease;
            opacity: 0;
        }
        
        /* للغة الإنجليزية والفرنسية - الشريط على اليمين */
        .view-all-btn[dir="ltr"]::after {
            left: -20px;
        }
        
        /* للغة العربية - الشريط على اليسار */
        .view-all-btn[dir="rtl"]::after {
            right: -20px;
        }
        
        .view-all-btn:hover {
            color: white;
            padding-right: 40px;
            padding-left: 40px;
        }
        
        .view-all-btn:hover::before {
            right: 0;
        }
        
        .view-all-btn:hover::after {
            width: 30px;
            opacity: 1;
        }
        
        /* للغة الإنجليزية والفرنسية - توسيع المساحة على اليمين عند التمرير */
        .view-all-btn[dir="ltr"]:hover {
            padding-left: 50px;
        }
        
        /* للغة العربية - توسيع المساحة على اليسار عند التمرير */
        .view-all-btn[dir="rtl"]:hover {
            padding-right: 50px;
        }
        
        /* أيقونة السهم */
        .view-all-btn i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }
        
        .view-all-btn[dir="ltr"] i {
            margin-right: 0;
            margin-left: 8px;
            transform: rotate(0deg);
        }
        
        .view-all-btn:hover i {
            transform: translateX(-5px);
        }
        
        .view-all-btn[dir="ltr"]:hover i {
            transform: translateX(5px);
        }
        
        /* قسم Women الجديد */
        .women-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
        }
        
        .women-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .women-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .women-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .women-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(233, 69, 96, 0.3);
        }
        
        .category-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .category-card:hover .category-image {
            transform: scale(1.1);
        }
        
        .category-content {
            padding: 20px;
            text-align: center;
        }
        
        .category-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .category-count {
            color: #e94560;
            font-size: 0.9rem;
        }
        
        .women-featured {
            margin-top: 80px;
        }
        
        .featured-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .featured-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
        }
        
        .featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .women-cta {
            text-align: center;
            margin-top: 60px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .women-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .women-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .women-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .women-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* قسم Men الجديد */
        .men-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0c0c1c 0%, #1a1a2e 100%);
            position: relative;
        }
        
        .men-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .men-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #0d8bf2, #4e54c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .men-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .men-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .men-category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .men-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(13, 139, 242, 0.3);
        }
        
        .men-category-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .men-category-card:hover .men-category-image {
            transform: scale(1.1);
        }
        
        .men-category-content {
            padding: 20px;
            text-align: center;
        }
        
        .men-category-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .men-category-count {
            color: #0d8bf2;
            font-size: 0.9rem;
        }
        
        .men-featured {
            margin-top: 80px;
        }
        
        .men-featured-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .men-featured-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .men-featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #0d8bf2, #4e54c8);
        }
        
        .men-featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .men-product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .men-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(13, 139, 242, 0.1), rgba(78, 84, 200, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .men-product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(13, 139, 242, 0.3);
        }
        
        .men-product-card:hover::before {
            opacity: 1;
        }
        
        .men-product-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .men-product-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .men-product-card:hover .men-product-image {
            transform: scale(1.1);
        }
        
        .men-product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #0d8bf2, #4e54c8);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .men-product-actions {
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .men-product-card:hover .men-product-actions {
            opacity: 1;
            bottom: 20px;
        }
        
        .men-product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .men-product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .men-product-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .men-product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .men-product-price {
            color: #0d8bf2;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .men-product-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
        }
        
        .men-product-rating span {
            margin-right: 5px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .men-cta {
            text-align: center;
            margin-top: 60px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .men-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #0d8bf2, #4e54c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .men-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .men-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #0d8bf2, #4e54c8);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(13, 139, 242, 0.4);
        }
        
        .men-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 139, 242, 0.6);
        }
        
        /* قسم Kids الجديد */
        .kids-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
        }
        
        .kids-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .kids-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #2ecc71, #1abc9c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .kids-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .kids-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .kids-category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .kids-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(46, 204, 113, 0.3);
        }
        
        .kids-category-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .kids-category-card:hover .kids-category-image {
            transform: scale(1.1);
        }
        
        .kids-category-content {
            padding: 20px;
            text-align: center;
        }
        
        .kids-category-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .kids-category-count {
            color: #2ecc71;
            font-size: 0.9rem;
        }
        
        .kids-featured {
            margin-top: 80px;
        }
        
        .kids-featured-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .kids-featured-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .kids-featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #2ecc71, #1abc9c);
        }
        
        .kids-featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .kids-product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .kids-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(26, 188, 156, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .kids-product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(46, 204, 113, 0.3);
        }
        
        .kids-product-card:hover::before {
            opacity: 1;
        }
        
        .kids-product-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .kids-product-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .kids-product-card:hover .kids-product-image {
            transform: scale(1.1);
        }
        
        .kids-product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #2ecc71, #1abc9c);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .kids-product-actions {
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .kids-product-card:hover .kids-product-actions {
            opacity: 1;
            bottom: 20px;
        }
        
        .kids-product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .kids-product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .kids-product-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .kids-product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .kids-product-price {
            color: #2ecc71;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .kids-product-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
        }
        
        .kids-product-rating span {
            margin-right: 5px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .kids-cta {
            text-align: center;
            margin-top: 60px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .kids-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #2ecc71, #1abc9c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .kids-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .kids-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #2ecc71, #1abc9c);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
        }
        
        .kids-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.6);
        }
        
        /* قسم التخفيضات الجديد */
        .sale-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }
        
        .sale-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .sale-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .sale-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .sale-timer {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 60px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .timer-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffa726;
        }
        
        .timer-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .timer-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            min-width: 80px;
        }
        
        .timer-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff6b6b;
        }
        
        .timer-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 5px;
        }
        
        .sale-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .sale-category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .sale-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 107, 107, 0.3);
        }
        
        .sale-category-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .sale-category-card:hover .sale-category-image {
            transform: scale(1.1);
        }
        
        .sale-category-content {
            padding: 20px;
            text-align: center;
        }
        
        .sale-category-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .sale-category-discount {
            color: #ff6b6b;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .sale-featured {
            margin-top: 80px;
        }
        
        .sale-featured-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .sale-featured-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .sale-featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
        }
        
        .sale-featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .sale-product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .sale-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 167, 38, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .sale-product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 107, 107, 0.3);
        }
        
        .sale-product-card:hover::before {
            opacity: 1;
        }
        
        .sale-product-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .sale-product-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .sale-product-card:hover .sale-product-image {
            transform: scale(1.1);
        }
        
        .sale-product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .sale-product-actions {
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .sale-product-card:hover .sale-product-actions {
            opacity: 1;
            bottom: 20px;
        }
        
        .sale-product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .sale-product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .sale-product-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .sale-product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sale-product-price {
            color: #ff6b6b;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .sale-product-old-price {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.5);
            margin-left: 10px;
            font-size: 1rem;
        }
        
        .sale-product-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
        }
        
        .sale-product-rating span {
            margin-right: 5px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .sale-cta {
            text-align: center;
            margin-top: 60px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .sale-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .sale-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .sale-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            white-space: nowrap;
            min-width: 200px;
            text-align: center;
        }
        
        .sale-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
        }
        
        /* الفوتر الجديد */
        .footer {
            background: linear-gradient(135deg, #0a0a16 0%, #141428 100%);
            padding: 70px 20px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, #e94560, #0d8bf2, #2ecc71, #ffa726);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .footer-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-left: 8px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #e94560;
            transform: translateX(-5px);
        }
        
        .footer-links a:hover i {
            transform: translateX(-3px);
        }
        
        .footer-newsletter {
            margin-top: 20px;
        }
        
        .newsletter-text {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0 5px 5px 0;
            color: white;
        }
        
        .newsletter-btn {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 5px 0 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: linear-gradient(45deg, #ff7e5f, #e94560);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
        }
        
        /* نافذة المعاينة المحسنة */
        .preview-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
        }
        
        .preview-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .preview-content {
            background: linear-gradient(145deg, #1e1e3a, #252547);
            border-radius: 20px;
            max-width: 1000px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            transform: scale(0.9) translateY(50px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .preview-overlay.active .preview-content {
            transform: scale(1) translateY(0);
        }
        
        .preview-close {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(233, 69, 96, 0.9);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .preview-close:hover {
            background: #e94560;
            transform: rotate(90deg) scale(1.1);
        }
        
        .preview-body {
            display: flex;
            height: 100%;
        }
        
        .preview-image-section {
            flex: 1;
            background: #0f0f1f;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .preview-image {
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .preview-image-section:hover .preview-image {
            transform: scale(1.03);
        }
        
        .preview-details {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .preview-header {
            margin-bottom: 25px;
        }
        
        .preview-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        
        .preview-price {
            font-size: 1.8rem;
            color: #e94560;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .preview-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .preview-stars {
            color: #ffc107;
            margin-left: 10px;
        }
        
        .preview-review-count {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .preview-description {
            margin-bottom: 25px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }
        
        .preview-features {
            margin-bottom: 25px;
        }
        
        .preview-features h4 {
            margin-bottom: 15px;
            color: #ff7e5f;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .preview-features h4 i {
            margin-left: 8px;
        }
        
        .preview-features ul {
            list-style: none;
            padding: 0;
        }
        
        .preview-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .preview-features li:before {
            content: '✓';
            color: #2ecc71;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .preview-size-selector {
            margin-bottom: 25px;
        }
        
        .preview-size-selector h4 {
            margin-bottom: 10px;
            color: #ff7e5f;
            font-size: 1.1rem;
        }
        
        .size-options {
            display: flex;
            gap: 10px;
        }
        
        .size-option {
            padding: 8px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .size-option:hover, .size-option.active {
            background: #e94560;
            border-color: #e94560;
        }
        
        .preview-actions {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .preview-btn {
            padding: 15px 25px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }
        
        .preview-btn i {
            margin-left: 8px;
        }
        
        .preview-btn.primary {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .preview-btn.secondary {
            background: transparent;
            color: #e94560;
            border: 2px solid #e94560;
        }
        
        .preview-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .preview-btn.primary:hover {
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* إشعارات */
        .notification {
            position: fixed;
            top: 100px;
            left: 20px;
            background: #2ecc71;
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 3000;
            transform: translateX(-150%);
            transition: transform 0.3s ease;
        }
        
        .notification.active {
            transform: translateX(0);
        }
        
        .notification.error {
            background: #e94560;
        }
        
        /* القائمة المتنقلة */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
        }
        
        /* التجاوب مع الأجهزة المختلفة */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: all 0.5s ease;
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links[dir="ltr"] {
                left: auto;
                right: -100%;
            }
            
            .nav-links[dir="ltr"].active {
                right: 0;
                left: auto;
            }
            
            .nav-links li {
                margin: 20px 0;
                width: 100%;
                text-align: center;
            }
            
            .nav-links a {
                justify-content: center;
                padding: 15px 0;
                font-size: 18px;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .view-all-btn:hover {
                padding-right: 30px;
                padding-left: 30px;
            }
            
            .view-all-btn[dir="ltr"]:hover {
                padding-left: 40px;
            }
            
            .view-all-btn[dir="rtl"]:hover {
                padding-right: 40px;
            }
            
            .preview-body {
                flex-direction: column;
                height: auto;
                max-height: 85vh;
                overflow-y: auto;
            }
            
            .preview-image-section {
                padding: 30px;
            }
            
            .preview-image {
                height: 250px;
            }
            
            .preview-details {
                padding: 30px;
            }
            
            .preview-title {
                font-size: 1.8rem;
            }
            
            .women-title, .men-title, .kids-title, .sale-title {
                font-size: 2.5rem;
            }
            
            .women-categories, .men-categories, .kids-categories, .sale-categories {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .timer-container {
                flex-wrap: wrap;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            /* إصلاح القائمة المتنقلة */
            .nav-links[dir="ltr"] {
                width: 100%;
                height: 100vh;
            }
            
            .nav-links[dir="rtl"] {
                width: 100%;
                height: 100vh;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                width: 100%;
            }
            
            .sale-cta-button {
                font-size: 16px;
                padding: 12px 30px;
                min-width: 180px;
            }
        }
        
        /* تأثيرات إضافية */
        .floating-element {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(233, 69, 96, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            left: 10%;
            animation-delay: 2s;
            width: 30px;
            height: 30px;
        }
        
        .floating-element:nth-child(3) {
            bottom: 20%;
            right: 20%;
            animation-delay: 4s;
            width: 40px;
            height: 40px;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }