/* ----------------------------------------------------
 * E-CARD BY E-PORICHOY - PREMIUM VANILLA CSS SYSTEM
 * ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Fira+Code:wght@400;500&display=swap');

:root {
    /* =====================================================
     * FRESHLY SQUEEZED COLOR SCHEME (Figma Scheme #42)
     * Warm orange + amber + cream — vibrant and energetic
     * ===================================================== */

    /* Core palette */
    --color-bg-base:        #FFF8EE;
    --color-bg-surface:     #FFFFFF;
    --color-bg-input:       #FFF1D6;
    --color-text-primary:   #2D1A00;
    --color-text-secondary: #7A5C2E;
    --color-text-muted:     #B8924A;

    /* Brand colors */
    --color-primary:        #E8630A;
    --color-primary-hover:  #C4520A;
    --color-accent:         #FFB800;

    /* Borders & feedback */
    --color-border:         #FFD98A;
    --color-success:        #3D9970;
    --color-danger:         #D94F3D;

    /* Warm-tinted shadows */
    --shadow-sm:       0 1px 2px 0 rgba(232, 99, 10, 0.06);
    --shadow-md:       0 4px 12px -2px rgba(232, 99, 10, 0.12), 0 2px 4px -1px rgba(0,0,0,0.05);
    --shadow-lg:       0 10px 24px -4px rgba(232, 99, 10, 0.14), 0 4px 8px -2px rgba(0,0,0,0.06);
    --shadow-premium:  0 20px 40px -8px rgba(232, 99, 10, 0.15), 0 8px 16px -4px rgba(0,0,0,0.06);

    /* Typography */
    --font-sans:    'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;

    /* Border radii */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    /* Dynamic theme vars (overridden per profile theme) */
    --theme-primary: #E8630A;
    --theme-text:    #2D1A00;
    --theme-bg:      #FFFFFF;
    --theme-font:    'Inter', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* ----------------------------------------------------
 * DASHBOARD & COMMON LAYOUT CLASSES
 * ---------------------------------------------------- */

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background-color: var(--color-bg-surface);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 50;
}

.dashboard-main {
    margin-left: 260px;
    flex-grow: 1;
    padding: 40px;
    background-color: var(--color-bg-base);
    min-height: 100vh;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-secondary);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--color-bg-input);
    color: var(--color-primary);
}

.nav-link.active {
    font-weight: 600;
    background-color: #FFF1D6;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-text-primary);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--color-bg-input);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* Card Grids */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.card-item {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge.active {
    background-color: #d1fae5;
    color: #065f46;
}

.card-badge.inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

.card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    border: 2px solid var(--color-border);
}

.card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.card-info {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------------
 * THREE-COLUMN VISUAL LIVE CUSTOMIZER LAYOUT
 * ---------------------------------------------------- */

.customizer-workspace {
    display: grid;
    grid-template-columns: 340px 1fr 380px;
    height: 100vh;
    overflow: hidden;
    background-color: #FFF3D6;
}

.customizer-nav-panel {
    background-color: #ffffff;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.customizer-preview-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

.customizer-options-panel {
    background-color: #ffffff;
    border-left: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

/* Phone Simulator Device Frame */
.phone-simulator {
    width: 375px;
    height: 740px;
    border: 12px solid #2D1A00;
    border-radius: 40px;
    box-shadow: var(--shadow-premium), 0 0 0 4px #7A5C2E;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hide scrollbar for simulator screen */
.phone-screen::-webkit-scrollbar {
    width: 0px;
}

.phone-notch {
    width: 140px;
    height: 24px;
    background-color: #2D1A00;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 100;
}

/* ----------------------------------------------------
 * DYNAMIC PROFILE VISUAL DESIGN SYSTEM (MOBILE-FIRST)
 * ---------------------------------------------------- */

.profile-container {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--theme-bg);
    color: var(--theme-text);
    font-family: var(--theme-font);
    padding-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.profile-cover {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--theme-primary), #FFB800);
    position: relative;
}

.profile-avatar-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: -50px auto 16px auto;
    border: 4px solid var(--theme-bg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--theme-primary);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    padding: 0 24px 24px 24px;
}

.profile-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
}

.profile-title {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 2px;
}

.profile-org {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-bio {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
}

/* Quick Action Row (Call, Email, Save) */
.profile-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 24px;
}

.btn-action {
    background-color: var(--theme-primary);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-text);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
}

