    @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
    
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
              font-family: "Tajawal", sans-serif;

        }

        :root {
            --primary: #f00633;
            --primary-light: #f00633;
            --primary-dark: #f00633;
            --accent: #ffa500;
            --accent-dark: #ff9500;
            --secondary: #ff5722;
            --dark: #2c2c2c;
            --gray: #666;
            --light-gray: #e0e0e0;
            --bg-light: #f9f9f9;
        }

        body {
  font-family: "Tajawal", sans-serif;
            background-color: var(--bg-light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            direction: rtl;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
            transition: opacity 0.3s;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        /* Main Header */
        .main-header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
            cursor: pointer;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            color: var(--accent);
        }

        .search-bar {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-bar button:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            font-size: 0.85rem;
        }

        .phone-number {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .phone-number:hover {
            color: var(--accent);
        }

        .header-icon {
            position: relative;
            color: var(--dark);
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .header-icon:hover {
            color: var(--primary);
            transform: scale(1.1);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .cart-display {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        /* Navigation */
        .main-nav {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 0;
            position: sticky;
            top: 88px;
            z-index: 99;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .nav-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-btn {
            background: white;
            color: var(--primary);
            border: none;
            padding: 15px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .menu-btn:hover {
            background: var(--bg-light);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 5px;
            flex: 1;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 15px 18px;
            display: block;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.15);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-top: 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,165,0,0.4);
        }

        /* Banner Cards */
        .banner-section {
            padding: 50px 0;
            background: white;
        }

        .banner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .banner-card {
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            border-radius: 15px;
            padding: 60px 30px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .banner-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.5s;
        }

        .banner-card:hover::before {
            transform: scale(1);
        }

        .banner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .banner-card:nth-child(1) {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }

        .banner-card:nth-child(2) {
            background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
        }

        .banner-card:nth-child(3) {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        }

        .banner-discount {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .banner-btn {
            background: white;
            border: 2px solid var(--dark);
            padding: 12px 35px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .banner-btn:hover {
            background: var(--dark);
            color: white;
            transform: scale(1.05);
        }

        /* Section Styles */
        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 50px;
            color: var(--gray);
            font-weight: 300;
        }

        /* Product Cards */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            position: relative;
            padding: 40px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px;
        }

        .product-image-content {
            font-size: 4rem;
            transition: transform 0.3s;
        }

        .product-card:hover .product-image-content {
            transform: scale(1.15) rotate(5deg);
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(255,165,0,0.4);
        }

        .product-info {
            padding: 25px;
        }

        .product-name {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 15px;
            min-height: 45px;
            color: var(--dark);
            line-height: 1.4;
        }

        .product-prices {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 0.95rem;
        }

        .new-price {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.4rem;
        }

        .add-to-cart-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .add-to-cart-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(46,125,50,0.3);
        }

        /* Categories */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .category-img {
            height: 180px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary);
            transition: all 0.3s;
        }

        .category-card:hover .category-img {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
        }

        .category-info {
            padding: 25px;
            text-align: center;
        }

        .category-info h3 {
            margin-bottom: 10px;
            font-size: 1.15rem;
            color: var(--dark);
        }

        .category-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Stores Section */
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .store-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
            cursor: pointer;
        }

        .store-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 2px solid var(--primary);
        }

        .store-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .store-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .store-address {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: #ccc;
            padding: 60px 0 25px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            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;
        }

        .social-link:hover {
            background: var(--primary);
            transform: scale(1.15);
        }

        .subscribe-form {
            display: flex;
            margin-top: 15px;
            gap: 10px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
        }

        .subscribe-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .subscribe-form button:hover {
            background: var(--primary-dark);
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .payment-icon {
            width: 55px;
            height: 35px;
            background: white;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            color: var(--gray);
            transition: transform 0.3s;
        }

        .payment-icon:hover {
            transform: scale(1.1);
        }

        /* Cart Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
        }

        .cart-modal.active {
            display: block;
        }

        .cart-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }

        .cart-content {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 450px;
            max-width: 90%;
            background: white;
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .cart-header {
            padding: 25px;
            border-bottom: 2px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-light);
        }

        .cart-header h2 {
            font-size: 1.5rem;
            color: var(--dark);
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s;
        }

        .cart-close:hover {
            color: var(--dark);
        }

        .cart-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            padding: 20px 0;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            gap: 15px;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            background: var(--bg-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .cart-item-price {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .cart-item-remove {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            margin-top: 8px;
            transition: all 0.3s;
        }

        .cart-item-remove:hover {
            background: #e64a19;
        }

        .cart-footer {
            padding: 25px;
            border-top: 3px solid var(--primary);
            background: var(--bg-light);
        }

        .cart-total {
            font-size: 1.5rem;
            font-weight: bold;
            text-align: right;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .cart-total span {
            color: var(--primary);
        }

        .checkout-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1.05rem;
            transition: all 0.3s;
        }

        .checkout-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }

        .empty-cart {
            text-align: center;
            padding: 80px 20px;
            color: var(--gray);
        }

        .empty-cart-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0.3;
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 120px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 18px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            z-index: 3000;
            display: none;
            animation: slideIn 0.3s;
        }

        .success-message.show {
            display: block;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(46,125,50,0.4);
            z-index: 500;
            transition: all 0.3s;
        }

        .scroll-top.show {
            display: flex;
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        /* Add to your style.css */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-header,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .header-content {
                flex-direction: column;
            }

            .search-bar {
                width: 100%;
                max-width: 100%;
            }

            .nav-links {
                display: none;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
   