/*
Theme Name: LV Peptides
Template: astra
Description: Custom child theme for LV Peptides storefront — brand colors, typography, and design tokens.
Version: 1.0.0
Text Domain: lv-peptides
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  /* Brand Colors */
  --lv-navy: #0A2540;
  --lv-teal: #00D4AA;
  --lv-white: #FFFFFF;
  --lv-gray: #F5F7FA;

  /* Spacing (4px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-card-hover: 0 4px 12px rgba(10, 37, 64, 0.12);
}

/* ==========================================================================
   Global Resets
   ========================================================================== */

body {
  background-color: var(--lv-gray);
  color: var(--lv-navy);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: var(--lv-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--lv-navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--lv-navy);
  margin-top: 0;
  line-height: 1.3;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Base Spacing (4px / 8px grid)
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);
}

section {
  padding: var(--space-8) var(--space-4);
}

/* ==========================================================================
   Button Base
   ========================================================================== */

button,
.button,
input[type="submit"] {
  font-family: var(--font-family);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-6);
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* ==========================================================================
   Form Base
   ========================================================================== */

input,
textarea,
select {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}
