/*
Theme Name: Anaam Foods
Author: Anaam
Description: A custom, lightweight WooCommerce theme built without page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* Core Theme Variables (Dynamically overridden by the Admin Panel) */
:root {
    --anaam-bg: #fffff9;
    --anaam-main: #ef4323;
}

body, .site, #page {
    background-color: var(--anaam-bg);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Ensure WooCommerce images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Container for standard pages */
.anaam-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}