    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', sans-serif;
    }
    
    body {
        background: #fff;
    }
    /* TOP STRIP */
    
.top-strip {
    background: #1f4b3e;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* LEFT */
.top-left {
    text-align: left;
}

/* CENTER */
.top-center {
    text-align: center;
}

/* RIGHT */
.top-right {
    text-align: right;
}

.top-right a {
    color: #fff;
    margin-left: 10px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #ffd700;
}

/* LINK */
.top-center a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .top-strip {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
    }

    .top-left,
    .top-right {
        display: none!important;
    }
}
    /* NAVBAR */
    
    .navbar {
        background: #fdfeff;
        padding: 15px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
   .logo img {
    height: 24px;
    padding: 0px 0px 0px 32px;
}
    /* NAV LINKS */
    
    .nav-links {
        display: flex;
        gap: 45px;
        list-style: none;
    }
    
    .nav-links li {
        font-weight: 600;
        cursor: pointer;
        font-size: 18px;
    }
    
    .nav-icons {
        display: flex;
        gap: 20px;
        font-size: 18px;
    }
    
    .cart-count {
        position: absolute;
        top: -8px;
        right: -10px;
        background: #1f4b3e;
        color: #fff;
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 50%;
    }
    
    .cart-icon {
        position: relative;
    }
    /* HAMBURGER */
    
    /* HAMBURGER HIDE DESKTOP */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE MENU SIDEBAR */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

/* ACTIVE CLASS */
.mobile-menu.active {
    left: 0;
}

/* MENU LIST */
.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    cursor: pointer;
}

/* OVERLAY (dark background) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

.menu-overlay.active {
    display: block;
}

/* MOBILE VIEW */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}
    /* SLIDER */
    /* SLIDER */
    
    .slider {
        position: relative;
        width: 100%;
        height: 360px;
        overflow: hidden;
    }
    
    .slides {
        display: flex;
        width: 300%;
        height: 100%;
        transition: 0.6s;
    }
    
    .slide {
        width: 100%;
        height: 100%;
        position: relative;
        flex-shrink: 0;
    }
    
    .slide img {
        /* width: 100%; */
        height: 100%;
        object-fit: contain;
    }
    
    .slider-content {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        color: #1f4b3e;
        max-width: 450px;
    }
    
    .slider-content h1 {
        font-size: 60px;
    }
    
    .slider-content h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .slider-content p {
        margin: 15px 0;
        font-size: 18px;
    }
    
    .slider-content button {
        padding: 12px 25px;
        background: #1f4b3e;
        color: #fff;
        border: none;
        border-radius: 25px;
        cursor: pointer;
    }
    /* MOBILE */
    
    .category-section {
        padding: 50px 0px 50px 0px;
        background: #fff;
    }
    
    .cat-container {
        position: relative;
        max-width: 1360px;
        margin: auto;
    }
    
    .cat-slider {
        overflow: hidden;
    }
    
    .cat-track {
        display: flex;
        transition: 0.4s;
    }
    
    .cat-item {
        width: 25.66%;
        text-align: center;
    }
    
    .cat-img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cat-img img {
        width: 128px;
    }
    
    .cat-item p {
        margin-top: 10px;
        font-weight: 600;
        color: #1f4b3e;
    }
    /* arrows */
    
    .cat-btn {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        background: #fff;
        border: none;
        font-size: 28px;
        cursor: pointer;
        padding: 5px 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .prev {
        left: -10px;
    }
    
    .next {
        right: -10px;
    }
    /* MOBILE */
    
    @media(max-width:768px) {
        .cat-item {
            width: 25%;
        }
        .cat-img {
            width: 90px;
            height: 90px;
        }
        .cat-img img {
            width: 65px;
        }
    }
    
    @media(max-width:768px) {
        .slider {
            height: 420px;
        }
        .slider-content {
            left: 20px;
            bottom: 40px;
            top: auto;
            transform: none;
            background: rgba(255, 255, 255, 0.85);
            padding: 15px;
            border-radius: 8px;
        }
        .slider-content h1 {
            font-size: 32px;
        }
    }
    /* MOBILE VIEW */
    
    @media(max-width:768px) {
        .navbar {
            padding: 12px 20px;
        }
        .nav-links {
            display: none;
        }
        .hamburger {
            display: block;
        }
    }