/* ============================================
   InkedBooking Marketplace Styles
   Registration, Gallery, Profile, Search, i18n
   ============================================ */

/* ── Language Switcher ── */
.inked-lang-switcher {
    position: relative;
    z-index: 100;
}

.inked-lang-switcher .lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.inked-lang-switcher .lang-current:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(201, 168, 76, 0.5);
}

.inked-lang-switcher .lang-flag {
    font-size: 1.1rem;
}

.inked-lang-switcher .lang-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.inked-lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.inked-lang-switcher .lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 160px;
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.inked-lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #ccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
    font-size: 0.9rem;
}

.lang-dropdown .lang-option:hover {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
}

/* Inline lang switcher */
.inked-lang-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.inked-lang-inline a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.inked-lang-inline a:hover {
    color: #c9a84c;
}

.inked-lang-inline .lang-active {
    color: #c9a84c;
    font-weight: 600;
}

.inked-lang-inline .lang-sep {
    color: #444;
}

/* ── Registration Wizard ── */
.inked-register-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.register-section {
    padding: 120px 0 60px;
}

.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.register-header .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}

.register-header .section-subtitle {
    color: #999;
    font-size: 1.1rem;
}

.register-wizard {
    max-width: 640px;
    margin: 0 auto;
}

/* Specialty Tags */
.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-checkbox input {
    display: none;
}

.tag-checkbox .tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: #ccc;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.tag-checkbox .tag:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: #e0d0a0;
}

.tag-checkbox input:checked + .tag {
    background: rgba(201, 168, 76, 0.2);
    border-color: #c9a84c;
    color: #c9a84c;
    font-weight: 500;
}

