
    
        :root {
            --primary-color: #0c9b2e;
            --primary-hover: #0a8226;
            --secondary-color: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
            --border-color: #ddd;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --header-height: 70px;
            --navbar-height: 50px;
            --footer-height: 30px;
              --bg-white: #ffffff;
            --bg-gray: #f5f5f5;
            --border-color: #e0e0e0;
                --success-bg: #f0f9f1;
            --warning-bg: #fff8e6;
            --warning-color: #ff9800;
            
            
            
            
            
            
            --primary-dark: #087823;
            --primary-light: #e0f5e5;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --dark-gray: #444;
        }
        
        * {
           
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */

            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            padding-top: calc(var(--header-height) + var(--navbar-height));
            padding-bottom: var(--footer-height);
            min-height: 100vh;
            position: relative;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: white;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 10px 15px;
            padding-right: 40px;
            border: 1px solid var(--border-color);
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
            margin-left: 5px;

        }
        
        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(12, 155, 46, 0.2);
        }
        
        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .header-link {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            padding: 8px 8px;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .header-link:hover {
            background-color: var(--secondary-color);
        }
        
        .header-link i {
            font-size: 18px;
           
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
             padding: 8px 8px;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .profile-menu {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            right: 0;
            top: 40px;
            background-color: white;
            border-radius: 5px;
            box-shadow: var(--shadow);
            width: 200px;
            overflow: hidden;
            display: none;
            z-index: 100;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .dropdown-menu a:hover {
            background-color: var(--secondary-color);
        }
        
        .dropdown-menu a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* Category Navbar */
        .category-navbar {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            height: var(--navbar-height);
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 999;
            overflow-x: auto;
            white-space: nowrap;
            display: flex;
            align-items: center;
            padding: 0 15px;
        }
        
        .category-navbar::-webkit-scrollbar {
            height: 5px;
        }
        
        .category-navbar::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 5px;
        }
        
        .category-item {
            padding: 10px 15px;
            margin-right: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .category-item:hover, .category-item.active {
            background-color: var(--primary-color);
            color: white;
        }
    
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .btn:hover {
            background-color: var(--primary-hover);
        }
        
        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }
        
        .page-title {
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .category-section {
            margin-bottom: 30px;
        }
        
        .category-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 10px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .product-card {
            border:2px solid #d0fbda;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            
        }
        
        .product-card:hover {
         
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image-container {
                padding:auto 5px auto 5px;
            position: relative;
            width: 100%;
            padding-top: 95%;
            overflow: hidden;
            
           
        }
        
        .product-image {
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 2px 2px 0 2px;
        }
        
        .product-info {
            padding: 5px;
        }
        
        .product-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1px;
            color: var(--text-dark);
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .current-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .original-price {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-left: 8px;
        }
        
        .unit-selector {
            margin-bottom: 2px;
        }
        
        .unit-selector select {
            width: 100%;
            padding: 1px 1px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: white;
            font-size: 10px;
            cursor: pointer;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 3px;
        }
        
        .quantity-btn {
            width: 32px;
            height: 25px;
            background-color: #f0f0f0;
            border: 1px solid var(--border-color);
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
        }
        
        .quantity-btn:active {
            background-color: #e0e0e0;
        }
        
        .quantity-input {
            width: 50px;
            height: 25px;
            text-align: center;
            margin: 0 5px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 14px;
        }
        
        .min-order {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
              margin-top: 5px;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 10px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 7px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .add-to-cart:hover {
            background-color: var(--primary-hover);
        }
        
        /* Profile Pages */
        .profile-container {
            display: none;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .profile-container.show {
            display: block;
        }
        
        .profile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .profile-title {
            font-size: 22px;
            color: var(--primary-color);
        }
        
        .profile-form {
            margin-top: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .form-group {
            flex: 1;
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 14px;
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        /* Cart Added Animation */
        @keyframes cartAdded {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        .cart-animation {
            animation: cartAdded 0.5s ease;
        }
        
        /* Footer Styles */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: var(--footer-height);
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }
        
        .footer-content {
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
        }
        
        
        .footer-content .box{
            display:flex;
            
        }
        
        
        .footer-content .box a{
            color:#0c9b2e;
            flex-grow: 1;
            margin:0 10px ;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                height: auto;
                padding: 10px;
            }
            
            .logo {
                order: 1;
                margin-bottom: 10px;
            }
            
            .search-container {
                order: 2;
                width: 100%;
                max-width: 100%;
                margin: 10px 0;
            }
            
            .header-right {
                order: 3;
                margin-left: auto;
            }
            
            body {
                padding-top: calc(var(--header-height) + var(--navbar-height) + 50px);
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }
            
            .header-right {
                gap: 10px;
            }
            
            .category-item {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
          
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
                
            }
            
            .product-name {
                font-size: 14px;
                height: 36px;
            }
            
            .current-price {
                font-size: 16px;
            }
            
            .original-price {
                font-size: 12px;
            }
            
            .header-link span {
                display: none;
            }
            
            .header-link i {
                font-size: 20px;
            }
            
            .category-item {
                padding: 6px 10px;
                font-size: 12px;
            }
            
            .auth-box {
                padding: 20px;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
         /* Cart Slider Overlay */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Cart Slider */
        .cart-slider {
            position: fixed;
            top: 0;
            right: -450px;
            width: 400px;
            height: 100%;
            background-color: var(--bg-white);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-slider.active {
            right: 0;
        }

        /* Cart Header */
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .cart-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s;
        }

        .close-cart:hover {
            color: var(--primary-color);
        }

        /* Cart Items */
        .cart-items {
            flex-grow: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

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

        .item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .item-details {
            flex-grow: 1;
        }

        .item-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .item-price {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
        }

        .quantity-btn:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }

        .quantity-value {
            min-width: 20px;
            text-align: center;
        }

        .remove-item {
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s;
        }

        .remove-item:hover {
            color: #e74c3c;
        }

        /* Cart Footer */
        .cart-footer {
            padding: 20px;
            border-top: 1px solid var(--border-color);
            background-color: var(--bg-white);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .checkout-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .checkout-btn:hover {
            background-color: var(--primary-dark);
        }

        /* Empty Cart */
        .empty-cart {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 40px;
            text-align: center;
        }

        .empty-cart i {
            font-size: 50px;
            color: var(--border-color);
            margin-bottom: 20px;
        }

        .empty-cart p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .shop-btn {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .shop-btn:hover {
            background-color: var(--primary-dark);
        }

        /* Responsive Styles */
        @media (max-width: 500px) {
            .cart-slider {
                width: 100%;
                right: -100%;
            }
        }
        
          /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Menu Slider */
        .menu-slider {
            position: fixed;
            top: 0;
            right: -350px;
            width: 300px;
            height: 100%;
            background-color: var(--bg-white);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .menu-slider.active {
            right: 0;
        }

        /* Menu Header */
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            background-color: var(--primary-color);
            color: white;
        }

        .menu-title {
            font-size: 20px;
            font-weight: 600;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: white;
            transition: color 0.3s;
        }

        .close-menu:hover {
            opacity: 0.8;
        }

        /* User Profile Section */
        .user-profile {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 20px;
            font-weight: bold;
        }

        .user-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .user-info p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Menu Items */
        .menu-items {
            flex-grow: 1;
            overflow-y: auto;
            padding: 15px 0;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .menu-item:hover {
            background-color: var(--primary-light);
        }

        .menu-item i {
            width: 24px;
            text-align: center;
            color: var(--primary-color);
        }

        .menu-item span {
            font-size: 16px;
            color: var(--text-dark);
        }

        .menu-divider {
            height: 1px;
            background-color: var(--border-color);
            margin: 10px 20px;
        }

        /* Footer Section */
        .menu-footer {
            padding: 15px 20px;
            border-top: 1px solid var(--border-color);
        }

        .app-version {
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 400px) {
            .menu-slider {
                width: 280px;
                right: -280px;
            }
        }
        
        
        
         /* Demo Button to Trigger Popup */
        .demo-btn {
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .demo-btn:hover {
            background-color: var(--primary-dark);
        }

        /* Login Overlay */
        .login-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .login-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Login Popup */
        .login-popup {
            background-color: var(--bg-white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 400px;
            padding: 30px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .login-overlay.active .login-popup {
            transform: translateY(0);
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--bg-gray);
            border: none;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.3s;
        }

        .close-btn:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }

        /* Login Header */
        .login-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .login-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .login-subtitle {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Login Form */
        .login-form .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .password-container {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            cursor: pointer;
        }

        .forgot-password {
            display: block;
            text-align: right;
            font-size: 13px;
            color: var(--primary-color);
            margin-top: 5px;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .error-message {
            color: var(--error-color);
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        /* Login Footer */
        .login-footer {
            margin-top: 25px;
            text-align: center;
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .login-btn:hover {
            background-color: var(--primary-dark);
        }

        .signup-link {
            margin-top: 15px;
            font-size: 14px;
            color: var(--text-light);
        }

        .signup-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        /* Social Login */
        .social-login {
            margin: 20px 0;
            text-align: center;
            position: relative;
        }

        .social-login::before, .social-login::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid var(--border-color);
            margin: auto;
        }

        .social-login::before {
            margin-right: 10px;
        }

        .social-login::after {
            margin-left: 10px;
        }

        .social-text {
            display: inline-block;
            padding: 0 10px;
            color: var(--text-light);
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }

        /* Responsive Styles */
        @media (max-width: 480px) {
            .login-popup {
                max-width: 90%;
                padding: 25px 20px;
            }

            .login-title {
                font-size: 20px;
            }
        }
         /* Alert Message Styles */
        .alert {
            position: fixed;
            top: 20px;
            right: 20px;
            max-width: 400px;
            width: calc(100% - 40px);
            padding: 15px 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 10000;
        }

        .alert.active {
            transform: translateX(0);
        }

        .alert-success {
            background-color: var(--success-bg);
            border-left: 4px solid var(--primary-color);
            color: var(--primary-color);
        }

        .alert-warning {
            background-color: var(--warning-bg);
            border-left: 4px solid var(--warning-color);
            color: var(--warning-color);
        }

        .alert-icon {
            font-size: 24px;
        }

        .alert-content {
            flex: 1;
            text-align: left;
        }

        .alert-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .alert-message {
            font-size: 14px;
            line-height: 1.4;
        }

        .alert-close {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: inherit;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .alert-close:hover {
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 600px) {
          body{
                padding-top:120px;
            }
            .alert {
                top: 10px;
                right: 10px;
                width: calc(100% - 20px);
                padding: 12px 15px;
            }
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        a{
            
        
            text-decoration: none;
            color:white;
        }
        
        
        
        
        
         /* Settings Menu Slider */
        .settings-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .settings-menu {
            position: fixed;
            top: 0;
            right: -490px;
            width: 100%;
            max-width: 400px;
            height: 100%;
            background-color: var(--white);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .settings-header {
            padding: 20px;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .settings-header h2 {
            font-size: 1.5rem;
        }
        
        #close-btn2 {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .settings-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .settings-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .settings-item:last-child {
            border-bottom: none;
        }
        
        .settings-item h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        
        .settings-item h3 i {
            font-size: 20px;
        }
        
        .edit-btn {
            background-color: var(--primary-light);
            color: var(--primary-color);
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .edit-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .info-display {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .info-display p {
            margin-bottom: 8px;
        }
        
        .info-display strong {
            display: inline-block;
            width: 120px;
            color: var(--dark-gray);
        }
        
        .settings-form {
            display: none;
            margin-top: 15px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        
        .form-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .save-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            flex: 1;
            transition: background-color 0.3s;
        }
        
        .save-btn:hover {
            background-color: var(--primary-dark);
        }
        
        .cancel-btn {
            background-color: var(--light-gray);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            flex: 1;
            transition: background-color 0.3s;
        }
        
        .cancel-btn:hover {
            background-color: #ddd;
        }
        
        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* Responsive Design */
        @media (max-width: 500px) {
            .settings-menu {
                max-width: 100%;
            }
            
            .settings-header {
                padding: 15px;
            }
            
            .settings-content {
                padding: 15px;
            }
            
       
            .info-display strong {
                width: 90px;
                font-size: 14px;
            }
        }
        
        
        .picn{
            
            width: 60%;
        }
        .sps{
            
            display: flex;
        }
        .cpc{
            
            padding:auto;
            margin-top:auto;
            margin-bottom:auto;
        }
        .chk{
            
            margin-left:5px;
        }
        
        
        
         .banner-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            height: 150px;
        }
        
        .banner-slider {
            display: flex;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .banner-slide {
            min-width: 100%;
            position: relative;
        }
        
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 8px 15px;
            display: flex;
            align-items: center;
        }
        
        .banner-tag {
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: bold;
            margin-right: 8px;
        }
        
        .veg-tag {
            background-color: #4CAF50;
        }
        
        .nonveg-tag {
            background-color: #F44336;
        }
        
        .grocery-tag {
            background-color: #2196F3;
        }
        
        .banner-text {
            font-size: 12px;
        }
        
        .banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 5px;
        }
        
        .banner-btn {
            background-color: rgba(255, 255, 255, 0.7);
            color: #333;
            border: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-dots {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
        }
        
        .banner-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .banner-dot.active {
            background-color: white;
        }
        
        @media (max-width: 768px) {
            .banner-text {
                font-size: 10px;
            }
            
            .banner-tag {
                font-size: 8px;
                padding: 1px 6px;
            }
        }
        
        
        
        
        
        
        
        
        .ser{
            float: right;
        }
        
        
        
        
                /*new popup*/
        
        
        
          @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(12, 155, 46, 0.7); }
            70% { box-shadow: 0 0 0 30px rgba(12, 155, 46, 0); }
            100% { box-shadow: 0 0 0 0 rgba(12, 155, 46, 0); }
        }
            .popup {
            display: none;
            position: fixed;
            top:  400px;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
              animation: pulse 1s infinite;
            text-align: center;
            z-index: 10000;
            max-width: 95%;
            width: 450px;
            background-image: url('https://i.pinimg.com/736x/65/10/e6/6510e6ac20c28468053c14779523e486.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            
            min-height: 300px;
        }

        .popup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            z-index: 1;
        }

        .popup-content {
            position: relative;
            z-index: 2;
            
            min-height: 300px;
        }

        .popup h2 {
            color: #0c9b2e;
            margin-bottom: 20px;
            font-size: 30px;
            font-weight: 700;
        }

        .popup p {
            color: #333;
            margin-bottom: 25px;
            font-size: 20px;
            line-height: 1.5;
            font-weight: 600;
            color:#ff8000;
        }

        .popup button {
            background-color: #0c9b2e;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            
            
              position: absolute;
            top: 90%;
            left: 78%;
        }

        .popup button:hover {
            background-color: #098523;
        }

        .popup .attribution {
             position: absolute;
            top: 66%;
            left: 23%;
            font-size: 18px;
            color: #666;
            margin-top: 15px;
        }

        .popup .attribution a {
            font-style: italic;
            font-size: 18px;
            color: #0c9b2e;
            text-decoration: none;
             color:#ff8000;
             font-weight: 600;
        }

        .popup .attribution a:hover {
            text-decoration: underline;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .popup {
                width: 90%;
                padding: 20px;
            }

            .popup h2 {
                font-size: 22px;
            }

            .popup p {
                font-size: 16px;
            }

            .popup button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .popup .attribution {
                font-size: 10px;
            }
        }

        @media (max-width: 400px) {
            .popup h2 {
                font-size: 20px;
            }

            .popup p {
                font-size: 14px;
            }
        }
        
        #logoid{
            
            height: 24px;
            width: 24px;
            margin-right: 3px;
                        margin-top:0px;
            border-radius: 50px;
        }
        
