/* Sales Funnel Pro - Public Styles */

.dfp-checkout-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dfp-checkout-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

.dfp-checkout-form .form-group {
    margin-bottom: 20px;
}

.dfp-checkout-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.dfp-checkout-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
}

.dfp-button-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.dfp-button-primary:hover {
    transform: translateY(-2px);
}

.dfp-security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: #6B7280;
}

.dfp-member-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.dfp-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dfp-course-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ========================================
   SFP Blog Article Styles
   ======================================== */

/* Pullquote / Blockquote Styling - Rechtsbündig mit Text-Umfluss */
blockquote.sfp-pullquote,
.entry-content blockquote.sfp-pullquote,
.post-content blockquote.sfp-pullquote,
article blockquote.sfp-pullquote {
    display: block !important;
    float: right !important;
    width: 40% !important;
    max-width: 350px !important;
    margin: 10px 0 20px 30px !important;
    padding: 20px 25px !important;
    background: #F8FAFC !important;
    border: none !important;
    border-left: 4px solid #94A3B8 !important;
    border-radius: 0 8px 8px 0 !important;
    color: #475569 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    font-weight: 500 !important;
    text-align: left !important;
    quotes: none !important;
    position: relative !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

blockquote.sfp-pullquote::before,
.entry-content blockquote.sfp-pullquote::before {
    content: none !important;
}

blockquote.sfp-pullquote p,
.entry-content blockquote.sfp-pullquote p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile: Full width */
@media (max-width: 768px) {
    blockquote.sfp-pullquote,
    .entry-content blockquote.sfp-pullquote {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
    }
}

/* Premium CTA Banner */
.sfp-cta-banner {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sfp-cta-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.35) !important;
}

.sfp-cta-banner a:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5) !important;
}

@media (max-width: 768px) {
    .sfp-cta-banner > div {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px 20px !important;
    }
    
    .sfp-cta-banner > div > div:first-child {
        min-width: 100% !important;
        text-align: center !important;
    }
    
    .sfp-cta-banner > div > div:first-child > div:last-child {
        display: inline-block !important;
        text-align: left !important;
    }
    
    .sfp-cta-banner > div > div:last-child {
        min-width: 100% !important;
        margin-top: 8px !important;
    }
    
    .sfp-cta-banner a {
        width: 100% !important;
        display: block !important;
        padding: 18px 24px !important;
        font-size: 17px !important;
    }
}

/* Blog Images */
.sfp-blog-image {
    margin: 32px 0;
    clear: both;
}

.sfp-blog-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Clear floats after images */
.sfp-blog-image::after {
    content: '';
    display: table;
    clear: both;
}

/* ========================================
   SFP Toast Notifications
   Professional download notifications
   ======================================== */

/* Toast Container - fixed bottom right */
.sfp-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 380px;
    width: calc(100% - 48px);
}

/* Individual Toast */
.sfp-toast {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.sfp-toast.sfp-toast-visible {
    transform: translateX(0);
    opacity: 1;
}

.sfp-toast.sfp-toast-hiding {
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.25s ease-in, opacity 0.2s ease;
}

/* Toast Icon */
.sfp-toast-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Toast Content */
.sfp-toast-content {
    flex: 1;
    min-width: 0;
}

.sfp-toast-title {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 4px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sfp-toast-message {
    font-size: 13px;
    color: #059669;
    font-weight: 500;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sfp-toast-message::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: sfp-toast-pulse 1s ease-in-out infinite;
}

/* Progress Bar */
.sfp-toast-progress {
    width: 100%;
    height: 4px;
    background: #E2E8F0;
    border-radius: 2px;
    overflow: hidden;
}

.sfp-toast-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 2px;
    width: 0%;
    animation: sfp-toast-progress 4s linear forwards;
}

/* Close Button */
.sfp-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #94A3B8;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.15s ease;
    padding: 0;
}

.sfp-toast-close:hover {
    background: #F1F5F9;
    color: #64748B;
}

/* Animations */
@keyframes sfp-toast-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes sfp-toast-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Toast Type Variants */
.sfp-toast-success .sfp-toast-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sfp-toast-info .sfp-toast-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sfp-toast-warning .sfp-toast-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sfp-toast-error .sfp-toast-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .sfp-toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
    }
    
    .sfp-toast {
        padding: 14px 16px;
    }
    
    .sfp-toast-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 18px;
    }
    
    .sfp-toast-title {
        font-size: 13px;
    }
    
    .sfp-toast-message {
        font-size: 12px;
    }
}


