/*
Theme Name:        CommerceForge Theme
Theme URI:         https://jyotirmayray.in/
Author:            Jyotirmay Ray
Author URI:        https://jyotirmayray.in/
Description:       Clean, lightweight presentation layer for the CommerceForge WooCommerce engineering showcase.
Version:           0.1.0
Requires at least: 6.0
Requires PHP:      8.2
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       commerceforge-theme
Tags:              e-commerce, custom, modern, accessibility-ready, clean
*/

:root {
    --cf-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --cf-color-primary: #1d2327;
    --cf-color-accent: #2271b1;
    --cf-color-bg: #f6f7f7;
    --cf-color-surface: #ffffff;
    --cf-color-text: #2c3338;
    --cf-color-muted: #646970;
    --cf-color-border: #dcdcde;
    --cf-container-max: 1200px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--cf-font-sans);
    background-color: var(--cf-color-bg);
    color: var(--cf-color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cf-site-header {
    background-color: var(--cf-color-surface);
    border-bottom: 1px solid var(--cf-color-border);
    padding: 1.25rem 0;
}

.cf-container {
    width: 100%;
    max-width: var(--cf-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.cf-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cf-site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cf-site-title a {
    color: var(--cf-color-primary);
    text-decoration: none;
}

.cf-site-description {
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    color: var(--cf-color-muted);
}

.cf-main-content {
    flex: 1 0 auto;
    padding: 3rem 0;
}

.cf-card {
    background-color: var(--cf-color-surface);
    border: 1px solid var(--cf-color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.cf-site-footer {
    background-color: var(--cf-color-primary);
    color: #f0f0f1;
    padding: 2rem 0;
    margin-top: auto;
    font-size: 0.875rem;
}

.cf-site-footer a {
    color: #72aee6;
    text-decoration: none;
}

.cf-site-footer a:hover {
    text-decoration: underline;
}
