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

/* Force Light/Clean Theme */
:root, [data-theme="dark"] {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-main: #111827; /* Dark gray, almost black */
    --text-muted: #6b7280; /* Neutral gray */
    --border: #e5e7eb;
    --primary: #f97316; /* Clean Orange */
    --primary-hover: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.15);
    --secondary: #f97316;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    
    /* Mockup/Contrast colors */
    --mockup-bg: #111827;
    --mockup-border: #e5e7eb;
    
    /* Admin/Dashboard variables */
    --bg-admin: #f9fafb;
    --surface: #ffffff;
    --surface-hover: #f3f4f6;
    --body-gradient: none;
    --header-gradient: none;
}

/* Base Body Styles */
body {
    background-color: var(--bg-color);
    background-image: var(--body-gradient);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Theme Toggle Button Style (Hidden in marketing) */
.theme-toggle-btn {
    display: none;
}

/* Unified Card / Solid Panel */
.glass-panel, .feature-card, .stat-card, .cart-item, .product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover, .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Gradient text removed to solid orange */
.gradient-text {
    color: var(--text-main);
}

.gradient-text-orange {
    color: var(--primary);
}
