/*
Theme Name: Aha Theme
Theme URI: https://ahaplugins.com
Author: Aha Plugins
Author URI: https://ahaplugins.com
Description: Modern theme for WordPress/WooCommerce plugin store.
Version: 2.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aha-theme
Tags: woocommerce, ecommerce, marketplace, plugins, gutenberg, modern
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-hover: #1e40af;
    --color-secondary: #1e293b;
    --color-secondary-dark: #0f172a;
    --color-success: #10b981;
    --color-warning: #fbbf24;
    --color-danger: #ef4444;
    
    /* Grayscale */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Slate */
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    
    /* Blue */
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    
    /* Green */
    --color-green-500: #10b981;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Gutenberg layout (theme.json) – content and wide width */
    --wp--style--global--content-size: 720px;
    --wp--style--global--wide-size: 1280px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-gray-50);
    color: var(--color-slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

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

/* Utility Classes */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

/* Header Overrides (styled in main.css with Tailwind-like classes) */
/* Footer Overrides (styled in main.css with Tailwind-like classes) */

/* WooCommerce Base Overrides */
.woocommerce-notices-wrapper {
    margin-bottom: 2rem;
}
