/*
Theme Name: Modular Pro Redesign
Author: Gemini
Description: Fully modular theme with component-based CSS/JS.
Version: 2.0
*/

/* Basic Reset */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: sans-serif; }
img { max-width: 100%; height: auto; }

/* CSS Variables Default (Ye Admin Panel se overwrite honge) */
:root {
    --site-width: 1200px;
    --primary-color: #0073aa;
    --secondary-color: #333;
    --topbar-height: 40px;
}

/* Common Container */
.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}