/*
Theme Name: Lester Deluxe — Canyon WooCommerce
Theme URI: https://lesterdeluxe.com/
Author: Lester Deluxe
Description: WooCommerce conversion of the supplied Shopify Canyon/Horizon theme export. Designed to preserve the original visual language while replacing Shopify/Liquid functionality with native WordPress and WooCommerce.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Requires Plugins: WooCommerce
Text Domain: lester-deluxe-canyon
*/

:root {
  --color-background: #FFFFFF;
  --color-foreground: #090a11;
  --color-foreground-heading: #000000;
  --color-primary: #232743;
  --color-primary-hover: #090a11;
  --color-border: #f0f1f4;
  --color-shadow: #000000;
  --color-primary-button-background: #232743;
  --color-primary-button-text: #f0f1f4;
  --color-primary-button-border: #232743;
  --color-primary-button-hover-background: #735f3f;
  --color-primary-button-hover-text: #f0f1f4;
  --color-secondary-button-background: transparent;
  --color-secondary-button-text: #090a11;
  --color-secondary-button-border: #090a11;
  --color-input-background: #FFFFFF;
  --color-input-text: #000000;
  --color-input-border: #232743;
  --style-border-radius-inputs: 8px;
  --page-width: 1440px;
  --page-margin: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-foreground);
  background: var(--color-background);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}
h1,h2,h3,h4,h5,h6 {
  font-family: Barlow, Inter, Arial, sans-serif;
  color: var(--color-foreground-heading);
  line-height: 1.05;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
.site-container { width: min(calc(100% - 48px), var(--page-width)); margin-inline: auto; }

