body{
    background-color: rgba(174, 177, 179, 0.226);
}
nav.navbar{
    border-bottom: 1px solid rgba(0, 0, 0, 0.301);

}
ul li a{
    transition: all ease 0.3s;
}
ul li a:hover{
    color: rgb(0, 0, 0);
    border-bottom: 1px solid black;
}
.product{
    margin-top: 150px;
}

img{
    border-radius: 20px;
}
.addbtn{
    background-color:#ff852d !important;
}

/* تنسيق Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* تعتيم الخلفية */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-img {
    max-width: 80%;
    max-height: 60vh;
    border-radius: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.thumbnails img:hover {
    border-color: white;
    transform: scale(1.1);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* cart */
.cart-container {
    position: relative;
    display: inline-block;
}

.cart-icon {
    width: 30px;
    cursor: pointer;
}

.cart-count {
    font-size: 12px;
    padding: 5px;
    min-width: 20px;
    text-align: center;
    display: none; /* إخفاء الرقم في البداية */
}




.image-small {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.image-small:hover {
    opacity: 1;
    border: 2px solid #ff7d1a;
    border-radius: 10px;
}

.cart-container {
    position: relative;
    display: inline-block;
}

.cart-icon {
    width: 30px;
    cursor: pointer;
}

.cart-count {
    font-size: 12px;
    padding: 5px;
    min-width: 20px;
    text-align: center;
    display: none; /* إخفاء الرقم في البداية */
}

@media(max-width:968px){
    .product{
        margin-top: 10px;
    }

}

@media (max-width: 992px) {
    #navbarSupportedContent {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff; /* أو أي لون مناسب */
        z-index: 1000;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        text-align: center;
    }

    #navbarSupportedContent .navbar-nav {
        flex-direction: row; /* لجعل العناصر أفقية */
        justify-content: center;
    }

    #navbarSupportedContent .nav-item {
        margin: 0 10px; /* مسافة بين العناصر */
    }
    .btn-res{
        margin-bottom: 50px;
    }
}

