/*
Theme Name: US Transceivers
Theme URI: https://ustransceivers.com
Author: US Transceivers Team
Author URI: https://ustransceivers.com
Description: Custom theme for US Transceivers - Network transceiver e-commerce website
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: us-transceivers
Tags: e-commerce, woocommerce, custom-design

This theme is designed specifically for US Transceivers online store.
*/

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    /* Primary Colors */
    --primary-blue: #304b92;
    --accent-red: #ea272f;

    /* Secondary Colors */
    --dark-blue: #1e293b;
    --light-blue: #5c7fc4;
    --dark-red: #c21f26;

    /* Neutral Colors */
    --text-dark: #484848;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-gray: #f9fafb;
    --border-color: #e5e7eb;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-main);
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #484848;
    line-height: 1.6;
    background-color: var(--background);
}

p {
    font-family: var(--font-main);
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #484848;
    line-height: 1.6;
    margin-bottom: 1em;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

/* Buttons */
.button, .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button:hover, .btn:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
