/*
Theme Name: Athleweave Industries
Theme URI: https://athleweave.com
Author: Athleweave Industries
Author URI: https://athleweave.com
Description: Custom WordPress theme for Athleweave Industries e-commerce website. Manufacturer of extreme quality sports wear uniforms, custom apparel, and fitness wear.
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: athleweave
Tags: e-commerce, woocommerce, sports, custom, dark-theme
*/

/* ===== CSS Variables (from React source) ===== */
:root {
  /* Primary Colors */
  --primary: #4338ca;
  --primary-foreground: #ffffff;
  
  /* Background Colors */
  --background: #fafafa;
  --foreground: #1a1a1a;
  
  /* Card Colors */
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  
  /* Border & Input */
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #4338ca;
  
  /* Radius */
  --radius: 0.65rem;
}

.dark,
body.dark {
  --primary: #3730a3;
  --primary-foreground: #f0f9ff;
  --background: #1a1a1a;
  --foreground: #e5e5e5;
  --card: #262626;
  --card-foreground: #e5e5e5;
  --border: rgba(255, 255, 255, 0.1);
  --input: rgba(255, 255, 255, 0.15);
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ===== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===== Cards ===== */
.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ===== Links ===== */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-primary { background-color: var(--primary); }

/* ===== WooCommerce Compatibility ===== */
.woocommerce-page .container {
  max-width: 1280px;
}

