/*
Theme Name: Return Policy USA
Theme URI: https://example.com
Author: Antigravity
Author URI: https://google.com
Description: A lightweight, high-performance theme for Return Policy directories.
Version: 1.0
Replaces: 
*/

:root {
    --primary-blue: #0056b3;
    --dark-blue: #003d80;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-green: #28a745;
    --warning-orange: #fd7e14;
    --danger-red: #dc3545;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

a:hover {
    text-decoration: underline;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-blue);
    text-decoration: none;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    color: var(--dark-blue);
}
.site-title a { color: inherit; text-decoration: none; }

/* Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 0;
    margin-top: 50px;
}
.site-footer a { color: #ccc; }
