   /* الأساسيات */
        * {
            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, #ff6b6b, #ffa726);
            -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: #ff6b6b;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            transition: width 0.3s ease;
        }
        
        .nav-links[dir="ltr"] a::after {
            right: auto;
            left: 0;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .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(255, 107, 107, 0.2);
            color: #ff6b6b;
        }
        
        .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, #ff6b6b, #ffa726);
            -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, #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);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 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;
        }
        
        .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(255, 107, 107, 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: #ff6b6b;
            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);
        }
        
        .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, #ff6b6b, #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, #ff6b6b, #ffa726);
        }
        
        .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: #ff6b6b;
            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, #ff6b6b, #ffa726);
            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, #ffa726, #ff6b6b);
        }
        
        .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, #ff6b6b, #ffa726);
            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(255, 107, 107, 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: #ff6b6b;
            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, #ff6b6b, #ffa726);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        
        .preview-price {
            font-size: 1.8rem;
            color: #ff6b6b;
            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: #ffa726;
            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: #ffa726;
            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: #ff6b6b;
            border-color: #ff6b6b;
        }
        
        .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, #ff6b6b, #ffa726);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        
        .preview-btn.secondary {
            background: transparent;
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
        }
        
        .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(255, 107, 107, 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;
            }
            
            .sale-featured-products {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .sale-title {
                font-size: 2.5rem;
            }
            
            .sale-categories {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .timer-container {
                flex-wrap: wrap;
            }
            
            .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;
            }
            
            .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(255, 107, 107, 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);
            }
        }