/* Dynamic Font Configuration */
:root {
    --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --secondary-font: 'Merriweather', serif;
}

body {
    font-family: var(--primary-font);
}

/* Headings with secondary font */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
}

/* Brand and title elements */
.flipkart-style-title,
.section-title,
.product-title,
.category-card h3,
.service-content-ecommerce h3,
.trust-item h4,
.newsletter-content h2 {
    font-family: var(--primary-font);
}

/* All inputs and buttons */
input, button, select, textarea {
    font-family: var(--primary-font);
}

/* Secondary font for decorative elements */
.hero-banner-overlay h1,
.cta-banner-content h2 {
    font-family: var(--secondary-font);
}
