/**
 * Elementor Fallback
 */

.elementor-fallback {
    padding: 80px 0;
    text-align: center;
}

.fallback-content {
    max-width: 800px;
    margin: 0 auto;
}

.fallback-content h1 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.fallback-content > p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.elementor-actions,
.elementor-install {
    margin-bottom: 50px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--wetheme-primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.button-primary {
    background: var(--wetheme-primary-color);
}


.fallback-features {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.fallback-features h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.fallback-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.fallback-features li {
    color: #4a5568;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.fallback-features li:last-child {
    border-bottom: none;
}

.fallback-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-fallback {
        padding: 60px 0;
    }
    
    .fallback-content h1 {
        font-size: 2.5rem;
    }
    
    .fallback-content > p {
        font-size: 1.1rem;
    }
    
    .fallback-features {
        padding: 30px 20px;
    }
    
    .fallback-features h2 {
        font-size: 1.5rem;
    }
    
    .fallback-features li {
        font-size: 1rem;
        padding: 10px 0;
        padding-left: 25px;
    }
    
    .button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .elementor-fallback {
        padding: 40px 0;
    }
    
    .fallback-content h1 {
        font-size: 2rem;
    }
    
    .fallback-content > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .fallback-features {
        padding: 20px 15px;
    }
    
    .fallback-features h2 {
        font-size: 1.3rem;
    }
    
    .fallback-features li {
        font-size: 0.95rem;
        padding: 8px 0;
        padding-left: 20px;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* RTL Support */
[dir="rtl"] .fallback-features li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .fallback-features li:before {
    left: auto;
    right: 0;
}

@media (max-width: 480px) {
    [dir="rtl"] .fallback-features li {
        padding-right: 20px;
    }
}
