
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
        }

        .top-bar {
            background-color: #2E8B57;
            color: white;
            padding: 12px 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .top-bar-item {
            flex: 1;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            padding: 8px 0;
            min-width: 200px;
        }

        .top-bar-item:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .logo-section {
            background-color: white;
            padding: 25px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .logo-img {
            height: 50px;
            width: auto;
            max-width: 100%;
        }

        .site-name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2E8B57;
            margin: 0;
            letter-spacing: 1px;
        }

        .slogan {
            font-size: 1.1rem;
            color: #666;
            font-style: italic;
        }

        /* قسم الازرار */

        .nav-container {
            background-color: #2E8B57;
            padding: 12px 0;
            box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
            position: relative;
            z-index: 1000;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .desktop-nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .desktop-nav a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            padding: 8px 0;
            transition: all 0.3s;
            position: relative;
            font-size: 1.05rem;
        }

        .desktop-nav a:hover {
            transform: translateY(-3px);
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: white;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .desktop-nav a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            top: 40px;
            left: 0;
            min-width: 180px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 10px;
            overflow: hidden;
            flex-direction: column;
        }

        .dropdown-content a {
            color: #2E8B57;
            padding: 10px 15px;
            text-decoration: none;
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .dropdown-content a:hover {
            background-color: #f2f2f2;
        }

        /* تفعيل العرض عند الضغط */

        .dropdown.active .dropdown-content {
            display: flex;
        }

        .dropdown>a {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            padding: 0 20px;
            user-select: none;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-content {
                justify-content: flex-end;
            }
            .desktop-nav {
                display: none;
                flex-direction: column;
                background-color: #2E8B57;
                position: absolute;
                top: 60px;
                right: 10px;
                width: 200px;
                padding: 10px;
                border-radius: 10px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            }
            .desktop-nav a {
                font-size: 0.95rem;
                padding: 10px 15px;
                text-align: left;
            }
            .desktop-nav.show {
                display: flex;
            }
            .dropdown-content {
                position: relative;
                top: 0;
                left: 0;
                box-shadow: none;
                background-color: #2E8B57;
                border-radius: 0;
            }
            .dropdown-content a {
                color: white;
            }
        }

        .popup-alert {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 800px;
            background-color: white;
            color: black;
            border: 3px solid #2E8B57;
            padding: 20px 30px;
            border-radius: 12px;
            z-index: 9999;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            font-size: 1rem;
        }

        .popup-content p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .popup-button {
            background-color: #2E8B57;
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            margin: 15px auto 0 auto;
            display: block;
            font-family: Arial, sans-serif;
            width: fit-content;
        }

        .popup-button:hover {
            background-color: #1f6b41;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #2E8B57;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
        }

        @media (max-width: 600px) {
            .popup-alert {
                padding: 15px 20px;
                font-size: 0.95rem;
            }
            .popup-button {
                width: 100%;
            }
            .close-btn {
                font-size: 20px;
            }
        }

        /* السلايدر المحسن */

        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 30px auto;
            overflow: hidden;
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .slider {
            display: flex;
            height: 100%;
            transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .slide {
            min-width: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .slide-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            padding: 20px;
            background: rgba(46, 139, 87, 0.7);
            border-radius: 10px;
            animation: fadeIn 1s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        /* قسم النص تحت السلايدر مع الأنيميشن */

        .content-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        /* تأثيرات الحركة للعنوان المحدد */

        @keyframes titlePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes titleFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-title {
            font-size: 2rem;
            color: #2E8B57;
            margin-bottom: 20px;
            font-weight: bold;
            animation: titleFadeIn 1s ease-out, titlePulse 2s ease-in-out infinite 1s;
            display: inline-block;
        }

        .content-text {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        /* قسم المنتجات الاكثر مبيعا  */

        .bestseller-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .bestseller-title {
            text-align: center;
            font-size: 2.2rem;
            color: #2E8B57;
            margin-bottom: 40px;
            font-weight: bold;
            position: relative;
        }

        .bestseller-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: #2E8B57;
            margin: 15px auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
        }

        .product-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .product-price {
            font-size: 1rem;
            color: #2E8B57;
            margin-bottom: 15px;
        }

        .buy-btn {
            display: inline-block;
            background-color: #2E8B57;
            color: white;
            padding: 10px 18px;
            margin-top: 10px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .buy-btn:hover {
            background-color: #256b45;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, background 0.3s ease;
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(46, 139, 87, 0.1);
            /* لون أخضر شفاف */
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-info {
            position: relative;
            z-index: 2;
            /* فوق طبقة الشفافية */
        }

        /* ==== قسم التغذية - دون تغيير التصميم الأساسي ==== */

        .nutrition-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            position: relative;
        }

        .nutrition-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .nutrition-block {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .nutrition-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nutrition-block.reverse {
            flex-direction: row-reverse;
        }

        .nutrition-image {
            flex: 1;
            min-height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .nutrition-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .nutrition-block:hover .nutrition-image img {
            transform: scale(1.05);
        }

        .nutrition-content {
            flex: 1;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
        }

        .nutrition-block.reverse .nutrition-content {
            margin-right: -50px;
        }

        .nutrition-block:not(.reverse) .nutrition-content {
            margin-left: -50px;
        }

        .nutrition-title {
            font-size: 1.8rem;
            color: #2E8B57;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .nutrition-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
            font-size: 1.2rem;
        }

        /* القسم الجديد - جميع المنتجات */

        .all-products-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .all-products-title {
            text-align: center;
            font-size: 2.2rem;
            color: #2E8B57;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .all-products-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* التجاوب مع الهاتف */

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .nutrition-block,
            .nutrition-block.reverse {
                flex-direction: column;
            }
            .nutrition-block.reverse .nutrition-content,
            .nutrition-block:not(.reverse) .nutrition-content {
                margin: -30px 20px 0 20px;
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            .product-name {
                min-height: auto;
            }
            .nutrition-image {
                min-height: 300px;
            }
            .nutrition-title {
                font-size: 1.5rem;
            }
            .desktop-nav {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            .top-bar-item {
                flex: 100%;
                margin-bottom: 10px;
            }
            .site-name {
                font-size: 2rem;
            }
        }

        /* قسم العدادات  */

        .counters-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 30px;
            margin: 100px 20px;
            border-radius: 80px;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }

        .counters-overlay {
            background: rgba(46, 139, 87, 0.88);
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: inherit;
        }

        .counters-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 40px;
            max-width: 1200px;
            width: 100%;
            z-index: 1;
            padding: 60px 20px;
        }

        .counter-item {
            text-align: center;
            color: white;
            transition: transform 0.3s ease;
        }

        .counter-item:hover {
            transform: scale(1.05);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        @media (max-width: 480px) {
            .counters-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .counter-number {
                font-size: 1.8rem;
            }
            .counter-label {
                font-size: 0.95rem;
            }
        }

        /* تنسيقات فوتر  */

        .footer {
            background: linear-gradient(145deg, #245d3c, #1b4830);
            color: white;
            font-family: 'Segoe UI', sans-serif;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            overflow: hidden;
            margin-top: 80px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            padding: 60px 30px 40px;
            max-width: 1200px;
            margin: auto;
        }

        .footer-box {
            padding: 0 10px;
        }

        .footer-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #d4ffd1;
        }

        .footer-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: #f0f0f0;
        }

        .footer-subtitle {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .footer-contact,
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li,
        .footer-links li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #aaffc3;
            min-width: 20px;
        }

        .footer-links a {
            color: #e5e5e5;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #aaffc3;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 600px) {
            .footer-title {
                text-align: center;
            }
            .footer-top {
                padding: 40px 20px 30px;
            }
            .footer-box {
                text-align: center;
            }
            .footer-contact li,
            .footer-links li {
                justify-content: center;
            }
        }
 