/* PRO Mode Styles */
.pro-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    border-radius: 20px;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.pro-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

body.pro-mode .bg-orb.orb-1 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

body.pro-mode .bg-orb.orb-2 {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

body.pro-mode .text-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.pro-mode .btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

/* --- Editor Layout --- */
.editor-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}
@media (min-width: 992px) {
    .editor-layout {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    .editor-preview {
        flex: 0 0 400px;
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    .editor-tools {
        flex: 1;
        min-width: 400px;
    }
}

.editor-preview {
    width: 100%;
    max-width: 400px;
}

.editor-tools {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.editor-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

body.pro-mode .tab-btn.active {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.editor-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pro-badge-tiny {
    color: #FFD700;
    font-size: 0.75rem;
    background: rgba(255,215,0,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.template-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.template-option {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--surface-border);
    padding: 12px 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.template-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.template-option.active {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

body.pro-mode .template-option.active {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.pro-feature-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--surface-border);
}

.pro-unlock-btn {
    width: 100%;
    background: rgba(245, 166, 35, 0.05);
    border: 1px dashed #F5A623;
    color: #F5A623;
    padding: 12px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.color-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.color-picker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.color-picker-wrapper input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--surface-border);
    padding: 0;
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pattern-option {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--surface-border);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
}
.pattern-option.active {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.logo-upload-area {
    border: 2px dashed var(--surface-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}
.logo-upload-area:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}
.logo-upload-area i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}
.logo-upload-area span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.editor-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
}
