
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', 'Arial', sans-serif;
            background-color: #f5f5f5;
        }

        /* Header Container */
        .header {
            background-color: white;
            padding: 20px 0;
            position: relative;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Search Section */
        .search-section {
            flex: 1;
            max-width: 250px;
        }

        .search-box {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #666;
        }

        .search-input {
            width: 100%;
            padding: 8px 8px 8px 30px;
            border: none;
            background: transparent;
            font-size: 14px;
            color: #666;
            outline: none;
        }

        .search-input::placeholder {
            color: #999;
        }

        /* Logo Section */
        .logo-section {
            flex: 0 0 auto;
            display: flex;
            justify-content: center;
            margin: 0 50px;
        }

        .logo-img {
            width: 140px;
            height: auto;
        }

        /* Icons Section */
        .icons-section {
            flex: 1;
            max-width: 250px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 25px;
        }

        .icon-btn {
            position: relative;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
            text-decoration: none;
        }

        .icon {
            width: 24px;
            height: 24px;
            color: #666;
        }

        .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #c84a3a;
            color: white;
            font-size: 10px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn {
            cursor: pointer;
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 5px;
        }

        .menu-line {
            width: 25px;
            height: 3px;
            background: #666;
            border-radius: 2px;
        }

        /* Navigation */
        .navigation {
            background-color: transparent;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 15px;
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            padding-top: 20px;
        }

        .nav-item {
            position: relative;
            cursor: pointer;
            padding: 5px 0;
        }

        .nav-link {
            text-decoration: none;
            color: #666;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #c84a3a;
        }

        .nav-link.active {
            color: #c84a3a;
        }

        .dropdown-icon {
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 5px;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid currentColor;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 230px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
            margin-top: 15px;
            display: flex;
            flex-direction: column;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 18px;
            white-space: nowrap;
            width: 100%;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            font-size: 13px;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s;
        }

        .dropdown-item:hover {
            background: #f8f8f8;
            color: #c84a3a;
        }

        /* CART SIDEBAR */
        .cart-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            display: none;
            justify-content: flex-end;
            z-index: 999999;
        }

        .cart-sidebar {
            width: 360px;
            background: #fff;
            height: 100%;
            padding: 20px;
            animation: slideOut 0.3s ease forwards;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        .cart-overlay.active {
            display: flex;
        }

        .cart-sidebar.active {
            animation: slideIn 0.3s ease forwards;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }
        @keyframes slideOut {
            from { transform: translateX(0); }
            to { transform: translateX(100%); }
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
        }

        .cart-close {
            cursor: pointer;
            font-size: 22px;
            font-weight: bold;
        }

        .cart-items {
            margin-top: 20px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .cart-item {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            margin-right: 12px;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-size: 15px;
            font-weight: 600;
        }

        .cart-item-qty {
            color: #666;
            font-size: 13px;
        }

        .cart-item-price {
            font-weight: 700;
            color: #c15f46;
        }

        .view-cart-btn,
        .checkout-btn {
            display: block;
            width: 100%;
            padding: 14px;
            text-align: center;
            border-radius: 4px;
            font-weight: bold;
            margin-top: 10px;
            text-decoration: none;
        }

        .view-cart-btn {
            background: #f6f6f6;
            color: #333;
        }

        .checkout-btn {
            background: #c15f46;
            color: #fff;
        }
        /* ABOUT SIDEBAR */
    /* ABOUT SIDEBAR */
/* ABOUT SIDEBAR OVERLAY */
.about-overlay {
    position: fixed;
    top: 0;
    right: 0;     /* attach to RIGHT SIDE */
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    justify-content: flex-end; /* sidebar stays on RIGHT */
    z-index: 1000001;
    font-family: Spartan, HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.about-overlay.active {
    display: flex;
}

/* SIDEBAR (start hidden on RIGHT) */
.about-sidebar {
    width: 360px;
    background: #2E3333;
    height: 100%;
    padding: 25px;
    color: white;
    overflow-y: auto;
    transform: translateX(100%);  /* hidden to RIGHT */
    transition: transform 0.3s ease;
}

.about-sidebar.active {
    transform: translateX(0);  /* slide IN from RIGHT */
}



        /* remove the keyframe animations (no longer used) */

        /* close button on right */
        .about-close {
            font-size: 26px;
            float: right;
            cursor: pointer;
        }

        .about-sidebar img {
            width: 160px;
            margin: 20px auto;
            display: block;
        }

        .about-title {
            font-size: 16px;
            line-height: 26px;
            text-align: center;
            margin-top: 15px;
            color: #D8D8D8 !important;
        }

        .about-section-title {
            font-size: 18px;
            margin-top: 35px;
            margin-bottom: 8px;
            font-weight: bold;
            color: white;
        }

        .about-text {
            color: #dcdcdc;
            line-height: 22px;
            font-size: 14px;
        }
        .nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;        /* Adjust underline position */
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #c84a3a;   /* underline color */
    transition: width 0.3s ease; /* smooth animation */
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%; /* Active menu always underlined */
}
.nav-link {
    position: relative;
    display: inline-block;
}

/* Hover underline for ALL nav items */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #c84a3a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Keep underline for ACTIVE page */
.nav-link.active::after {
    width: 100%;
}
.menu-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;                 /* spacing between lines */
}

.menu-line {
    width: 58px;             /* same width as your image */
    height: 63px;             /* thin line */
    background-color: #4d3b2a; /* EXACT brown color like your image */
    border-radius: 2px;      /* smooth edges */
}

 .nav-item:hover .arrow {
            transform: rotate(180deg);
            border-top-color: #d4a373;
        }

        .dropdown {
            position: absolute;
            top: calc(100% + 20px);
            left: -20px;
            background: #fff;
            min-width: 280px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 30px;
            width: 16px;
            height: 16px;
            background: #fff;
            transform: rotate(45deg);
        }

        .dropdown-item {
            display: block;
            padding: 16px 24px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #d4a373, #c17d3a);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover::before {
            transform: scaleY(1);
        }

        .dropdown-item:hover {
            background: #faf8f5;
            padding-left: 32px;
            color: #d4a373;
        }

        .dropdown-icon {
            display: inline-block;
            margin-right: 10px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover .dropdown-icon {
            transform: translateX(5px);
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 30px;
            width: 16px;
            height: 16px;
            background: #fff;
            transform: rotate(45deg);
        }

        .dropdown-item {
            display: block;
            padding: 16px 24px;
            padding-left: 40px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            height: 2px;
            width: 0;
            background: linear-gradient(90deg, #BF624C, #BF624C);
            transition: width 0.4s ease;
        }

        .dropdown-item:hover::before {
            width: 20px;
        }

        .dropdown-item:hover {
            background: #faf8f5;
            padding-left: 32px;
            color: #BF624C;
        }

        .dropdown-icon {
            display: inline-block;
            margin-right: 10px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover .dropdown-icon {
            transform: translateX(5px);
        }

        .mega-dropdown {
            min-width: 600px;
            padding: 30px;
        }


/* MOBILE NAVIGATION SIDEBAR (NO CONFLICT VERSION) */
.mf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999998;
}

.mf-overlay.mf-active {
    display: block;
}

.mf-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999999;
    padding: 20px 0;
}

.mf-sidebar.mf-active {
    left: 0;
}

.mf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
}

.mf-logo {
    width: 100px;
}

.mf-close-btn {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
}

.mf-items {
    padding: 10px 0;
}

.mf-item {
    border-bottom: 1px solid #f0f0f0;
}

.mf-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.mf-item.mf-dropdown > .mf-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mf-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.mf-item.mf-open .mf-toggle-icon {
    transform: rotate(180deg);
}

.mf-dropdown-box {
    max-height: 0;
    overflow: hidden;
    background: #f8f8f8;
    transition: max-height 0.3s ease;
}

.mf-item.mf-open .mf-dropdown-box {
    max-height: 500px;
}

.mf-dropdown-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .navigation, .search-section {
        display: none;
    }
}
/* MOBILE ONLY */
        @media (max-width: 768px) {
            .navigation, .search-section {
                display: none;
            }

            /* Hide About sidebar on mobile, show Mobile Nav sidebar */
            .about-overlay {
                display: none !important;
            }
        }

        /* DESKTOP ONLY */
        @media (min-width: 769px) {
            /* Hide Mobile Nav sidebar on desktop, show About sidebar */
            .mf-overlay,
            .mf-sidebar {
                display: none !important;
            }
        }

        /* TABLET & MOBILE RESPONSIVE */
        @media (max-width: 1024px) {
            .header-content {
                padding: 0 20px;
            }

            .nav-content {
                padding: 0 20px;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 0 15px;
            }

            /* Hide search on mobile */
            .search-section {
                display: none;
            }

            /* Hide desktop navigation on mobile */
            .navigation {
                display: none;
            }

            /* Adjust logo size */
            .logo-img {
                width: 100px;
            }

            /* Adjust icon spacing */
            .icons-section {
                gap: 15px;
            }

            .icon {
                width: 20px;
                height: 20px;
            }

            /* Hide About sidebar on mobile, show Mobile Nav sidebar */
            .about-overlay {
                display: none !important;
            }

            /* Adjust cart sidebar width for mobile */
            .cart-sidebar {
                width: 100%;
                max-width: 320px;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 0 10px;
            }

            .logo-img {
                width: 80px;
            }

            .icons-section {
                gap: 10px;
            }

            .badge {
                width: 16px;
                height: 16px;
                font-size: 9px;
            }

            .cart-sidebar {
                width: 100%;
            }
        }

        /* DESKTOP ONLY */
        @media (min-width: 769px) {
            /* Hide Mobile Nav sidebar on desktop, show About sidebar */
            .mf-overlay,
            .mf-sidebar {
                display: none !important;
            }
        }
