/*
Theme Name: Zoologic Theme
Author: Senior WordPress Developer
Description: Custom WordPress & WooCommerce theme for Zoologic Pet Store.
Version: 1.0.0
Text Domain: zoologic
*/

:root {
  /* Colors */
  --color-background: #f2f5fc;
  --color-cards: #ffffff;
  --color-text: #131a2b;
  --color-text-secondary: #4d5566;
  --color-action: #165dfc;
  --color-links: #0f3fbf;
  --color-brand: #ff8b40;
  --color-promotion: #fff1e2;

  /* Typography */
  --font-headings: 'Baloo 2', cursive;
  --font-text: 'Figtree', sans-serif;
}

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  margin-top: 0;
  color: var(--color-text);
}

a {
  color: var(--color-links);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-action);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
