/* MikeTouch Push - Follow shortcode styles */

/* ═══ Legacy styles (button / inline / badge) ═══ */

.mt-follow-wrap {
    margin: 20px 0;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
}

.mt-follow-wrap.mt-follow-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mt-follow-wrap.mt-follow-badge {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.mt-follow-wrap.mt-follow-inline {
    display: inline-block;
    background: #e7f3ff;
    border: 1px solid #b3d8ff;
    padding: 8px 16px;
}

.mt-follow-link {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.mt-follow-button .mt-follow-link {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.mt-follow-button .mt-follow-link:hover {
    background: rgba(255,255,255,0.3);
}

.mt-follow-badge .mt-follow-link {
    background: #0073aa;
    color: #fff;
}

.mt-follow-badge .mt-follow-link:hover {
    background: #005a87;
}

.mt-follow-inline .mt-follow-link {
    background: none;
    color: #0073aa;
    padding: 4px 12px;
    font-size: 14px;
}

.mt-follow-qr {
    margin-bottom: 12px;
}

.mt-follow-qr img {
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

/* ═══ v1.4.2 Guide Card (multi-step guidance) ═══ */

.mt-follow-wrap.mt-follow-guide {
    background: #f8f9fb;
    border: 1px solid #e0e3eb;
    border-radius: 10px;
    padding: 20px 24px;
    text-align: left;
    max-width: 520px;
    margin: 24px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mt-follow-wrap.mt-follow-guide.mt-guide-compact {
    padding: 14px 16px;
    max-width: 100%;
}

.mt-guide-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.mt-guide-icon {
    font-size: 20px;
}

.mt-guide-title {
    line-height: 1.4;
}

.mt-guide-steps {
    margin-bottom: 16px;
}

.mt-guide-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.mt-guide-step:last-child {
    margin-bottom: 0;
}

.mt-step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.mt-guide-step .mt-step-body {
    flex: 1;
}

.mt-guide-step .mt-step-body strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.mt-guide-step .mt-step-body p {
    margin: 0;
    font-size: 13px;
    color: #6a7a8a;
    line-height: 1.5;
}

.mt-guide-steps-compact {
    font-size: 13px;
    color: #6a7a8a;
    margin-bottom: 14px;
    line-height: 1.8;
}

.mt-guide-steps-compact .mt-step-num {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

.mt-guide-action {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.mt-guide-qr {
    flex-shrink: 0;
}

.mt-guide-qr img {
    display: block;
    border-radius: 6px;
    border: 1px solid #e0e3eb;
}

.mt-guide-btn {
    flex: 1;
    text-align: center;
    padding: 12px 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.mt-guide-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
    color: #fff !important;
}

.mt-guide-note {
    font-size: 12px;
    color: #e8a030;
    background: #fef9e7;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mt-guide-downloads {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6a7a8a;
    flex-wrap: wrap;
}

.mt-guide-downloads-label {
    font-weight: 600;
}

.mt-dl-link {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: #eef1f6;
    color: #4a6fa5 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
}

.mt-dl-link:hover {
    background: #e0e6f0;
    color: #3a5a8a !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mt-follow-wrap.mt-follow-guide {
        background: #1e2330;
        border-color: #2d3447;
    }
    .mt-guide-header,
    .mt-guide-step .mt-step-body strong {
        color: #e0e6f0;
    }
    .mt-guide-step .mt-step-body p,
    .mt-guide-downloads {
        color: #8a9ab0;
    }
    .mt-guide-note {
        background: #2d2818;
        color: #f0c050;
    }
    .mt-dl-link {
        background: #2a3142;
        color: #8ab4f8 !important;
    }
    .mt-dl-link:hover {
        background: #3a4156;
    }
    .mt-guide-qr img {
        border-color: #2d3447;
    }
}
