    /* Sidebar */
    .sidebar {
        flex: 0 0 220px;
        background: #000000;
        border-radius: 1rem;
        padding: 2rem 1rem;
        color: #FDA800;
        height: fit-content;
        position: sticky;
        top: 1rem;
        align-self: flex-start;
        box-shadow: 0 8px 24px rgb(0 0 0 / 0.5);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .sidebar h4 {
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #FDA800;
        text-align: center;
        letter-spacing: 1.2px;
    }

    .sidebar .nav-links {
        display: flex;
        flex-direction: column;
    }

    .sidebar .nav-link {
        color: #FDA800;
        font-weight: 600;
        margin-bottom: 1rem;
        padding: 0.6rem 1rem;
        border-radius: 0.75rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        text-decoration: none;
    }

    .sidebar .nav-link:hover,
    .sidebar .nav-link.active {
        background-color: #FDA800;
        color: #000000;
        text-decoration: none;
    }

    .sidebar .nav-link svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .sidebar .logout-link {
        border-top: 1px solid rgba(253, 168, 0, 0.4);
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .wrapper {
        display: flex;
        flex: 1;
        padding-top: 1rem;
        gap: 2rem;
        max-width: 1250px;
        margin: 0 auto;
        width: 100%;
    }

    /* Main content */
    .main-content {
        flex: 1;
        background-color: #ffffff;
        border-radius: 1rem;
        padding: 2rem 2.5rem;
        box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
    }

    .main-content a {
        text-decoration: none;
        color: #000000;
    }

    .profile-header {
        background: linear-gradient(90deg, #FDA800, #b36b00);
        color: black;
        padding: 2rem 1rem 3rem;
        border-radius: 1rem 1rem 0 0;
        text-align: center;
        position: relative;
        overflow: visible;
    }

    .profile-header .profile-img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 5px solid black;
        object-fit: cover;
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
    }

    .profile-info {
        margin-top: 40px;
        text-align: center;
    }

    .profile-info h2 {
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .profile-info p {
        font-size: 1.1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }

    .btn-edit-profile {
        margin-top: 1rem;
        background-color: #FDA800;
        border: none;
        color: black;
        font-weight: 600;
    }

    .btn-edit-profile:hover {
        background-color: #cc8600;
        color: black;
    }

    .section-title {
        border-bottom: 2px solid #FDA800;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        color: #b36b00;
    }

    .order-card {
        box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background-color: #fff;
        transition: box-shadow 0.3s ease;
    }

    .order-card:hover {
        box-shadow: 0 8px 16px rgb(0 0 0 / 0.15);
    }

    .order-header {
        font-weight: 600;
        color: #FDA800;
    }

    .order-status {
        font-weight: 600;
        color: #198754;
    }

    .order-status.pending {
        color: #e0a800;
    }

    .address-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .wrapper {
            flex-direction: column;
            padding: 1rem;
        }

        .sidebar {
            flex: 1 1 auto;
            width: 100%;
            position: relative;
            top: 0;
            margin-bottom: 1.5rem;
            border-radius: 1rem;
        }

        .main-content {
            padding: 1.5rem 1.5rem 2rem;
        }
    }


    /* ----------------change password---------------------- */
    .change-password-card {
        background: white;
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
        max-width: 420px;
        width: 100%;
    }

    h2 {
        color: #FDA800;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #343a40;
    }

    input.form-control {
        border-radius: 0.5rem;
        border: 1.5px solid #ced4da;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    input.form-control:focus, select.form-select:focus {
        border-color: #FDA800;
        box-shadow: 0 0 8px #fcae2f;
        outline: none;
    }

    .btn-change {
        background-color: #FDA800;
        border: none;
        color: black;
        font-weight: 600;
        border-radius: 0.7rem;
        width: 100%;
        padding: 0.65rem;
        margin-top: 1.5rem;
        transition: background-color 0.3s ease;
    }

    .btn-change:hover {
        background-color: #cc8600;
        color: black;
    }

    .form-text {
        font-size: 0.875rem;
        color: #6c757d;
    }

    @media (max-width: 480px) {
        .change-password-card {
            padding: 2rem 1.5rem;
        }
    }

    h1.page-title {
        color: #FDA800;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .order-number {
        font-weight: 700;
        font-size: 1.5rem;
        color: #343a40;
    }

    .order-status {
        font-weight: 700;
        font-size: 1.1rem;
        padding: 0.3rem 0.9rem;
        border-radius: 20px;
        color: #198754;
        background-color: #d4edda;
    }

    .order-status.pending {
        color: #856404;
        background-color: #fff3cd;
    }

    .order-status.cancelled {
        color: #721c24;
        background-color: #f8d7da;
    }

    .order-date {
        color: #6c757d;
        margin-bottom: 2rem;
    }

    .items-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 1rem;
        margin-bottom: 2rem;
    }

    .items-table th,
    .items-table td {
        padding: 0.75rem 1rem;
        vertical-align: middle;
    }

    .items-table th {
        text-align: left;
        border-bottom: 2px solid #FDA800;
        color: #FDA800;
        font-weight: 700;
    }

    .items-table tbody tr {
        background: #fefefe;
        border-radius: 0.75rem;
        box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
        transition: box-shadow 0.3s ease;
    }

    .items-table tbody tr:hover {
        box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
    }

    .product-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 0.5rem;
        border: 1px solid #ddd;
    }

    .product-name {
        font-weight: 600;
        color: #343a40;
    }

    .table-text-center {
        text-align: center;
    }

    .order-details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .address-box,
    .summary-box {
        background: #fff;
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    }

    .address-box h4,
    .summary-box h4 {
        color: #FDA800;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .address-content p {
        margin: 0.25rem 0;
        color: #555;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: #333;
    }

    .summary-row.total {
        font-size: 1.2rem;
        font-weight: 700;
        color: #FDA800;
    }

    .btn-group {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
    }

    .btn-reorder,
    .btn-contact {
        border-radius: 0.7rem;
        padding: 0.65rem 1.5rem;
        font-weight: 600;
        color: black;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        background-color: #FDA800;
    }

    .btn-reorder:hover,
    .btn-contact:hover {
        background-color: #cc8600;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .wrapper {
            flex-direction: column;
            padding: 1rem;
        }

        .sidebar {
            flex: 1 1 auto;
            width: 100%;
            position: relative;
            top: 0;
            margin-bottom: 1.5rem;
            border-radius: 1rem;
        }

        .main-content {
            padding: 1.5rem 1.5rem 2rem;
            overflow-x: visible;
        }

        .items-table tbody tr {
            display: block;
            margin-bottom: 1rem;
        }

        .items-table thead {
            display: none;
        }

        .items-table tbody td {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #ddd;
        }

        .items-table tbody td::before {
            content: attr(data-label);
            font-weight: 600;
            color: #FDA800;
        }

        .btn-group {
            justify-content: center;
        }
    }

    .btn-save {
        background-color: #FDA800;
        border: none;
        color: black;
        font-weight: 600;
        border-radius: 0.7rem;
        width: 100%;
        padding: 0.65rem;
        margin-top: 1.5rem;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }

    .btn-save:hover {
        background-color: #cc8600;
        color: black;
    }