
    .service-sidebar-single-services .title h1 {
        color: var(--headings-color);
        margin-bottom: 30px;
        font-weight: 700;
    }

    .service-sidebar-single-services ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-sidebar-single-services ul li {
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .service-sidebar-single-services ul li:last-child {
        border-bottom: none;
    }

    .service-sidebar-single-services ul li a {
        display: block;
        padding: 15px 20px;
        color: var(--link-color);
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 5px;
        position: relative;
    }

    /* .service-sidebar-single-services ul li.current a,
    .service-sidebar-single-services ul li a:hover {
        background: var(--bg-theme-color1);
        color: var(--text-color-bg-theme-color1);
        transform: translateX(5px);
    } */

    .service-sidebar-single-services ul li a i {
        float: right;
        margin-top: 3px;
    }

    .services-details__content {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 40px;
    }

    .profile-section {
        display: none;
    }

    .profile-section.active {
        display: block;
    }

    /* .theme-btn {
        background: var(--bg-theme-color1);
        color: var(--text-color-bg-theme-color1);
        border: 2px solid var(--border-theme-color1);
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        cursor: pointer;
        font-weight: 600;
    }

    .theme-btn:hover {
        background: transparent;
        color: var(--theme-color1);
    } */

    /* .btn-style-one {
        text-transform: uppercase;
        letter-spacing: 1px;
    } */

    .form-control {
        border: 2px solid #e8e8e8;
        border-radius: 5px;
        padding: 12px 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--theme-color1);
        box-shadow: 0 0 0 0.2rem rgba(67, 170, 92, 0.25);
        outline: none;
    }

    .order-card {
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .order-card:hover {
        border-color: var(--theme-color1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .order-status {
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .status-pending {
        background: #fff3cd;
        color: #856404;
    }

    .status-processing {
        background: #d1ecf1;
        color: #0c5460;
    }

    .status-shipped {
        background: #d4edda;
        color: #155724;
    }

    .status-delivered {
        background: var(--bg-theme-color1);
        color: var(--text-color-bg-theme-color1);
    }

    .status-cancelled {
        background: #f8d7da;
        color: #721c24;
    }

    .profile-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid #e8e8e8;
    }

    .profile-avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 4px solid var(--theme-color1);
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-theme-color1);
        color: var(--text-color-bg-theme-color1);
        font-size: 48px;
    }

    .order-item {
        display: flex;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .order-item:last-child {
        border-bottom: none;
    }

    .order-item img {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        margin-right: 15px;
        object-fit: cover;
    }

    .alert {
        border-radius: 10px;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .alert-success {
        background: linear-gradient(45deg, var(--bg-theme-color1), #5bc073);
        color: white;
    }

    .profile-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-card {
        background: linear-gradient(45deg, var(--bg-theme-color1), #5bc073);
        color: white;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 14px;
        opacity: 0.9;
    }
