/*
Theme Name: PowerTools Pro
Theme URI: https://example.com/powertools-pro
Author: Antigravity
Author URI: https://example.com
Description: A premium, modern industrial WooCommerce theme designed for power tools stores. Features high-contrast dark mode, glassmorphism accents, and strict Google Shopping compliance.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: powertools-pro
Tags: e-commerce, woocommerce, dark-mode, industrial, responsive
*/

:root {
    /* Light Yellow/Orange Palette */
    --pt-bg-main: #fefdfb;
    --pt-bg-surface: #ffffff;
    --pt-bg-card: #fff9f0;

    --pt-primary: #f59e0b;
    /* Amber 500 - Main Yellow */
    --pt-primary-hover: #d97706;
    --pt-primary-light: #fef3c7;

    --pt-secondary: #ea580c;
    /* Orange 600 - Vibrant Accent */

    --pt-text-main: #1f2937;
    --pt-text-muted: #6b7280;

    --pt-border: #e5e7eb;
    --pt-border-light: #f3f4f6;

    --pt-success: #10b981;
    --pt-danger: #ef4444;

    /* Typography */
    --font-heading: 'Saira', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--pt-bg-main);
    color: var(--pt-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--pt-text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

a {
    color: var(--pt-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pt-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid System for Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* WooCommerce Button Overrides */
.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background-color: var(--pt-primary);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    /* Industrial squared corners */
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background-color: var(--pt-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Google Shopping Policy Links Footer */
.policy-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--pt-text-muted);
}