.navbar {
    height: 56px;
}

.navbar-brand {
    font-size: 16px;
    letter-spacing: 1px;
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ffcc00;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SIDEBAR BASE */
.leelawati-sidebar {
    width: 100%;
    max-width: 380px;
    background: #fff;
}

/* HEADER */
.sidebar-header {
    height: 60px;
    border-bottom: 1px solid #eee;
}

.brand {
    font-size: 16px;
    font-weight: 500;
}

.login-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* SECTION TITLES */
.menu-title {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title.standalone {
    background: #fff;
}

/* MENU LIST */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.menu-list img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
}

.menu-list i {
    margin-left: auto;
    font-size: 14px;
}

/* BADGES */
.badge-yellow {
    background: #ffe600;
    color: #000;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 6px;
}

.badge-green {
    background: #00c853;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 3px;
}

/* FOOTER */
.sidebar-footer {
    text-align: center;
    padding: 20px 10px;
    font-size: 13px;
}

/* SUBMENU ANIMATION */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.submenu.open {
    max-height: 1000px; /* enough for content */
}

.toggle{
    cursor: pointer;
}

.banner{
    background-image: url("../images/banner.png");
    background-color: #cccccc;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.shop-now{
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 8px 15px;
    position: absolute;
    font-weight: 500;
    font-size: 22px;
    right: 25%;
    top: 50%;
}

.top-img img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.top-img p{
    color: #5c6066;
    margin-bottom: 0px;
}

/* ================================
   CATEGORY SECTION
================================ */

.category-section {
    padding: 40px 20px;
    background: #faf7f2;
}

/* TABS */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab {
    border: none;
    background: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.tab.active {
    background: #fff3ec;
    color: #d56b3e;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* PRODUCTS ROW */
.product-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* CARD */
.product-card {
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    position: relative;
    text-align: center;
    transition: 0.4s ease;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 13px;
}

/* RED DOT */
.dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* HIDE */
.product-card {
    width: 260px;              /* FIXED width */
    flex: 0 0 260px;           /* prevent flex resizing */
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    position: relative;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 340px;             /* FIXED height */
    object-fit: cover;
    border-radius: 12px;
}


.product-card.hide {
    display: none;
}


/* ================================
   CUSTOM HORIZONTAL SCROLLBAR
   (PRODUCT ROW)
================================ */

/* WebKit Browsers (Chrome, Edge, Safari) */
.product-row::-webkit-scrollbar {
    height: 6px;              /* thin scrollbar */
}

.product-row::-webkit-scrollbar-track {
    background: #f3efe8;      /* soft beige */
    border-radius: 10px;
}

.product-row::-webkit-scrollbar-thumb {
    background: #cfc7bb;      /* muted warm grey */
    border-radius: 10px;
}

.product-row::-webkit-scrollbar-thumb:hover {
    background: #b8afa3;
}

/* Firefox */
.product-row {
    scrollbar-width: thin;
    scrollbar-color: #cfc7bb #f3efe8;
}
/* ================================
   VIEW ALL BUTTON
================================ */

.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 44px;
    border: 1.5px solid #000;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background: #000;
    color: #fff;
}


/* ================================
   FIXED SIMPLE CAROUSEL
================================ */

.simple-carousel {
    display: flex;
    justify-content: center;    /* 🔥 IMPORTANT */
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0px 16px;              /* 🔥 centers visually */
}

/* Hide scrollbar */
.simple-carousel::-webkit-scrollbar {
    display: none;
}
.simple-carousel {
    scrollbar-width: none;
}

/* Items */
.carousel-item-box {
    flex: 0 0 auto;
    scroll-snap-align: start;        /* 🔥 IMPORTANT */
    text-align: center;
}

.carousel-item-box img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.carousel-item-box p {
    margin-top: 6px;
    font-size: 12px;
}

.whatsapp{
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    right: 10px;
    bottom: 100px;
    font-size: 30px;
    color: #fff;
    background: #2ab93c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons img{
    width: 60px;
    padding-bottom: 20px;
}

.icons p{
    font-size: 18px;
}

.updated{
    background: #256625;
    text-decoration: none;
    color: #fff;
    padding: 10px 75px;
    border-radius: 4px;
    font-size: 25px;
}

.contact h2{
    width: 60%;
    margin: auto;
}

footer{
    background: #f7f3f0;
    padding-top: 60px;
}

footer ul{
    padding-left: 0px;
}

footer ul li{
    list-style: none;
    line-height: 35px;
    color: #616071;
    font-size: 18px;
}

.social li{
    margin-right: 20px;
    font-size: 25px;
}