/*
Theme Name: QualityTop
Theme URI: https://qualitytop.store
Author: Amatech
Author URI: https://qualitytop.store
Description: Clean, conversion-focused Amazon affiliate theme with integrated click tracking
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qualitytop
Tags: affiliate, amazon, e-commerce, product-reviews, responsive-layout

QualityTop - Amazon Affiliate Theme
Designed for conversion optimization with Amatech tracking integration
*/

/* CSS Variables */
:root {
    /* Colors - uk.market.com style 1:1 */
    --color-primary: #000000; /* Header text/logo */
    --color-secondary: #555555;
    --color-accent: #007185; /* Button teal */
    --color-accent-hover: #005f73;
    --color-success: #067d62; /* Best Choice green */
    --color-info: #1a73e8; /* Best Value blue */
    --color-warning: #ff9900;
    --color-danger: #cc0c39; /* Discount red */
    --color-text: #0f1111;
    --color-text-light: #565959;
    --color-text-muted: #888c8c;
    --color-border: #d5d9d9;
    --color-border-light: #e7e9ec;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8f8;
    
    /* Typography */
    --font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    
    /* Container */
    --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
