/* Photo Card Studio Styles */
.photocard-studio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    margin: 30px 0;
}

.photocard-controls-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.photocard-preview-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

#pathiktv-card-canvas {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.format-btn-group, .template-btn-group, .align-btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.format-btn, .template-btn, .align-btn {
    padding: 6px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.format-btn.active, .template-btn.active, .align-btn.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
}

@media (max-width: 900px) {
    .photocard-studio-wrapper {
        grid-template-columns: 1fr;
    }
}
