/*
Theme Name: GEX
Theme URI: https://mwdigitalsolutions.com/
Template: mw-base
Author: MW Digital Solutions
Author URI: https://mwdigitalsolutions.com/
Description: GEXC storefront theme. A thin child of MW Base carrying only GEXC's brand tokens — colours, type and logo. All layout and storefront markup lives in the GEXC Site plugin, so this file stays small by design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gex
*/

/* GEXC brand tokens.
   These mirror the CSS variables the GEXC Site plugin already uses, so the
   plugin's styles and the theme agree on one palette. Changing a colour here
   changes it everywhere. */
:root {
    --gexc-purple: #6C2EB5;
    --gexc-purple-dark: #4E1F87;
    --gexc-orange: #FF6A00;
    --gexc-green: #7CB518;
    --gexc-black: #111111;
    --gexc-gray: #f5f5f5;
}

/* Brand type. Poppins is loaded by the GEXC Site plugin; this keeps the
   theme-level default in step with it rather than fighting it. */
body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* The site plugin owns page chrome. MW Base already lays the container out —
   including the width basis it needs as a flex child — so the child only sets
   the brand max-width. */
.mw-container {
    max-width: 1140px;
}

.mw-404 {
    padding: 80px 20px 100px;
    text-align: center;
}
