/*
Theme Name: U&NCo
Theme URI: https://uandnco.com
Author: U&NCo Team
Author URI: https://uandnco.com
Description: A modern, minimal SaaS-style WordPress theme for electronics and gadgets e-commerce. Features a clean design with green color scheme, mobile-first responsive layout, and smooth user experience.
Version: 1.4.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uandnco
Tags: e-commerce, responsive, minimal, modern, green

This theme, like WordPress, is licensed under the GPL.
*/

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

:root {
    /* Green Color Scheme - High Contrast SaaS Style */
    --primary: #166534;
    --primary-dark: #14532d;
    --primary-light: #16a34a;
    --primary-lighter: #22c55e;
    --primary-lightest: #dcfce7;
    
    /* Accent Green Shades */
    --accent: #16a34a;
    --accent-dark: #166534;
    --accent-light: #22c55e;
    
    /* Supporting Colors */
    --blue-hover: #166534;
    --blue-soft: #f0fdf4;
    --success: #059669;
    --info: #0284c7;
    
    /* Neutrals - High Contrast Grays */
    --dark: #020617;
    --dark-medium: #0f172a;
    --dark-soft: #1e293b;
    --gray: #475569;
    --gray-medium: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --gray-lightest: #f8fafc;
    --white: #ffffff;
    
    /* Surface Colors */
    --surface: #ffffff;
    --surface-secondary: #f8fafc;
    --surface-elevated: #ffffff;
    
    /* Spacing - Mobile First */
    --container-width: 1240px;
    --section-padding: 40px 0;
    --border-radius: 8px;
    --border-radius-sm: 6px;
    --border-radius-lg: 12px;
    
    /* Typography - Tech/SaaS Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* WordPress Core Alignment Classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip to Content Link */
.skip-link {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 100000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Import additional styles if needed */
