body{
    margin: 0 auto;
}
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    background: transparent;
}
.back-button {
    position: absolute;
    top: 7%;
    left: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
.logo {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    z-index: 1001;
    background: transparent;
}
.logo img {
    height: 125px;
    width: 125px;
}
.item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.item a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}
.item p {
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.category-tabs button {
    flex: 1;
    border: 1px solid #000;
    color: #000;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.category-tabs button.active {
    background: #000;
    color: #fff;
}
.category-menu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    bottom: 80px !important;
    inset-inline-start: 22px; 
    width: 250px;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 999;  
}
.category-menu h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.category-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-menu li {
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s;
}
.category-menu li.active {
    background: #000;
    color: #fff;
}
/* .category-menu li:hover{
    background: #000;
    color: #fff;
} */
.menu-button {
    background: #000;
    color: #fff;
    /* position: fixed;
    bottom: 20px;
    left: 20px;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center; */
}
.menu-button img {
    width: 22px;
    height: 22px;
}
.menu-button img.xmark {
    display: none;
}
.border-dark-top {
    border-top: 1px solid #000 !important;
}
.footer-copyright {
    letter-spacing: 1px;
    padding: 20px 0;
    text-align: right;
}
.product-detail-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #212529;
}
.nav-link {
    color: #212529;
}
.nav-link:focus, .nav-link:hover {
    color: #212529;
}
.jq-toast-single{
    border-radius: 5px;
}

.swal2-popup .swal2-styled.swal2-confirm {
    background-color: #000 !important;
    border-color: #000 !important;
}
.swal2-popup .swal2-styled:focus {
    outline: none;
    box-shadow: none !important;
}
.item a img {
    padding: 15px;
    transition: transform 0.5s ease-in-out; /* smooth zoom */
}
.item a:hover img {
    transform: scale(1.2); /* zoom in effect */
}
.item a p{
    padding: 15px;
}

@media (max-width: 576px) {
    .logo img {
        height: 85px;
        width: 85px;
    }
    .back-button {
        position: absolute;
        top: 5.5%;
        left: 10px;
        font-size: 16px;
    }
}