/* Block Content Cards */
.profile-blocks-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.block-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    color: var(--theme-text);
    transition: all 0.2s ease;
}

.block-card:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-md);
}

.block-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.block-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Dynamic Links Mappings */
.block-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.block-link-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--theme-primary);
}

.block-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-link-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 18px;
}

.block-link-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-text);
}

.block-link-arrow {
    opacity: 0.4;
    transition: all 0.2s ease;
}

.block-link-item:hover .block-link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Lead Capture overlay screen (intercept mode) */
.lead-capture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-bg);
    z-index: 200;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-header {
    text-align: center;
    margin-bottom: 24px;
}

.lead-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.lead-subtitle {
    font-size: 13px;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
}

.form-control:focus {
    border-color: var(--color-accent);
    background-color: #FFFDF8;
}

/* ----------------------------------------------------
 * PREMIUM SPECIFIC THEMES (30-40 THEMES PRE-MAPPED)
 * ---------------------------------------------------- */

/* 1. Tech Minimalist */
.theme-tech-minimalist {
    --theme-primary: #0f172a;
    --theme-text: #ffffff;
    --theme-bg: #0f172a;
    --theme-font: 'Fira Code', monospace;
}
.theme-tech-minimalist .block-card,
.theme-tech-minimalist .block-link-item {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: rgba(255,255,255,0.05);
    color: #ffffff;
}
.theme-tech-minimalist .block-link-title {
    color: #ffffff;
}
.theme-tech-minimalist .block-link-icon-wrap {
    color: #38bdf8;
    background-color: rgba(56, 189, 248, 0.1);
}

/* 2. Executive Gold (Premium Dark) */
.theme-executive-gold {
    --theme-primary: #b45309;
    --theme-text: #ffffff;
    --theme-bg: #111827;
    --theme-font: 'Playfair Display', serif;
}
.theme-executive-gold .block-card,
.theme-executive-gold .block-link-item {
    background-color: #1f2937;
    border: 1px solid #d97706;
    color: #f3f4f6;
}
.theme-executive-gold .block-link-title {
    color: #f3f4f6;
}
.theme-executive-gold .block-link-icon-wrap {
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.1);
}

/* 3. Vibrant Aurora */
.theme-vibrant-aurora {
    --theme-primary: #7c3aed;
    --theme-text: #0f172a;
    --theme-bg: #faf5ff;
    --theme-font: 'Outfit', sans-serif;
}
.theme-vibrant-aurora .profile-cover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
}
.theme-vibrant-aurora .block-card,
.theme-vibrant-aurora .block-link-item {
    background-color: #ffffff;
    border-color: #f3e8ff;
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.05);
}
.theme-vibrant-aurora .block-link-icon-wrap {
    color: #ec4899;
    background-color: rgba(236, 72, 153, 0.08);
}

