/*
Theme Name: Hijama Equip Ultra Light
Theme URI: https://hijamaequip.com/
Description: Ultra-lightweight, high-speed custom theme modeled after Hijama Equip. Clean production-ready modular hybrid framework.
Version: 1.0.0
Author: Agha Hasan
Text Domain: hijama-equip-light
License: GNU General Public License v2 or later
Tags: e-commerce, custom-sidebar, flexible-layout
*/

/* 1. Global Reset & Box Model */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #222222;
    --background-color: #ffffff;
    --border-color: #e2e8f0;
    --text-color: #333333;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-stack);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 2. Standard Global Typography Layouts */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Global Structural Base Elements */
.site-wrapper {
    width: 100%;
    margin: 0 auto;
}

main {
    display: block;
}

.container-92 {
    width: 92% !important;
    margin-left: auto;
    margin-right: auto;
}


