/* ---- PROFILE HERO ---- */
.profile-photo-wrap {
    position: relative;
    display: inline-block;
}
.profile-photo-wrap img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #F4D35E;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.profile-verified-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    background: var(--primary-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    color: #fff;
    font-size: 14px;
}

.profile-name {
    font-family: var(--font-header);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.profile-tagline {
    font-family: var(--font-handwritten);
    font-size: 22px;
    color: #F4D35E;
    margin-bottom: 18px;
}
.profile-meta-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.meta-chip {
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-subheading);
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}
.meta-chip i { margin-right: 6px; color: #F4D35E; }

.profile-stats-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.profile-stat {
    text-align: center;
}
.profile-stat .num {
    font-family: var(--font-header);
    font-size: 30px;
    font-weight: 800;
    color: #F4D35E;
    line-height: 1;
}
.profile-stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-subheading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ---- PROFILE BODY ---- */
.profile-body {
    background: var(--accent-cream);
    padding: 0 0 60px;
}

/* Overlapping card from hero */
.profile-quick-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}
.quick-info-item {
    text-align: center;
    padding: 16px;
    background: var(--accent-cream);
    border-radius: 12px;
}
.quick-info-item i {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 8px;
    display: block;
}
.quick-info-item .qi-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    font-family: var(--font-subheading);
    font-weight: 600;
    margin-bottom: 4px;
}
.quick-info-item .qi-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-text);
    font-family: var(--font-subheading);
}

/* About section */
.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-top: 30px;
}
.about-card h3 {
    font-family: var(--font-header);
    font-size: 26px;
    color: var(--navy-text);
    margin-bottom: 6px;
}
.about-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-terracotta), var(--hope-yellow));
    border-radius: 2px;
    margin-bottom: 20px;
}
.about-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.85;
}

/* Skills */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.skill-tag {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-subheading);
}
.skill-tag.primary { background: var(--urgent-coral); color: #ffffff; }
.skill-tag.secondary { background: #fff; color: var(--primary-teal); border: 2px solid var(--primary-teal); }
.skill-tag.accent { background: rgba(224,122,95,0.1); color: var(--primary-terracotta); border: 2px solid rgba(224,122,95,0.3); }

/* Goal/fund progress */
.goal-card {
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin-top: 30px;
    background-image: linear-gradient(135deg, #000000a1 0%, #a02008bd 100%), url(../images/banner-wide3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.goal-card h4 {
    font-family: var(--font-subheading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F4D35E;
    margin-bottom: 8px;
}
.goal-amount {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}
.goal-raised {
    font-family: var(--font-header);
    font-size: 32px;
    color: #fff;
    font-weight: 800;
}
.goal-total { font-size: 16px; color: rgba(255,255,255,0.6); }
.goal-bar {
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}
.goal-fill {
    height: 100%;
    background: linear-gradient(90deg, #F4D35E, #E07A5F);
    border-radius: 50px;
    width: 65%;
    animation: fillGoal 1.4s ease;
}
@keyframes fillGoal {
    from { width: 0; }
    to { width: 65%; }
}
.goal-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-family: var(--font-subheading);
}

/* ---- ARTWORK GRID ---- */
.artworks-section {
    margin-top: 40px;
}
.artworks-section h3 {
    font-family: var(--font-header);
    font-size: 28px;
    color: var(--navy-text);
    margin-bottom: 6px;
    text-align: left;
}
.artworks-section p {
    font-size: 14px;
    color: #aaa;
    font-family: var(--font-subheading);
    margin-bottom: 28px;
    text-align: left;
}

.artwork-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.artwork-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.14);
}
.artwork-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.artwork-card-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.artwork-card:hover .artwork-card-img-wrap img { transform: scale(1.07); }
.artwork-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--urgent-coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: var(--font-subheading);
}
.artwork-card-badge.sold-out { background: #ccc; color: #666; }

.artwork-card-body { padding: 20px; }
.artwork-card-title {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-text);
    margin-bottom: 12px;
}

.artwork-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.mini-stat {
    background: var(--accent-cream);
    border-radius: 8px;
    padding: 8px 10px;
}
.mini-stat .ms-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaa;
    font-family: var(--font-subheading);
    font-weight: 600;
    margin-bottom: 2px;
}
.mini-stat .ms-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-text);
    font-family: var(--font-subheading);
}
.mini-stat .ms-value.orange { color: var(--primary-terracotta); }
.mini-stat .ms-value.green { color: var(--success-green); }

.slot-mini-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 14px;
}
.slot-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-terracotta), var(--urgent-coral));
    border-radius: 50px;
}

.btn-buy-slot {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: #fff;
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.btn-buy-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224,122,95,0.4);
    color: #fff;
}
.btn-buy-slot.sold-out-btn {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}
.btn-buy-slot.sold-out-btn:hover { transform: none; box-shadow: none; }

/* Sidebar */
.sidebar-support-card {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 90px;
}
.sidebar-support-card h4 {
    font-family: var(--font-header);
    font-size: 24px;
    margin-bottom: 10px;
}
.sidebar-support-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
    line-height: 1.7;
}
.btn-support-sidebar {
    display: block;
    padding: 14px;
    background: #fff;
    color: var(--primary-terracotta);
    font-family: var(--font-subheading);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-support-sidebar:hover {
    background: var(--hope-yellow);
    color: #333;
    transform: translateY(-2px);
}
.sidebar-milestone {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    text-align: left;
}
.milestone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.milestone-item:last-child { border-bottom: none; }
.milestone-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.milestone-icon.done { background: rgba(129,178,154,0.2); color: var(--success-green); }
.milestone-icon.pending { background: rgba(244,211,94,0.2); color: #c9a800; }
.milestone-text { font-family: var(--font-subheading); font-size: 13px; color: var(--navy-text); font-weight: 600; }
.milestone-sub { font-size: 11px; color: #aaa; margin-top: 2px; }