/* ==========================================================================
   preview-mode.css - Instagram/YouTube Mockup Card Styles
   Updated to use new design system variables from style.css
   ========================================================================== */

.preview-mode-active .font-card {
    background: #fff;
    color: #262626;
    padding: var(--s-md) var(--s-lg);
    border-radius: var(--r-lg);
    border: 1px solid #DBDBDB;
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
    box-shadow: none;
}

.preview-mode-active .font-card:hover {
    transform: none;
    box-shadow: none;
}

.preview-mode-active .font-card::before {
    display: none;
}

/* Hide standard layout elements */
.preview-mode-active .font-card-title {
    display: none;
}

/* Mockup Header */
.mockup-header {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--s-md);
    align-items: center;
    margin-bottom: var(--s-xs);
}

.mockup-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--grad-brand);
    padding: 3px;
    position: relative;
}

.mockup-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--c-surface);
    border: 2px solid #fff;
}

.mockup-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-weight: 700;
    font-size: 1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #8e8e8e;
}

.mockup-bio {
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

.mockup-name {
    font-weight: 700;
    margin-bottom: 2px;
}

.mockup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-xs);
    margin-top: var(--s-sm);
}

.preview-mode-active .copy-btn {
    background: #EFEFEF;
    color: #262626;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 8px;
    border: none;
}

.preview-mode-active .copy-btn:hover {
    background: var(--grad-brand);
    color: white;
}