.navbar-top {
    background-color: #ffeb99;
    padding: 10px 15px;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    margin-right: 10px;
}
.search-bar {
    flex: 1;
    margin: 10px 50px 10px 50px;
}
.support {
    display: flex;
    align-items: center;
    text-align: right;
}
.support i {
    font-size: 1.5rem;
    margin-right: 8px;
}
.navbar-bottom {
    background-color: white;
}
.cart-icon {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}
@media (max-width: 991px) {
    .search-bar {
        margin: 10px auto;
    }
    .navbar-top {
        flex-direction: column;
        text-align: center;
    }
    .support {
        justify-content: center;
        margin-top: 10px;
    }
}
.navbar-top {
    background-color: #f8bacd;
    padding: 10px 15px;
}
.navbar-bottom {
    color: white;
    background-color: rgb(85, 0, 42);
}
.navbar-bottom .nav-link {
    color: white !important;
}
.cart-icon {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 2;
}
.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #f8bacd;
    display: block;
    transition: 0.3s;
}
.side-menu a:hover {
    background: #530033;
}
.side-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: #f8bacd;
    cursor: pointer;
}
.social-links {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.social-links a {
    margin: 0px;
    color: #f8bacd;
    font-size: 20px;
    float: left;
}
.nav-item{
    color: #f8bacd;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
@media(min-width: 991px) {
    .nav-btn-1 {
        visibility: hidden;
    }
}
@media (max-width: 768px) {
    .nav-btn {
        visibility: visible;
    }
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
}
.image-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}
.image-grid img {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 5px;

}
.image-grid img:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .layout {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .slider-container {
        width: 100%;
    }
    .image-grid {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 5px;
    }
    .image-grid img {
        width: 16%;
        display: none;
    }
    .image-gallery{
        margin-top: -10px;
        margin-bottom: 10px;
    }
    
}

.image-gallery {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.image-gallery img {
    width: calc(90% / 6 - 2px); /* Equal width for 6 images in one row */
    border-radius: 5px;
    margin: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 991px) {
    .image-gallery img {
       display: none;
    }
    
}
@media (max-width: 768px) {
    .image-gallery img {
        width: calc(90% / 3 - 2px);
        margin: 7px; 
    }
    .image-gallery{
        margin-top: 5px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .image-gallery img {
        width: calc(90% / 2 - 2px); 
        margin: 7px;
    }
    .image-gallery{
        margin-top: 5px;
        margin-bottom: 10px;
    }
}
.swiping-sliders-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #4cb2be;
    padding: 1% 0;
}
.swiping-sliders img:hover {
    transform: scale(1.2);
}
.swiping-sliders:hover {
    animation-play-state: paused;
}
.swiping-sliders {
    display: flex;
    width: 200%;
    animation: slideRight 30s linear infinite;
}

.swiping-sliders.reverse {
    animation: slideLeft 30s linear infinite;
}
.swiping-sliders img:hover {
    transform: scale(1.2);
}
.swiping-sliders:hover {
    animation-play-state: paused;
}
.swiping-sliders img {
    width: 200px;
    height: auto;
    margin: 0 10px;
}

@keyframes slideRight {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes slideLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}
@media (max-width: 991px) {
    .swiping-sliders-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        background: #4cb2be;
        padding: 10px 0;
        white-space: nowrap;
    }


    .swiping-sliders:hover {
        animation-play-state: paused;
    }

    .swiping-sliders img {
        width: 100px;
        height: auto;
        margin: 0 10px;
        transition: transform 0.3s ease;
    }

    .swiping-sliders img:hover {
        transform: scale(1.2);
    }
    
    .swiping-sliders:hover {
        animation-play-state: paused;
    }
}

@keyframes slideRight {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}


.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.product-card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover img {
    transform: scale(1.1);
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color:#f8bacd;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.product-card:hover .view-btn {
    opacity: 1;
}

.view-btn:hover {
    background: #ff6b6b;

}
.dz-personal-img{
    width: 30%;
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
    margin-right: 10px;
    
}
.dz-personal-img img{
    border-radius: 10px;
}