/* Instagram URL Input */
.ig-post-input {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ig-post-input:last-of-type {
    border-bottom: none;
}

.ig-input-row {
    display: flex;
    gap: 8px;
}

.ig-url-input {
    flex: 1;
}

.ig-preview-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.ig-preview {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ig-preview img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ig-preview .ig-preview-loading {
    text-align: center;
    padding: 24px;
    color: #888;
}

.ig-preview .ig-preview-error {
    text-align: center;
    padding: 16px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Success message */
.success-message {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #c9a84c;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.success-detail {
    color: #888 !important;
    font-size: 0.9rem;
    max-width: 480px;
    margin: 0 auto 2rem !important;
}

/* ── Gallery Page ── */
.inked-gallery-page {
    background: #0a0a0a;
}

.gallery-hero {
    padding: 120px 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
}

.gallery-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Filters */
.gallery-filters {
    max-width: 900px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-search {
    flex: 1;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #c9a84c;
}

.search-input::placeholder {
    color: #666;
}

.filter-dropdowns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 150px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.filter-select:focus {
    outline: none;
    border-color: #c9a84c;
}

.filter-select option {
    background: #1a1a1a;
    color: #fff;
}

/* Artists Grid */
.gallery-grid-section {
    padding: 2rem 0 4rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.artist-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .card-overlay {
    opacity: 1;
}

.artist-card-info {
    padding: 16px;
}

.artist-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 4px;
}

.artist-card-location {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.artist-card-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.specialty-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    color: #c9a84c;
    font-size: 0.75rem;
    font-weight: 500;
}

.artist-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

.artist-rating {
    font-weight: 600;
    color: #e0d0a0;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 2.5rem;
}

/* Gallery CTA */
.gallery-cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}

.gallery-cta p {
    color: #999;
    margin-bottom: 1.5rem;
}

/* ── Artist Profile Page ── */
.inked-profile-page {
    background: #0a0a0a;
}

.navbar-transparent {
    background: transparent !important;
    position: absolute;
}

.profile-hero {
    position: relative;
    padding-top: 0;
}

.profile-cover {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.profile-cover-default {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 1) 100%);
}

.profile-header {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.profile-avatar {
    flex-shrink: 0;
}

.profile-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #c9a84c;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-info {
    flex: 1;
    min-width: 200px;
}

.profile-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.1;
}

.profile-location {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.profile-rating {
    margin-bottom: 12px;
}

.profile-rating .stars {
    font-weight: 600;
    color: #e0d0a0;
    margin-right: 6px;
}

.profile-rating .review-count {
    color: #888;
    font-size: 0.9rem;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: flex-end;
}

/* Profile Content */
.profile-content {
    padding: 3rem 0 4rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
}

.section-title-sm {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #c9a84c;
    margin-bottom: 1.5rem;
}

/* Portfolio Masonry */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.media-badge {
    background: rgba(201, 168, 76, 0.9);
    color: #000;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ig-link {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.9;
}

.ig-link:hover {
    color: #c9a84c;
}

/* Sidebar */
.sidebar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #c9a84c;
    margin-bottom: 1rem;
}

.artist-bio {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar-stats {
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #888;
}

.stat-value {
    color: #e0d0a0;
    font-weight: 500;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-stars {
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.8rem;
}

.review-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.review-author {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 168, 76, 0.3);
}

.lightbox-footer {
    margin-top: 16px;
}

/* ── Shared Utility Styles ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
}

.btn-small {
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
}

.no-content {
    color: #666;
    text-align: center;
    padding: 3rem;
    font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -60px;
    }

    .profile-avatar img {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-tags {
        justify-content: center;
    }

    .profile-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .filter-row {
        flex-direction: column;
    }

    .filter-dropdowns {
        width: 100%;
    }

    .filter-select {
        flex: 1;
        min-width: auto;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .register-header .section-title {
        font-size: 2rem;
    }

    .ig-input-row {
        flex-direction: column;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .specialty-tags {
        gap: 6px;
    }

    .tag-checkbox .tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════
   PROJECT FORM & ARTIST DASHBOARD (v5)
   ═══════════════════════════════════════════ */

/* ── Project Form Container ── */
.inked-project-page { background: #0a0a0a; min-height: 100vh; color: #eee; font-family: 'Inter', sans-serif; }
.inked-project-container { max-width: 640px; margin: 0 auto; padding: 40px 20px; }
.inked-project-header { text-align: center; margin-bottom: 2rem; }
.inked-logo-small { height: 32px; margin-bottom: 16px; }
.inked-project-title { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: #c9a84c; margin: 0 0 6px; }
.inked-project-subtitle { color: #999; font-size: 0.95rem; margin: 0; }

/* Wizard Steps */
.inked-wizard-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 2rem; }
.inked-wizard-step { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #555; transition: color 0.3s; }
.inked-wizard-step span { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); font-weight: 600; font-size: 0.8rem; transition: all 0.3s; }
.inked-wizard-step.active { color: #c9a84c; }
.inked-wizard-step.active span { background: rgba(201,168,76,0.2); border-color: #c9a84c; color: #c9a84c; }

/* Form Steps */
.inked-form-step { display: none; animation: fadeIn 0.3s ease; }
.inked-form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Form Groups */
.inked-form-group { margin-bottom: 1.5rem; }
.inked-form-group label { display: block; margin-bottom: 6px; color: #ccc; font-size: 0.9rem; font-weight: 500; }
.inked-form-group textarea,
.inked-form-group input[type="text"],
.inked-form-group input[type="email"],
.inked-form-group input[type="tel"],
.inked-form-group input[type="number"],
.inked-form-group select {
    width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #fff; font-size: 0.95rem; transition: border-color 0.2s; box-sizing: border-box;
}
.inked-form-group textarea:focus, .inked-form-group input:focus, .inked-form-group select:focus { outline: none; border-color: #c9a84c; }
.inked-form-group textarea::placeholder, .inked-form-group input::placeholder { color: #555; }
.inked-form-group select option { background: #1a1a1a; }
.inked-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inked-hint { color: #777; font-size: 0.8rem; margin-top: 4px; }
.inked-error { border-color: #e74c3c !important; }

/* Style Chips */
.inked-style-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.inked-style-chip { cursor: pointer; }
.inked-style-chip input { display: none; }
.inked-style-chip span { display: inline-block; padding: 8px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; color: #ccc; font-size: 0.85rem; transition: all 0.2s; user-select: none; }
.inked-style-chip:hover span { border-color: rgba(201,168,76,0.4); color: #e0d0a0; }
.inked-style-chip input:checked + span { background: rgba(201,168,76,0.2); border-color: #c9a84c; color: #c9a84c; font-weight: 500; }

/* Budget Input */
.inked-budget-input { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.inked-currency-symbol { padding: 12px 12px 12px 16px; color: #c9a84c; font-weight: 600; font-size: 1rem; }
.inked-budget-input input { border: none !important; background: transparent !important; padding-left: 0 !important; }

/* Urgency */
.inked-urgency-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.inked-radio-card { cursor: pointer; }
.inked-radio-card input { display: none; }
.inked-radio-card span { display: block; padding: 12px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #ccc; text-align: center; transition: all 0.2s; font-size: 0.9rem; }
.inked-radio-card:hover span { border-color: rgba(201,168,76,0.3); }
.inked-radio-card input:checked + span { background: rgba(201,168,76,0.15); border-color: #c9a84c; color: #c9a84c; }

/* File Upload */
.inked-file-upload { position: relative; }
.inked-file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.inked-file-label { padding: 24px; border: 2px dashed rgba(255,255,255,0.1); border-radius: 12px; text-align: center; color: #888; font-size: 0.9rem; transition: border-color 0.2s; }
.inked-file-upload:hover .inked-file-label { border-color: rgba(201,168,76,0.4); }
.inked-file-preview { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.inked-ref-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }

/* Checkbox */
.inked-checkbox { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 0.9rem; cursor: pointer; margin: 16px 0; }
.inked-checkbox input { accent-color: #c9a84c; width: 18px; height: 18px; }

/* Buttons */
.inked-btn-primary { display: inline-block; width: 100%; padding: 14px 32px; background: linear-gradient(135deg, #c9a84c, #a88a3a); border: none; border-radius: 10px; color: #000; font-weight: 600; font-size: 1rem; cursor: pointer; text-align: center; transition: all 0.2s; margin-top: 8px; }
.inked-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.inked-btn-secondary { display: inline-block; padding: 14px 32px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #ccc; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; }
.inked-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.inked-form-actions { display: flex; gap: 12px; margin-top: 1.5rem; }
.inked-form-actions .inked-btn-primary { flex: 2; }
.inked-form-actions .inked-btn-secondary { flex: 1; }

/* Deposit Box */
.inked-deposit-box { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 14px; padding: 24px; margin: 1.5rem 0; }
.inked-deposit-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.inked-deposit-label { color: #c9a84c; font-weight: 600; font-size: 1rem; }
.inked-deposit-amount { color: #c9a84c; font-family: 'Oswald', sans-serif; font-size: 1.6rem; }
.inked-deposit-detail { display: flex; justify-content: space-between; color: #888; font-size: 0.85rem; padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.15); }
.inked-deposit-note { color: #aaa; font-size: 0.85rem; margin-top: 12px; line-height: 1.5; }
.inked-deposit-guarantee { color: #4CAF50; font-size: 0.85rem; margin-top: 4px; }
.inked-btn-pay { display: block; width: 100%; padding: 16px; background: linear-gradient(135deg, #4CAF50, #388E3C); border: none; border-radius: 10px; color: #fff; font-weight: 600; font-size: 1.05rem; cursor: pointer; transition: all 0.2s; }
.inked-btn-pay:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(76,175,80,0.3); }
.inked-btn-pay:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Summary Card */
.inked-summary-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; margin-bottom: 1rem; }
.inked-summary-row { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: #ccc; font-size: 0.9rem; }
.inked-summary-row:last-child { border-bottom: none; }

/* Success */
.inked-success-card { text-align: center; padding: 60px 20px; }
.inked-success-icon { font-size: 4rem; margin-bottom: 16px; }
.inked-success-card h1 { font-family: 'Oswald', sans-serif; color: #c9a84c; font-size: 2rem; margin-bottom: 12px; }
.inked-success-card p { color: #ccc; font-size: 1rem; margin-bottom: 8px; }
.inked-check-email { color: #4CAF50 !important; font-weight: 500; }

/* ── Artist Dashboard ── */
.inked-dashboard-page { background: #0a0a0a; min-height: 100vh; color: #eee; font-family: 'Inter', sans-serif; margin: 0; }
.inked-dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

/* Sidebar */
.inked-dash-sidebar { background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.06); padding: 24px 16px; display: flex; flex-direction: column; gap: 20px; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.inked-dash-logo img { height: 28px; }
.inked-dash-user { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,255,255,0.04); border-radius: 12px; }
.inked-dash-avatar img { width: 40px; height: 40px; border-radius: 50%; }
.inked-dash-user-info strong { display: block; color: #fff; font-size: 0.9rem; }
.inked-dash-user-info small { color: #888; font-size: 0.75rem; }

/* Nav */
.inked-dash-nav { display: flex; flex-direction: column; gap: 4px; }
.inked-dash-nav-item { display: block; padding: 10px 14px; color: #999; text-decoration: none; border-radius: 10px; font-size: 0.9rem; transition: all 0.2s; }
.inked-dash-nav-item:hover { background: rgba(255,255,255,0.06); color: #eee; }
.inked-dash-nav-item.active { background: rgba(201,168,76,0.12); color: #c9a84c; font-weight: 500; }

/* Credits Box */
.inked-credits-box { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); border: 1px solid rgba(201,168,76,0.2); border-radius: 14px; padding: 20px; margin-top: auto; }
.inked-credits-count { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.inked-credits-num { font-family: 'Oswald', sans-serif; font-size: 2rem; color: #c9a84c; }
.inked-credits-label { color: #999; font-size: 0.85rem; }
.inked-unlock-section h4 { color: #c9a84c; font-size: 0.85rem; margin: 0 0 10px; }
.inked-unlock-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #ccc; font-size: 0.8rem; cursor: pointer; margin-bottom: 6px; transition: all 0.2s; }
.inked-unlock-btn:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.08); }
.inked-unlock-reward { color: #4CAF50; font-weight: 600; }

/* Main Content */
.inked-dash-main { padding: 32px; overflow-y: auto; }
.inked-dash-tab { display: none; }
.inked-dash-tab.active { display: block; }
.inked-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.inked-dash-header h2 { font-family: 'Oswald', sans-serif; color: #c9a84c; font-size: 1.5rem; margin: 0; }
.inked-dash-filters { display: flex; gap: 10px; }
.inked-filter-select { padding: 10px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 0.85rem; cursor: pointer; min-width: 140px; }
.inked-filter-select option { background: #1a1a1a; }

/* Project Cards */
.inked-projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.inked-project-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; transition: all 0.2s; }
.inked-project-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.inked-pcard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.inked-pcard-style { background: rgba(201,168,76,0.15); color: #c9a84c; padding: 4px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }
.inked-pcard-budget { font-family: 'Oswald', sans-serif; color: #4CAF50; font-size: 1.3rem; }
.inked-pcard-desc { color: #bbb; font-size: 0.9rem; line-height: 1.5; margin-bottom: 12px; }
.inked-pcard-meta { display: flex; gap: 14px; color: #888; font-size: 0.8rem; margin-bottom: 14px; flex-wrap: wrap; }
.inked-pcard-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.inked-pcard-urgency { color: #888; font-size: 0.8rem; }
.inked-pcard-applicants { color: #666; font-size: 0.8rem; }
.inked-btn-apply { padding: 8px 18px; background: linear-gradient(135deg, #c9a84c, #a88a3a); border: none; border-radius: 8px; color: #000; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.inked-btn-apply:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,0.3); }
.inked-btn-applied { padding: 8px 18px; background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.3); border-radius: 8px; color: #4CAF50; font-size: 0.85rem; cursor: default; }

/* Applications List */
.inked-app-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; margin-bottom: 8px; font-size: 0.9rem; }
.inked-app-style { color: #c9a84c; font-weight: 500; }
.inked-app-city { color: #888; }
.inked-app-budget { color: #4CAF50; font-weight: 500; }
.inked-app-status { text-align: right; }
.inked-status-success { border-color: rgba(76,175,80,0.3); }
.inked-status-fail { opacity: 0.5; }

/* Loading & Empty */
.inked-loading { text-align: center; padding: 40px; color: #888; }
.inked-empty { text-align: center; padding: 60px 20px; color: #666; font-size: 1rem; }

/* Load More */
.inked-load-more { text-align: center; margin-top: 24px; }

/* ── Dashboard Mobile ── */
@media (max-width: 768px) {
    .inked-dashboard-layout { grid-template-columns: 1fr; }
    .inked-dash-sidebar { position: fixed; bottom: 0; left: 0; right: 0; height: auto; flex-direction: row; padding: 8px 16px; z-index: 1000; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); background: #0a0a0a; }
    .inked-dash-logo, .inked-dash-user, .inked-credits-box { display: none; }
    .inked-dash-nav { flex-direction: row; gap: 0; width: 100%; }
    .inked-dash-nav-item { flex: 1; text-align: center; font-size: 0.75rem; padding: 8px 4px; }
    .inked-dash-main { padding: 16px 16px 80px; }
    .inked-projects-grid { grid-template-columns: 1fr; }
    .inked-dash-filters { width: 100%; }
    .inked-filter-select { flex: 1; min-width: 0; }
    .inked-app-row { grid-template-columns: 1fr 1fr; gap: 8px; }
}

@media (max-width: 480px) {
    .inked-form-row { grid-template-columns: 1fr; }
    .inked-urgency-options { grid-template-columns: 1fr; }
    .inked-wizard-steps { flex-wrap: wrap; }
    .inked-wizard-step { font-size: 0.7rem; }
}
