/*home page*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
		 
        html, body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 100%;
            line-height: 1.7;
            color: #1a1a1a;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }                

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.3rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .custom-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
        	display: flex;
            align-items: center;
            gap: 1rem;
        }
        .logo a {
        	line-height: 0;
        }
        .logo img {
        	height: 100px;
        }
        .logo span {
            font-size: 2rem;
            font-weight: 800;
            color: #667eea;        
        }

        .custom-nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
		.custom-nav-links li {

		}
        

        .custom-nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .cart-icon {
        	font-size: xx-large !important;
        }
        
        .cart-count {
        	position: absolute;
        }

        .custom-nav-links a:hover {
            color: #667eea;
        }
        
        
        
		/* Burger Menu Styles */
		.burger-menu {
		    display: none;
		    flex-direction: column;
		    cursor: pointer;
		    z-index: 102;
		    padding: 10px;
		}
		
		.burger-menu span {
		    width: 28px;
		    height: 3px;
		    background-color: #333;
		    margin: 3px 0;
		    transition: all 0.3s ease;
		    border-radius: 3px;
		}
		
		.burger-menu.active span:nth-child(1) {
		    transform: rotate(-45deg) translate(-6px, 6px);
		}
		
		.burger-menu.active span:nth-child(2) {
		    opacity: 0;
		}
		
		.burger-menu.active span:nth-child(3) {
		    transform: rotate(45deg) translate(-6px, -6px);
		}
		
		/* Menu Overlay */
		.menu-overlay {
		    display: none;
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100vh;
		    background: rgba(0, 0, 0, 0.5);
		    z-index: 50;
		    transition: opacity 0.3s ease;
		}
		
		.menu-overlay.active {
		    display: block;
		}        
        

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: white;
        }
        
        
        /*Mobile Responsive*/
        @media (max-width: 1200px) 
        {
		    .logo span {
		        font-size: 1.2rem;
		        font-weight: 600;        
		    }
		    
		    .logo img {
		        height: 80px;
		    }
		
		    /* Show burger menu on mobile */
		    .burger-menu {
		        display: flex;
		    }
		
		    /* Mobile navigation styles */
			.custom-nav-links {
			    position: fixed;
			    top: 0;
			    right: -100%;
			    height: 100vh;
			    width: 70%;
			    max-width: 300px;
			    background: rgba(255, 255, 255, 0.98);
			    backdrop-filter: blur(20px);
			    flex-direction: column;
			    padding: 100px 2rem 2rem;
			    gap: 1.5rem;
			    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
			    transition: right 0.4s ease;
			    z-index: 101;  /* This is already correct */
			    overflow-y: auto;
			}
		    .custom-nav-links.active {
		        right: 0;
		    }
		
		    .custom-nav-links li {
		        opacity: 0;
		        transform: translateX(50px);
		    }
		
		    /* Automatic staggered animation for any number of items */
		    .custom-nav-links.active li {
		        animation: slideInItem 0.3s ease forwards;
		        display: ruby;
		    }
		
		    @keyframes slideInItem {
		        to {
		            opacity: 1;
		            transform: translateX(0);
		        }
		    }
		
		    .custom-nav-links a {
		        font-size: 1.1rem;
		        padding: 0.5rem 0;
		        display: block;
		    }		
		}