/* 4. Sleek Carbon */
.theme-sleek-carbon {
    --theme-primary: #18181b;
    --theme-text: #e4e4e7;
    --theme-bg: #09090b;
    --theme-font: 'Inter', sans-serif;
}
.theme-sleek-carbon .profile-cover {
    background: linear-gradient(180deg, #27272a, #09090b);
}
.theme-sleek-carbon .block-card,
.theme-sleek-carbon .block-link-item {
    background-color: #18181b;
    border-color: #27272a;
}
.theme-sleek-carbon .block-link-title {
    color: #e4e4e7;
}
.theme-sleek-carbon .block-link-icon-wrap {
    color: #a1a1aa;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Dragging visual helpers */
.draggable-block-item {
    cursor: grab;
    user-select: none;
}
.draggable-block-item:active {
    cursor: grabbing;
    opacity: 0.6;
}
.draggable-placeholder {
    height: 60px;
    border: 2px dashed var(--color-accent);
    background-color: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius-md);
}

/* ============================================================
 * EXTENDED 40+ INDUSTRY THEME SYSTEM
 * Inspired by vCard SaaS reference template palettes
 * ============================================================ */

/* -- HEALTHCARE -- */
.theme-doctor-medical { --theme-primary: #1E40AF; --theme-text: #1E293B; --theme-bg: #F8FAFC; --theme-font: 'Inter', sans-serif; }
.theme-health-green { --theme-primary: #047857; --theme-text: #14532D; --theme-bg: #F0FDF4; --theme-font: 'Inter', sans-serif; }
.theme-doctor-medical .block-card, .theme-doctor-medical .block-link-item { background: #ffffff; border-color: #DBEAFE; }
.theme-doctor-medical .block-link-icon-wrap { color: #1E40AF; background: #EFF6FF; }
.theme-health-green .block-card, .theme-health-green .block-link-item { background: #ffffff; border-color: #A7F3D0; }
.theme-health-green .block-link-icon-wrap { color: #047857; background: #D1FAE5; }

/* -- LEGAL -- */
.theme-lawfirm-navy { --theme-primary: #0A3161; --theme-text: #333333; --theme-bg: #ffffff; --theme-font: 'Playfair Display', serif; }
.theme-lawfirm-burgundy { --theme-primary: #8B0000; --theme-text: #333333; --theme-bg: #ffffff; --theme-font: 'Playfair Display', serif; }
.theme-lawfirm-navy .block-link-icon-wrap { color: #0A3161; background: #E6ECF2; }
.theme-lawfirm-burgundy .block-link-icon-wrap { color: #8B0000; background: #F5E6E6; }
.theme-lawfirm-navy .profile-cover { background: linear-gradient(135deg, #0A3161, #1E5091); }
.theme-lawfirm-burgundy .profile-cover { background: linear-gradient(135deg, #8B0000, #A52A2A); }

/* -- PROFESSIONAL -- */
.theme-consulting-blue { --theme-primary: #1A365D; --theme-text: #2D3748; --theme-bg: #ffffff; --theme-font: 'Inter', sans-serif; }
.theme-neutral-professional { --theme-primary: #4A5568; --theme-text: #2D3748; --theme-bg: #ffffff; --theme-font: 'Inter', sans-serif; }
.theme-consulting-blue .block-link-icon-wrap { color: #1A365D; background: #EBF8FF; }
.theme-neutral-professional .block-link-icon-wrap { color: #4A5568; background: #EDF2F7; }

/* -- TECH & STARTUP -- */
.theme-tech-startup-blue { --theme-primary: #2563EB; --theme-text: #1E293B; --theme-bg: linear-gradient(135deg, #EFF6FF, #DBEAFE); --theme-font: 'Outfit', sans-serif; }
.theme-tech-startup-purple { --theme-primary: #7C3AED; --theme-text: #1E293B; --theme-bg: linear-gradient(135deg, #F5F3FF, #EDE9FE); --theme-font: 'Outfit', sans-serif; }
.theme-digital-marketing { --theme-primary: #EA580C; --theme-text: #1C1917; --theme-bg: linear-gradient(135deg, #FFFBEB, #FED7AA); --theme-font: 'Outfit', sans-serif; }
.theme-tech-startup-blue .profile-container { background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important; }
.theme-tech-startup-purple .profile-container { background: linear-gradient(135deg, #F5F3FF, #EDE9FE) !important; }
.theme-tech-startup-blue .block-link-icon-wrap { color: #2563EB; background: #DBEAFE; }
.theme-tech-startup-purple .block-link-icon-wrap { color: #7C3AED; background: #EDE9FE; }
.theme-digital-marketing .block-link-icon-wrap { color: #EA580C; background: #FED7AA; }

/* -- FOOD & DRINK -- */
.theme-restaurant-rustic { --theme-primary: #8B4513; --theme-text: #3E2723; --theme-bg: #FFF8E1; --theme-font: 'Playfair Display', serif; }
.theme-restaurant-modern { --theme-primary: #D32F2F; --theme-text: #212121; --theme-bg: #ffffff; --theme-font: 'Outfit', sans-serif; }
.theme-cafe-coffee { --theme-primary: #6F4E37; --theme-text: #3A3A3A; --theme-bg: #FFF8E1; --theme-font: 'Outfit', sans-serif; }
.theme-cafe-espresso { --theme-primary: #5D4037; --theme-text: #D7CCC8; --theme-bg: #362417; --theme-font: 'Playfair Display', serif; }
.theme-bakery-warm { --theme-primary: #D35400; --theme-text: #3A3A3A; --theme-bg: #FFF3E0; --theme-font: 'Outfit', sans-serif; }
.theme-restaurant-rustic .profile-cover { background: linear-gradient(135deg, #8B4513, #A0522D); }
.theme-restaurant-modern .profile-cover { background: linear-gradient(135deg, #D32F2F, #F44336); }
.theme-cafe-coffee .profile-cover { background: linear-gradient(135deg, #6F4E37, #A67C52); }
.theme-cafe-espresso .profile-cover { background: linear-gradient(135deg, #362417, #5D4037); }
.theme-cafe-espresso .block-card, .theme-cafe-espresso .block-link-item { background: rgba(93, 64, 55, 0.6); border-color: rgba(215, 204, 200, 0.1); }
.theme-cafe-espresso .block-link-title { color: #D7CCC8; }
.theme-restaurant-rustic .block-link-icon-wrap { color: #8B4513; background: rgba(139, 69, 19, 0.1); }
.theme-cafe-coffee .block-link-icon-wrap { color: #6F4E37; background: rgba(111, 78, 55, 0.1); }

/* -- FITNESS & SPORTS -- */
.theme-fitness-energy-red { --theme-primary: #FF4136; --theme-text: #333333; --theme-bg: #ffffff; --theme-font: 'Outfit', sans-serif; }
.theme-fitness-power-dark { --theme-primary: #FF5722; --theme-text: #ffffff; --theme-bg: #1a1a2e; --theme-font: 'Outfit', sans-serif; }
.theme-yoga-wellness { --theme-primary: #8FBC8F; --theme-text: #2F4F4F; --theme-bg: #F8F8F0; --theme-font: 'Playfair Display', serif; }
.theme-sports-academy { --theme-primary: #0074D9; --theme-text: #333333; --theme-bg: #F5F7FA; --theme-font: 'Outfit', sans-serif; }
.theme-fitness-energy-red .profile-cover { background: linear-gradient(135deg, #FF4136, #FF725C); }
.theme-fitness-power-dark .profile-cover { background: linear-gradient(135deg, #FF5722, #FF7043); }
.theme-fitness-power-dark .block-card, .theme-fitness-power-dark .block-link-item { background: rgba(255,87,34,0.1); border-color: rgba(255,87,34,0.2); color: #ffffff; }
.theme-fitness-power-dark .block-link-title { color: #ffffff; }
.theme-fitness-power-dark .block-link-icon-wrap { color: #FF5722; background: rgba(255, 87, 34, 0.15); }
.theme-yoga-wellness .profile-cover { background: linear-gradient(135deg, #8FBC8F, #98D8C8); }
.theme-yoga-wellness .block-link-icon-wrap { color: #8FBC8F; background: rgba(143, 188, 143, 0.15); }
.theme-sports-academy .profile-cover { background: linear-gradient(135deg, #0074D9, #7FDBFF); }
.theme-sports-academy .block-link-icon-wrap { color: #0074D9; background: rgba(0, 116, 217, 0.1); }

/* -- CREATIVE & ARTS -- */
.theme-photography-mono { --theme-primary: #000000; --theme-text: #000000; --theme-bg: #ffffff; --theme-font: 'Outfit', sans-serif; }
.theme-photography-dark { --theme-primary: #D35400; --theme-text: #ffffff; --theme-bg: #1a1a1a; --theme-font: 'Playfair Display', serif; }
.theme-music-artist-rock { --theme-primary: #E91E63; --theme-text: #ffffff; --theme-bg: #121212; --theme-font: 'Outfit', sans-serif; }
.theme-graphic-design { --theme-primary: #7C3AED; --theme-text: #1e1e2e; --theme-bg: #fdf4ff; --theme-font: 'Outfit', sans-serif; }
.theme-gaming-streamer { --theme-primary: #00FF41; --theme-text: #ffffff; --theme-bg: #0A0A0A; --theme-font: 'Fira Code', monospace; }
.theme-influencer { --theme-primary: #E91E63; --theme-text: #1e1e2e; --theme-bg: #fdf2f8; --theme-font: 'Outfit', sans-serif; }
.theme-podcast-creator { --theme-primary: #6D28D9; --theme-text: #E0E7FF; --theme-bg: #1E1B4B; --theme-font: 'Outfit', sans-serif; }
.theme-photography-mono .profile-cover { background: linear-gradient(135deg, #333333, #000000); }
.theme-photography-dark .profile-cover { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.theme-photography-dark .block-card, .theme-photography-dark .block-link-item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); color: #ffffff; }
.theme-photography-dark .block-link-title { color: #ffffff; }
.theme-photography-dark .block-link-icon-wrap { color: #D35400; background: rgba(211, 84, 0, 0.1); }
.theme-music-artist-rock .profile-cover { background: linear-gradient(135deg, #E91E63, #311B92); }
.theme-music-artist-rock .block-card, .theme-music-artist-rock .block-link-item { background: rgba(255,255,255,0.05); border-color: rgba(233,30,99,0.15); color: #ffffff; }
.theme-music-artist-rock .block-link-title { color: #ffffff; }
.theme-music-artist-rock .block-link-icon-wrap { color: #E91E63; background: rgba(233, 30, 99, 0.12); }
.theme-gaming-streamer .profile-cover { background: linear-gradient(135deg, #001400, #0A0A0A); }
.theme-gaming-streamer .block-card, .theme-gaming-streamer .block-link-item { background: rgba(0, 255, 65, 0.04); border-color: rgba(0, 255, 65, 0.12); color: #00FF41; }
.theme-gaming-streamer .block-link-title { color: #00FF41; }
.theme-gaming-streamer .block-link-icon-wrap { color: #00FF41; background: rgba(0, 255, 65, 0.08); }
.theme-podcast-creator .profile-cover { background: linear-gradient(135deg, #4C1D95, #6D28D9); }
.theme-podcast-creator .block-card, .theme-podcast-creator .block-link-item { background: rgba(109,40,217,0.15); border-color: rgba(109,40,217,0.2); color: #E0E7FF; }
.theme-podcast-creator .block-link-title { color: #E0E7FF; }
.theme-podcast-creator .block-link-icon-wrap { color: #A78BFA; background: rgba(167,139,250,0.1); }
.theme-graphic-design .profile-cover { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.theme-graphic-design .block-link-icon-wrap { color: #7C3AED; background: #EDE9FE; }
.theme-influencer .profile-cover { background: linear-gradient(135deg, #E91E63, #F06292); }
.theme-influencer .block-link-icon-wrap { color: #E91E63; background: #FCE4EC; }

/* -- BEAUTY & EVENTS -- */
.theme-salon-rose { --theme-primary: #DB7093; --theme-text: #333333; --theme-bg: #FFF0F5; --theme-font: 'Playfair Display', serif; }
.theme-beauty-cosmetics { --theme-primary: #E91E63; --theme-text: #2D2D2D; --theme-bg: #FFF8F8; --theme-font: 'Playfair Display', serif; }
.theme-wedding-blush { --theme-primary: #D8A7B1; --theme-text: #5D4954; --theme-bg: #FFFFFF; --theme-font: 'Playfair Display', serif; }
.theme-event-planner-purple { --theme-primary: #9C27B0; --theme-text: #333333; --theme-bg: #F3E5F5; --theme-font: 'Outfit', sans-serif; }
.theme-salon-rose .profile-cover { background: linear-gradient(135deg, #DB7093, #E8B4B8); }
.theme-beauty-cosmetics .profile-cover { background: linear-gradient(135deg, #E91E63, #F06292); }
.theme-wedding-blush .profile-cover { background: linear-gradient(135deg, #D8A7B1, #EAC9C1); }
.theme-event-planner-purple .profile-cover { background: linear-gradient(135deg, #9C27B0, #E1BEE7); }
.theme-salon-rose .block-link-icon-wrap { color: #DB7093; background: #FFE4EE; }
.theme-beauty-cosmetics .block-link-icon-wrap { color: #E91E63; background: #FCE4EC; }
.theme-wedding-blush .block-link-icon-wrap { color: #D8A7B1; background: #F9F1F0; }
.theme-event-planner-purple .block-link-icon-wrap { color: #9C27B0; background: #F3E5F5; }

/* -- REAL ESTATE & CONSTRUCTION -- */
.theme-realestate-blue { --theme-primary: #1A365D; --theme-text: #2D3748; --theme-bg: #ffffff; --theme-font: 'Inter', sans-serif; }
.theme-realestate-gold { --theme-primary: #744210; --theme-text: #2D3748; --theme-bg: #FFFFF0; --theme-font: 'Playfair Display', serif; }
.theme-construction-yellow { --theme-primary: #F9A826; --theme-text: #333333; --theme-bg: #ffffff; --theme-font: 'Outfit', sans-serif; }
.theme-construction-dark { --theme-primary: #455A64; --theme-text: #CFD8DC; --theme-bg: #263238; --theme-font: 'Inter', sans-serif; }
.theme-realestate-blue .profile-cover { background: linear-gradient(135deg, #1A365D, #2A4365); }
.theme-realestate-gold .profile-cover { background: linear-gradient(135deg, #744210, #975A16); }
.theme-construction-yellow .profile-cover { background: linear-gradient(135deg, #F9A826, #FFD166); }
.theme-construction-dark .profile-cover { background: linear-gradient(135deg, #263238, #37474F); }
.theme-construction-dark .block-card, .theme-construction-dark .block-link-item { background: rgba(255,255,255,0.04); border-color: rgba(207,216,220,0.1); color: #CFD8DC; }
.theme-construction-dark .block-link-title { color: #CFD8DC; }
.theme-construction-dark .block-link-icon-wrap { color: #78909C; background: rgba(120,144,156,0.1); }
.theme-realestate-blue .block-link-icon-wrap { color: #1A365D; background: #EBF8FF; }
.theme-realestate-gold .block-link-icon-wrap { color: #744210; background: #FFFFF0; }
.theme-construction-yellow .block-link-icon-wrap { color: #F9A826; background: #FFF3CD; }

/* -- TRAVEL & HOSPITALITY -- */
.theme-travel-ocean { --theme-primary: #1A73E8; --theme-text: #333333; --theme-bg: #E3F2FD; --theme-font: 'Outfit', sans-serif; }
.theme-hotel-luxury { --theme-primary: #B45309; --theme-text: #fef3c7; --theme-bg: #0f172a; --theme-font: 'Playfair Display', serif; }
.theme-travel-ocean .profile-cover { background: linear-gradient(135deg, #1A73E8, #34A853); }
.theme-hotel-luxury .profile-cover { background: linear-gradient(135deg, #B45309, #D97706); }
.theme-hotel-luxury .block-card, .theme-hotel-luxury .block-link-item { background: rgba(180,83,9,0.1); border-color: rgba(180,83,9,0.2); color: #fef3c7; }
.theme-hotel-luxury .block-link-title { color: #fef3c7; }
.theme-hotel-luxury .block-link-icon-wrap { color: #D97706; background: rgba(217,119,6,0.12); }
.theme-travel-ocean .block-link-icon-wrap { color: #1A73E8; background: #E3F2FD; }

