/*
Theme Name: Happy Hunt
Theme URI: https://happyhunt.example
Author: Happy Hunt
Description: Custom WooCommerce theme recreating the Happy Hunt gift shop design 1:1.
Version: 1.0
Text Domain: happy-hunt
*/

/* ---- Design tokens copied exactly from the original design system ---- */
:root {
  --radius: 0.125rem;
  --c-white: oklch(0.995 0.002 80);
  --c-cream: oklch(0.955 0.012 80);
  --c-stone: oklch(0.88 0.012 70);
  --c-sand: oklch(0.78 0.045 75);
  --c-taupe: oklch(0.6 0.035 40);
  --c-cocoa: oklch(0.28 0.025 40);
  --c-forest: oklch(0.42 0.045 155);
  --c-forest-soft: oklch(0.55 0.04 155);

  --background: var(--c-white);
  --foreground: var(--c-cocoa);
  --border: oklch(0.9 0.01 70);
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.font-serif {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* WooCommerce base resets so plugin default styles don't fight the design */
.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
}
