﻿
        header {
            background-color: #000;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*padding: 10px 30px;*/
            position: relative;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
        }

        .header-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

            .header-icons i {
                cursor: pointer;
                font-size: 18px;
                position: relative;
            }

        /* البحث */
        .search-popup {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .search-box {
            display: flex;
            width: 80%;
            max-width: 600px;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
        }

            .search-box input {
                flex: 1;
                padding: 10px;
                border: none;
                font-size: 16px;
            }

            .search-box button {
                padding: 10px 20px;
                background: #8c0d4f;
                color: white;
                border: none;
                cursor: pointer;
            }

        .search-popup .close-search {
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 24px;
            cursor: pointer;
        }

        /* القوائم المنسدلة */
        .dropdown1, .cart-dropdown1 {
            position: absolute;
            top: 44px;
            left: -190px !important;
            background: white;
            color: black;
            border: 1px solid #ddd;
            padding: 0px;
            min-width: 275px;
            display: none;
            z-index: 99;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
        }

            .dropdown1 a, .cart-dropdown1 div {
                display: block;
                padding: 5px 6px;
                text-decoration: none;
                color: black;
               
            }

            .cart-dropdown1 .cart-item {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 5px 0;

            }

            .cart-dropdown1 img {
                width: 40px;
                height: 40px;
                object-fit: cover;
                border: 1px solid #ccc;
                border-radius:0px !important;
            }
        .pcart {
            padding: 1rem;
            background-color: color-mix(in srgb, var(--default-color), transparent 97%);
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }
        .cart-actions {
            display: flex;
            gap: 8px;
            text-align:center;
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-weight: 500;
            color: var(--heading-color);
        }
        .remove-item {
            color: #999;
            font-size: 16px;
            cursor: pointer;
            margin-right: 10px;
        }

        .cart-close {
            text-align: center;
            padding: 5px;
            background: #eee;
            margin-top: 10px;
            cursor: pointer;
        }