/*
Theme Name: EcomHike Dropshipping Manager
Theme URI: https://ecomhike.com
Author: Antigravity
Author URI: https://google.deepmind.com
Description: A full-featured dropshipping management website theme. Includes Dashboard, VERO AI, Sales Tracking, and more.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecomhike
*/

:root {
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --secondary: #eff6ff;
    --secondary-foreground: #1e40af;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    --accent: #f3f4f6;
    --accent-foreground: #111827;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #3b82f6;
    --radius: 0.5rem;
    --background: #ffffff;
    --foreground: #020817;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Base styles that might be needed if Tailwind fails to load or for specific WP elements */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}