/* WordPress Specific Styles */
.wp-block {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Elementor Compatibility */
.elementor-section {
    transition: all 0.3s ease;
}

.elementor-widget-wrap {
    padding: 20px;
}

/* Custom Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
}

/* WordPress Theme Colors */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #374151;
    --light-text: #6b7280;
    --bg-color: #ffffff;
    --dark-bg: #111827;
}

/* WordPress Content Styles */
.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.entry-content ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

/* WordPress Button Styles */
.wp-block-button__link {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}