/* --- Profile Page Specific Styles (from customer/profile.html and uprofile.html) --- */
.profile-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: none;
}
.profile-header-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--violet-main) 100%);
    height: 120px;
    border-radius: 1.25rem 1.25rem 0 0;
}
.profile-pic-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: -65px auto 20px auto;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.info-item {
    color: #64748B;
}
.info-item i {
    color: var(--violet-main);
}

/* --- User Profile (uprofile.html) Specific Styles --- */
.profile-header {
    background: linear-gradient(135deg, #0F172A 0%, #3B0764 100%);
    padding: 5rem 0;
    color: white;
    border-bottom: 4px solid var(--violet-main);
}
.profile-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid var(--violet-main);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    object-fit: cover;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--violet-main);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}
.section-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
}
.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #F8FAFC;
    height: 100%;
}
.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.1);
    border-color: var(--violet-main);
    background: #fff;
}
.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--violet-main);
}

/* --- Order Detail Page Styles (from customer/orderdetail.html) --- */
.order-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: none;
    margin-bottom: 1.5rem;
}
.order-header {
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.info-label {
    font-weight: 600;
    color: #64748B;
}
.product-image {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}