/* ==========================================================================
   Designer Card Styles
   ========================================================================== */
.designer-card {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06) !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.designer-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05) !important;
}

.designer-banner {
    height: 120px;
    background: linear-gradient(90deg, oklch(55% .25 280), oklch(65% .26 340));
    border-bottom: 1px solid #f1f5f9;
}

.designer-avatar-wrapper {
    margin-top: -55px;
    margin-bottom: 12px;
}
.designer-avatar {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    object-fit: cover;
    background-color: #fff;
}

.designer-name {
    font-size: 0.875rem !important; /* text-sm (14px) to match sidebar */
    font-weight: 600 !important;
    color: #111827 !important;
    margin-bottom: 4px !important;
}
.designer-location {
    font-size: 0.75rem !important; /* text-xs (12px) to match sidebar */
    color: #6b7280 !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.designer-stats {
    display: flex !important;
    justify-content: center !important;
    border-top: 1px solid #f3f4f6 !important;
    margin-top: 10px !important;
    padding-top: 20px !important;
}
.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 5px;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e7eb;
}
.stat-value {
    display: block;
    font-size: 0.875rem !important; /* text-sm */
    font-weight: 700 !important;
    color: #111827 !important;
}
.stat-label {
    display: block;
    font-size: 0.75rem !important; /* text-xs */
    color: #6b7280 !important;
    margin-top: 2px;
}

.designer-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 24px !important;
    padding: 0 10px !important;
}

.btn-follow {
    background-color: var(--pink) !important;
    color: #ffffff !important;
    border: none !important;
    height: 44px !important;
    border-radius: 22px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
}
.btn-follow:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
}

.btn-message {
    background-color: #f8faff !important;
    color: var(--pink) !important;
    border: 1px solid var(--pink) !important;
    height: 44px !important;
    border-radius: 22px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.btn-message:hover {
    background-color: var(--pink-light) !important;
    transform: scale(1.02) !important;
}

/* ==========================================================================
   Designer Skeleton Styles
   ========================================================================== */
@keyframes designer-shimmer {
    0% { background-position: -800px 0 }
    100% { background-position: 800px 0 }
}
.designer-skeleton .skeleton-header, 
.designer-skeleton .skeleton-avatar, 
.designer-skeleton .skeleton-line {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    display: block;
    position: relative;
    animation: designer-shimmer 1.5s linear infinite;
    border-radius: 4px;
}
.designer-skeleton .skeleton-header {
    height: 120px;
    border-radius: 12px 12px 0 0;
}
.designer-skeleton .skeleton-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50% !important;
    margin-top: -55px;
    margin-bottom: 16px;
    border: 4px solid #fff;
}
.name-line { width: 60%; height: 20px; }
.location-line { width: 40%; height: 14px; }
.stat-box { width: 25%; height: 35px; }
.button-line { width: 90%; height: 44px; }
