body {
    font-family: 'Dubai', sans-serif;
    /* //background: linear-gradient(to bottom, #f5f5e9, #ffffff); */
      background: #121212;
    color: #4a4a4a;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;

}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    /* //background: linear-gradient(90deg, #a5c7a7, #f2eecb); */
      background: #1c1c1c;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 28px;
    margin: 0;
}
.logo { height: 30px; width: auto; }
.cart-icon {
    position: relative;
    cursor: pointer;
}
.cart-icon i {
    font-size: 26px;
    transition: transform 0.3s ease-in-out;
}
.cart-icon:hover i {
    transform: scale(1.1);
}
.cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #1c1c1c;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    padding: 3px 6px;
}
.carousel-inner img {
    height: 80px;
    object-fit: cover;
}
.carousel-control-prev,
.carousel-control-next {
    display: block; 
}
.product-card {
    border: 2px solid #d1ceb8;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.product-card img {
    width: 100%;
    height: auto;
}
.product-title {
    font-size: 22px;
    font-weight: bold;
    color: #4a4a4a;
    margin: 15px 0;
}
.product-price {
    color: #d58936;
    font-size: 20px;
    font-weight: bold;
}
.btn-custom {
    border: 2px solid #d58936;
    color: #fff;
    background-color: #a5c7a7;
    padding: 5px 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-custom:hover {
    background-color: #d58936;
    transform: scale(1.05);
}
.cart {
    position: fixed;
    top: 0;
    right: -100%;
    background: linear-gradient(to bottom, #ffffff, #f5f5e9);
    border-left: 2px solid #a5c7a7;
    padding: 20px;
    width: 350px;
    height: 100%;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}
.cart.active {
    right: 0;
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #a5c7a7;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.cart-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.cart-item button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    text-align: center;
    background-color: #a5c7a7;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.cart-item button:hover {
    background-color: #d58936;
}
.cart-total {
    background-color: #f2eecb;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}
.cart-empty {
    text-align: center;
    color: #888;
}
        /* تصميم الشريط السفلي */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #c1c1c1;
            color: #333;
            padding: 8px;
            text-align: center;
            display: none; /* نعرضه عند الحاجة */
            opacity: 0; /* للشفافية التدريجية */
            transition: opacity 0.5s ease-in-out;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
            font-size: 14px; /* تصغير النص */
        }

        .cookie-notice.show {
            display: block;
            opacity: 1;
        }

        .cookie-notice button {
            margin: 5px;
            background-color: #28a745;
            color: white;
            border: none;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 14px;
        }

        .cookie-notice .btn-secondary {
            background-color: #6c757d;
        }