/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, Tahoma, Geneva, Verdana, sans-serif;
    color: #6c757d;
    line-height: 1.6;
}
a {font-weight: bold;text-decoration:none;}
a:visited {color:purple;}
.container {margin: 0 auto;width:95%;padding:0}
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}
h1 {font-size:2rem;}
h2 {font-size:1.6rem;}
h3 {font-size:1.3rem;}
h1, h2, h3 {padding: 10px 0 0;color:#6c757d;}
.reverse {font-weight:bold;color:#fff;background-color:#000;padding:5px 0;margin:0}
.note {color:#f00;font-weight:bold;}
:root {
    --primary-green: #7CB342;
    --light-green: #AED581;
    --dark-green: #558B2F;
}
/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 146px;
    height: 61px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 5px;
}
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    /* align-items: center; */
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}
.nav-menu > li > a:hover {
    color: var(--primary-green);
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-radius: 5px;
    margin-top: 5px;
    padding-left:0;
}
.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li {
    list-style: none;
}
.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}
.dropdown a:hover {
    background: #8fbc8f;
    color: white;
}
.cart-icon {
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    position: relative;
    padding: 10px;
}
.cart-icon:hover {
    color: var(--dark-green);
}
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-green);
}
/* Footer Styles */
footer {
    background: #2C3E50;
    color: white;
    padding: 20px 30px 30px;
    margin-top: 20px;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-green);
}
.footer-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icons a:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--light-green);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
}
#lblCartCount {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 5px 7px;
    vertical-align: top;
    margin-left: -15px;
    margin-top: 6px;
}
/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    nav {
        display: none;
    }
    nav.active {
        display: block;
        position: fixed;
        top: 91px;
        right: 20px;
        background: var(--dark-green);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-radius: 8px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        width: auto;
        min-width: 250px;
    }
    .nav-menu {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    .nav-menu > li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    .nav-menu > li > a {
        color: white;
        padding: 15px 50px 15px 20px;
        display: block;
        position: relative;
        text-align: left;
        width: 100%;
    }
    .nav-menu > li > a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
    /* Add arrow indicator for items with dropdowns */
    .nav-menu > li:has(.dropdown) > a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        transition: transform 0.3s;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-menu > li.expanded > a::after {
        transform: translateY(-50%) rotate(90deg);
    }
    .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin: 0;
        background: rgba(0,0,0,0.2);
        transition: max-height 0.3s, opacity 0.3s, visibility 0.3s;
    }
    .nav-menu > li.expanded .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 700px;
    }
    .dropdown a {
        color: white;
        padding: 12px 20px 12px 40px;
        background: transparent;
    }
    .dropdown a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
}
@media (max-width: 600px) {
    .header-container {
        padding: 15px 20px;
    }
    .logo {
        width: 120px;
        height: 50px;
        font-size: 20px;
    }
}