/* ============================================
   TEANBRIS STUDIO — Vendor Portal
   Premium Dark Theme — Glassmorphism
   ============================================ */

/* ============================================
   BASE / RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(188, 216, 255, 0.3) rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

*::-webkit-scrollbar-thumb {
    background: rgba(188, 216, 255, 0.25);
    border-radius: 999px;
}

/* ============================================
   VENDOR BODY
   ============================================ */
.vendor-body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(112, 156, 226, 0.08) 0%, transparent 34%),
        radial-gradient(circle at 88% 2%, rgba(158, 197, 255, 0.06) 0%, transparent 31%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #fff;
}

/* ============================================
   VENDOR LOGIN
   ============================================ */
.vendor-login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.vendor-login-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(160deg, #0c0d12 0%, #090a0f 50%, #0a0b10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.vendor-login-card .login-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.vendor-login-card .login-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.vendor-login-card .login-logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vendor-login-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

.vendor-login-card .login-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vendor-login-tabs {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    padding: 0.3rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.vendor-login-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.65rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s;
    font-weight: 400;
    text-align: center;
}

.vendor-login-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.vendor-login-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 500;
}

.vendor-form-group {
    margin-bottom: 1.15rem;
}

.vendor-form-group label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.45rem;
    font-weight: 400;
}

.vendor-form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.vendor-form-group input,
.vendor-form-group select,
.vendor-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    outline: none;
    transition: all 0.25s;
}

.vendor-form-group input::placeholder,
.vendor-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.vendor-form-group input:focus,
.vendor-form-group select:focus,
.vendor-form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.vendor-form-group select option {
    background: #111;
    color: #fff;
}

.vendor-login-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.vendor-login-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.1);
}

.vendor-login-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.vendor-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
}

.vendor-google-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.vendor-login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.vendor-login-divider::before,
.vendor-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.vendor-login-divider span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vendor-login-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    display: none;
    text-align: center;
}

.vendor-login-success {
    color: #34d399;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    display: none;
    text-align: center;
}

/* ============================================
   VENDOR NAVIGATION
   ============================================ */
.vendor-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.85rem 0;
}

.vendor-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vendor-nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-nav-left img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.vendor-nav-left h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

.vendor-nav-left .portal-badge {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-weight: 500;
}

.vendor-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-nav-link {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.vendor-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.vendor-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.vendor-nav-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.vendor-nav-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

.vendor-logout-btn {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}

.vendor-logout-btn:hover {
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}

/* ============================================
   VENDOR CONTENT
   ============================================ */
.vendor-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.vendor-page-header {
    margin-bottom: 2rem;
}

.vendor-page-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.vendor-page-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92rem;
}

/* ============================================
   DASHBOARD STATS
   ============================================ */
.vendor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.vendor-stat-card {
    background: rgba(16, 16, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.vendor-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(20, 20, 24, 0.7);
}

.vendor-stat-card .stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.vendor-stat-card .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.vendor-stat-card .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.vendor-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
}

.vendor-project-card {
    background: rgba(16, 16, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vendor-project-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vendor-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.3s;
}

.vendor-project-card:hover::before {
    opacity: 1;
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-card-top h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.project-status {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.project-status.active {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.project-status.upcoming {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.project-status.completed {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #94a3b8;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.project-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.project-detail-item .detail-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-detail-item .detail-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.project-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.project-lang-tag {
    font-size: 0.72rem;
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    letter-spacing: 0.02em;
}

.project-card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-join-project {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-join-project:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.btn-join-project:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-join-project.joined {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
}

.btn-view-details {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-view-details:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* ============================================
   JOIN PROJECT MODAL
   ============================================ */
.join-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.join-modal.active {
    opacity: 1;
    visibility: visible;
}

.join-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.join-modal-content {
    position: relative;
    width: 90%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #0c0d12 0%, #090a0f 50%, #0a0b10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transform: translateY(20px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.join-modal.active .join-modal-content {
    transform: translateY(0) scale(1);
}

.join-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s;
}

.join-modal-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.join-modal-header {
    margin-bottom: 1.75rem;
}

.join-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.join-modal-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}

/* Language Table */
.language-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(16, 16, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    margin: 1.25rem 0;
}

.language-table thead th {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.language-table tbody td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.language-table tbody tr:last-child td {
    border-bottom: none;
}

.language-table input[type="number"] {
    width: 80px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    outline: none;
    text-align: center;
}

.language-table input[type="number"]:focus {
    border-color: rgba(96, 165, 250, 0.4);
}

.language-table input[type="checkbox"] {
    accent-color: #60a5fa;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.join-submit-btn {
    width: 100%;
    padding: 0.95rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.join-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(96, 165, 250, 0.25);
}

.join-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   MY PROJECTS TABLE
   ============================================ */
.vendor-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(16, 16, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
}

.vendor-table thead th {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.vendor-table tbody td {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vendor-table tbody tr:last-child td {
    border-bottom: none;
}

.vendor-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Status badges */
.status-badge {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    font-weight: 500;
}

.status-badge.recording {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-badge.in-progress {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.status-badge.completed {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.status-badge.approved {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* ============================================
   SUBMIT WORK
   ============================================ */
.submit-work-card {
    background: rgba(16, 16, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem;
    max-width: 640px;
}

.submit-work-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.submit-btn {
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(96, 165, 250, 0.25);
}

/* ============================================
   VENDOR PROFILE
   ============================================ */
.vendor-profile-card {
    background: rgba(16, 16, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem;
    max-width: 600px;
}

.vendor-profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vendor-profile-card .profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.vendor-profile-card .profile-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.vendor-profile-card .profile-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.profile-detail-item .label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-detail-item .value {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Save profile */
.profile-save-btn {
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.profile-save-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.vendor-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.vendor-empty svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.12);
    margin-bottom: 1rem;
}

.vendor-empty h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
}

.vendor-empty p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Loading spinner */
.vendor-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.vendor-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: vendorSpin 0.8s linear infinite;
}

@keyframes vendorSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast notifications */
.vendor-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(16, 16, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    color: #fff;
    z-index: 10002;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    max-width: 360px;
}

.vendor-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.vendor-toast.success {
    border-left: 3px solid #34d399;
}

.vendor-toast.error {
    border-left: 3px solid #f87171;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .vendor-nav-inner {
        padding: 0 1rem;
    }

    .vendor-content {
        padding: 1.25rem;
    }

    .vendor-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vendor-projects-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .vendor-nav-link span {
        display: none;
    }

    .profile-detail-grid {
        grid-template-columns: 1fr;
    }

    .join-modal-content {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .vendor-stats {
        grid-template-columns: 1fr;
    }

    .vendor-page-header h2 {
        font-size: 1.3rem;
    }

    .join-modal-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
}