/*
Theme Name: Siddhababa Hardware Theme
Theme URI: https://siddhababahardware.com/
Description: A premium, modern industrial custom WordPress theme for Siddhababa Hardware wholesale & retail company. Designed to be fully responsive, Elementor friendly, and featuring a custom invoice system with WooCommerce catalog integration.
Version: 1.0.0
Author: Antigravity
Author URI: https://gemini.google.com/
Tags: responsive-layout, custom-menu, translation-ready, ecommerce
Text Domain: siddhababa-hardware
*/

/* Core Design System Tokens */
:root {
    --primary-color: #0F172A;     /* Dark Navy */
    --secondary-color: #1E293B;   /* Navy Mid */
    --accent-color: #F5A623;      /* Amber Yellow */
    --accent-hover: #e8981c;      /* Amber Hover */
    --bg-color: #FFFFFF;
    --text-color: #334155;
    --white: #FFFFFF;
    
    /* Layout */
    --container-width: 1240px;
    
    /* Typography */
    --font-heading: 'Inter', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Borders & Shadows */
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 18px rgba(0,0,0,0.09);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.25s ease;
}

/* Base resets & layout settings */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    font-weight: 600;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
