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

        body {
            font-family: 'Inter', sans-serif;
            background-image: url(images/login-bg.jpg);
            color: #ffffff;
            overflow-x: hidden;
            background-repeat: no-repeat;
            background-size: 100%;
            background-color: rgb(62, 90, 130);
        }

        .liquid-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(130, 143, 153, 0.192);
            backdrop-filter: blur(20px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ba9786, #a09995);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #4ecdc4;
        }

        .nav-menu a.active {
            color: #4ecdc4;
        }

                #sidebarToggle {
        position: fixed;
        top: 20px;
        left: 2px;
        z-index: 1000;
        padding: 10px;
        background-color: #91919162;
        color: white;
        border: none;
        cursor: pointer;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 250px;
            background-color: #91919162;
            transition: left 0.3s ease;
        }

        .sidebar.open {
            left: 0;
        }

        .sidebar ul {
            list-style-type: none;
            margin: 0;
            padding: 20px;
            padding-left: 50px;
        }

        .sidebar a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px;
        }

        .sidebar a:hover {
            background-color: #555;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
            
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Profile Container */
        .profile-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            margin-top: 120px;
        }

        .profile-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .profile-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .profile-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 2rem;
        }

        .profile-sidebar {
            position: sticky;
            top: 140px;
            height: fit-content;
        }

        .profile-card {
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
            color: white;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .profile-email {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
        }

        .profile-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .profile-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .profile-btn {
            padding: 0.75rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
        }

        .profile-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffd16e77;
        }

        .profile-btn.primary {
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            border-color: transparent;
        }

        .profile-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .profile-content {
            padding: 1rem;

        }

        .content-section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ffd16e77;
            box-shadow: 0 0 0 3px #ffd16e4b;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .save-btn {
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .save-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.3); }
        .save-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        /* Tab navigation */
        .profile-tabs { padding: 0.5rem; margin-top: 1rem; display: flex; flex-direction: column; gap: 4px; }
        .tab-btn {
            display: flex; align-items: center; gap: 10px; width: 100%;
            padding: 12px 16px; border: none; border-radius: 10px;
            background: transparent; color: rgba(255,255,255,.7);
            font-size: 0.95rem; font-family: inherit; cursor: pointer;
            transition: all 0.2s;
        }
        .tab-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
        .tab-btn.active { background: rgba(255,255,255,.12); color: #fff; font-weight: 600; }
        .tab-btn i { width: 20px; text-align: center; }

        /* Tab content */
        .tab-content { display: none; }
        .tab-content.active { display: block; }

        /* Orders list */
        .orders-list { display: flex; flex-direction: column; gap: 1rem; }
        .order-card { padding: 1.25rem; border-radius: 14px; }
        .order-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
        .order-id { font-weight: 700; font-family: monospace; font-size: 0.95rem; }
        .order-date { color: rgba(255,255,255,.6); font-size: 0.85rem; }
        .order-status { padding: 4px 10px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }
        .status-pending { background: rgba(234,179,8,.2); color: #eab308; }
        .status-confirmed, .status-paid { background: rgba(34,197,94,.2); color: #22c55e; }
        .status-preparing { background: rgba(59,130,246,.2); color: #3b82f6; }
        .status-ready, .status-completed, .status-delivered { background: rgba(78,205,196,.2); color: #4ecdc4; }
        .status-cancelled { background: rgba(239,68,68,.2); color: #ef4444; }
        .order-items { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
        .order-item-name { background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 6px; font-size: 0.85rem; }
        .order-footer { display: flex; justify-content: space-between; align-items: center; }
        .order-total { font-size: 1.1rem; font-weight: 700; }
        .order-payment { font-size: 0.8rem; padding: 3px 8px; border-radius: 6px; }
        .empty-state { text-align: center; padding: 3rem 1rem; color: rgba(255,255,255,.5); }
        .empty-state i { font-size: 3rem; margin-bottom: 1rem; display: block; }
        .empty-state p { margin-bottom: 1rem; }
        .loading-text { text-align: center; color: rgba(255,255,255,.5); padding: 2rem; }
        .error-text { text-align: center; color: #ef4444; padding: 2rem; }

        /* Bonus section */
        .bonus-info { padding: 1.5rem; text-align: center; margin-bottom: 2rem; }
        .bonus-balance { margin-bottom: 1rem; }
        .bonus-balance-number { font-size: 3rem; font-weight: 700; background: linear-gradient(45deg, #ffd700, #ffaa00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .bonus-balance-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,.6); margin-top: 4px; }
        .bonus-rules { display: flex; flex-direction: column; gap: 6px; }
        .bonus-rules p { font-size: 0.9rem; color: rgba(255,255,255,.7); }
        .bonus-rules i { color: #ffd700; margin-right: 6px; }
        .section-subtitle { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 1rem; color: rgba(255,255,255,.9); }
        .bonus-history { display: flex; flex-direction: column; gap: 8px; }
        .bonus-tx { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,.06); border-radius: 10px; }
        .bonus-tx-info { display: flex; flex-direction: column; gap: 2px; }
        .bonus-tx-desc { font-size: 0.9rem; }
        .bonus-tx-date { font-size: 0.8rem; color: rgba(255,255,255,.5); }
        .bonus-tx-amount { font-weight: 700; font-size: 1.1rem; }
        .bonus-tx-amount.positive { color: #22c55e; }
        .bonus-tx-amount.negative { color: #ef4444; }

        /* Settings */
        .settings-grid { display: flex; flex-direction: column; gap: 12px; }
        .setting-item {
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 18px; background: rgba(255,255,255,.06); border-radius: 12px;
            cursor: pointer; transition: background 0.2s;
        }
        .setting-item:hover { background: rgba(255,255,255,.1); }
        .setting-item span:first-child { font-size: 0.95rem; }
        .setting-item span:first-child i { margin-right: 10px; width: 20px; text-align: center; color: rgba(255,255,255,.5); }
        .toggle-input { display: none; }
        .toggle-slider {
            width: 44px; height: 24px; background: rgba(255,255,255,.15); border-radius: 12px;
            position: relative; transition: background 0.3s; flex-shrink: 0;
        }
        .toggle-slider::after {
            content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
            top: 3px; left: 3px; background: #fff; transition: transform 0.3s;
        }
        .toggle-input:checked + .toggle-slider { background: #4ecdc4; }
        .toggle-input:checked + .toggle-slider::after { transform: translateX(20px); }

        /* Responsive Design */
        @media (max-width: 768px) {

            section h3 {
                font-size: 25px;
            }

            .profile-grid {
                grid-template-columns: 1fr;
            }
            
            .profile-sidebar {
                position: static;
            }
            
            .profile-title {
                font-size: 2.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            .nav-menu {display: none;}
            .sidebar {display: none;}
            #sidebarToggle {display: none;}
            .btn-primary {display: block;}
        }
        @media (max-width: 767px) {
            body {
                background-image: url(images/login-bg-mob.jpg);
            }
            .nav-menu {display: none;}
            .sidebar {display: block;}
            #sidebarToggle {display: block;}
            .btn-primary {display: none;}
        }
            @media (min-width: 767px) {
                .sidebar {display: none;}
                #sidebarToggle {display: none;}
                .btn-primary {display: block;}  
            }