/* ===== OTTER BRAND CSS ARCHITECTURE ===== */
/* ===== MODERN LUXURY MINIMALIST THEME ===== */

/* === CSS VARIABLES === */
:root {
  /* === BRAND COLORS === */
  --brand-dark: #000000;          /* Dark metallic - header/footer */
  --brand-gold: #D4AF37;          /* Shiny gold accents */
  --brand-black: #000000;         /* Pure black */
  
  /* === LEATHER PRODUCT COLORS === */
  --leather-brown: #8B4513;       /* Rich brown */
  --leather-tan-dark: #A0522D;    /* Dark tan */
  --leather-tan-light: #DEB887;   /* Light tan */
  --leather-green: #228B22;       /* Forest green */
  --leather-burgundy: #800020;    /* Deep burgundy */
  
  /* === CONTENT AREA COLORS === */
  --content-bg: #FFFFFF;          /* White background for products */
  --content-offwhite: #F8F9FA;    /* Off-white for sections */
  --content-text: #2D3748;        /* Dark gray for text */
  --content-light: #718096;       /* Light gray for secondary text */
  
  /* === NEUTRAL SCALE === */
  --neutral-50: #F9FAFB;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  
  /* === TYPOGRAPHY === */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  
  /* === FONT SIZES === */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  
  /* === SPACING SCALE === */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  
  /* === BORDER RADIUS === */
  --radius-sm: 0.125rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  /* === SHADOWS === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* === CSS RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--content-text);
  background-color: var(--content-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY SYSTEM === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  color: var(--brand-black);
}

h1 { 
  font-size: var(--text-5xl);
  font-weight: 700;
}

h2 { 
  font-size: var(--text-4xl);
  font-weight: 600;
}

h3 { 
  font-size: var(--text-3xl);
}

h4 { 
  font-size: var(--text-2xl);
}

h5 { 
  font-size: var(--text-xl);
}

h6 { 
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

/* === GRID SYSTEM === */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* === FLEXBOX UTILITIES === */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

/* === SPACING UTILITIES === */
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.ml-4 { margin-left: var(--space-4); }
.mr-4 { margin-right: var(--space-4); }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.mx-4 { margin-left: var(--space-4); margin-right: var(--space-4); }

.p-4 { padding: var(--space-4); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-gold);
  color: var(--brand-black);
  padding: var(--space-3);
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }
  
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
}/* Ensure content starts below fixed header */
body {
    padding-top: 60px;
    margin: 0;
    font-family: var(--font-primary);
}

@media (max-width: 640px) {
    body {
        padding-top: 55px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
}/* Ensure content starts below fixed header */
body {
    padding-top: 80px; /* Match new header height */
    margin: 0;
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
}