* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #fff;
    color: #000;
}


.header{
    padding: 10px;
    background: #ffcb67;
    color:white;
    text-align: center;
    font-size: 20px;
    font-weight: 700
}

header {
    background-color: white;
    padding: 5px 20px;
    text-align: left;
    font-size: 14px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header {

    background-color: #000;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header div {
    display: flex;
    align-items: center;
}

.top-header .cart {
    display: flex;
    align-items: center;
}

.top-header .cart img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

nav {
    background-color: #000;
    padding: 10px 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
}
.close-btn{
    display: none;
}
.img-menu{
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.header-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
}

.search-bar {
    position: relative;
}

.search-bar input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
}

.language-selector {
    display: flex;
    align-items: center;
}

.language-selector span {
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
}

.language-selector img {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}
@media (max-width: 1200px) {
    .product-list {
        justify-content: center;
        gap: 10px;
    }

    .product-item {
        width: 180px; /* تقليل العرض */
    }

    .header {
        font-size: 18px; /* تصغير النص */
    }
}



    @media screen and (max-width: 768px) {

                .hamburger {
                    display: block;
                    /* position: absolute; */
                    /* top: 10px;
                    right: 20px; */
                    color: white;
                }
                .header-logo{
                    display: flex;
                    justify-content: space-between;
                }

                .menu {
                    display: none;
                    flex-direction: column;
                    text-align: right;
                    background: #000;
                    position: absolute;
                    top: 50px;
                    right: 0;
                    width: 100%;
                    z-index: 1000;
                }

                .close-btn {
                    align-self: flex-end;
                    margin: 10px;
                    display: flex;

                }



                .close-btn button {
                    background: none;
                    border: none;
                    font-size: 20px;
                    cursor: pointer;
                    color: #ff0000; /* لون زر الإغلاق */
                }

                .menu.show {
                    display: flex;
                }

                nav ul li {
                    margin: 10px 0;
                }
                .hamburger.close {
                    color: #ff0000; /* لون عند الإغلاق */
                }
                .menu-cat{
                    position: relative;
                    top: -20px;
                    right: -100px;
                }

    }
