/**
 * Flirtmastery Conversion Elements Styles
 */

/* CTA Box */
.fm-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.fm-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fm-cta-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.fm-cta-title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.fm-cta-content {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.fm-cta-content p:last-child {
    margin-bottom: 0;
}

.fm-cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fm-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    color: #667eea;
}

/* Info Boxes */
.fm-box {
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid;
    display: flex;
    gap: 0.75rem;
}

.fm-box-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

.fm-box-warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.fm-box-success {
    background: #e8f5e9;
    border-color: #4caf50;
}

.fm-box-tip {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.fm-box-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.fm-box-content {
    flex: 1;
}

.fm-box-content p:last-child {
    margin-bottom: 0;
}

.fm-box-title {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Pros & Cons */
.fm-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .fm-pros-cons {
        grid-template-columns: 1fr;
    }
}

.fm-pro,
.fm-con {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.fm-pro {
    background: #e8f5e9;
}

.fm-con {
    background: #ffebee;
}

.fm-pro-icon,
.fm-con-icon {
    flex-shrink: 0;
}

/* Key Takeaways */
.fm-takeaways {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.fm-takeaways-title {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.fm-takeaways-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.fm-takeaways-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.fm-takeaways-content p:last-child {
    margin-bottom: 0;
}

/* Quick Tip */
.fm-tip {
    background: #fff9c4;
    border-left: 4px solid #fbc02d;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.fm-tip-label {
    color: #f57f17;
}

/* Highlight */
.fm-highlight {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-style: italic;
}

.fm-highlight p:last-child {
    margin-bottom: 0;
}

/* Button */
.fm-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.fm-button-primary {
    background: #667eea;
    color: #fff;
}

.fm-button-primary:hover {
    background: #5568d3;
    color: #fff;
    transform: translateY(-1px);
}

.fm-button-secondary {
    background: #f5576c;
    color: #fff;
}

.fm-button-secondary:hover {
    background: #e04558;
    color: #fff;
    transform: translateY(-1px);
}

.fm-button-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.fm-button-outline:hover {
    background: #667eea;
    color: #fff;
}

/* Author Box */
.fm-author-box {
    display: flex;
    gap: 1.5rem;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.fm-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fm-author-content {
    flex: 1;
}

.fm-author-quote {
    margin: 0 0 0.75rem 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
}

.fm-author-quote p:last-child {
    margin-bottom: 0;
}

.fm-author-name {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #495057;
}

.fm-author-role {
    font-weight: 400;
    color: #6c757d;
}

@media (max-width: 600px) {
    .fm-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .fm-author-image {
        margin: 0 auto;
    }
}

/* FAQ */
.fm-faq {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.fm-faq-question {
    margin: 0 0 1rem 0;
    color: #212529;
    font-size: 1.15rem;
}

.fm-faq-answer {
    color: #495057;
    line-height: 1.6;
}

.fm-faq-answer p:last-child {
    margin-bottom: 0;
}
