


        .top-bar {
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar i {
            font-size: 13px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* أنماط Navbar الرئيسي */
        .auto-shine-button {
            background-color: #ffffff;
            border-radius: 5px;
            color: #1f3465 !important;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            padding: 8px 15px;
            font-weight: 500;
        }

        .auto-shine-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        .news {
            width: 160px
        }

        .news-scroll a {
            text-decoration: none
        }

        .dot {
            height: 6px;
            width: 6px;
            margin-left: 3px;
            margin-right: 3px;
            margin-top: 2px !important;
            background-color: #204029;
            border-radius: 50%;
            display: inline-block
        }


        .my_bttn:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            font-size: 12px;
        }

        .main-navbar {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color) 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .navbar-brand img {
            transition: transform 0.3s;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .nav-link:hover,
        .nav-link:focus {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }



        .dropdown-item {
            color: white;
            padding: 8px 15px;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background-color: var(--navbartop);
            color: #ffffff;
            padding-right: 20px;
        }
        /* أنماط عربة التسوق */
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #d4a762;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* أيقونة السلة */
        .cart-icon {
            position: relative;
            color: white;
            font-size: 1.4rem;
            margin-right: 15px;
            transition: transform 0.3s;
        }

        .cart-icon:hover {
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--navbartop);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* قسم المنتجات المميزة */
        .featured-section {
            padding: 60px 0;
            background-color: white;
        }

        .section-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .product-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            margin-bottom: 25px;
            background-color: white;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 152, 0.15);
        }


        .product-img-post {
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s;
        }


        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--navbartop);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: bold;
        }

        .product-body {
            padding: 20px;
        }

        .product-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }

        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .product-old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
            margin-right: 10px;
        }

        .product-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .add-to-cart {
            background-color: var(--navbartop);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .add-to-cart:hover {
            background-color: var(--navbartop);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* قسم المنتجات الأكثر إعجابًا */
        .popular-section {
            padding: 60px 0;
            background-color: var(--light-color);
        }

        .popular-product {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            background-color: white;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .popular-product:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(255, 107, 152, 0.1);
        }

        .popular-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-left: 10px;
        }

        .popular-info {
            flex-grow: 1;
        }

        .popular-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .popular-price {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* زر العودة للأعلى */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(255, 107, 152, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: #5ddf82;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* تأثيرات الحركة */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        /* تصميم متجاوب */
        @media (max-width: 992px) {
            .search-container {
                order: 3;
                width: 100%;
                margin: 15px 0;
            }

            .navbar-collapse {
                padding-top: 15px;
            }
        }
.categories-section {
                background-color: #fff9fb;
                padding: 60px 0;
            }

            .category-card {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                height: 250px;
                /* ارتفاع موحد لجميع البطاقات */
                margin-bottom: 25px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            }

            .category-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            }

            .category-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.7s ease;
            }

            .category-card:hover .category-img {
                transform: scale(1.1);
            }

            .category-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                color: white;
                text-align: center;
                padding: 20px;
                transition: all 0.5s ease;
            }

            .category-card:hover .category-overlay {
                background: linear-gradient(to top, #5ddf82, rgbargb(217 48 93 / 3%));
            }

            .category-title {
                font-weight: 700;
                font-size: 1.4rem;
                margin-bottom: 10px;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
                transform: translateY(20px);
                transition: transform 0.5s ease;
            }

            .category-count {
                font-size: 0.9rem;
                opacity: 0.9;
                transform: translateY(20px);
                transition: transform 0.5s ease 0.1s, opacity 0.5s ease;
            }

            .category-card:hover .category-title,
            .category-card:hover .category-count {
                transform: translateY(0);
            }

            /* تأثيرات الظهور */
            .fade-in {
                animation: fadeInUp 0.8s ease-out forwards;
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }



            