:root {
  /* Palette: Natural Greens & Earthy Tones */
  --primary-color: #337357; /* Deep Green */
  --secondary-color: #5F6F52; /* Olive */
  --accent-color: #5CB338; /* Fresh Green */
  --light-color: #FEFAE0; /* Cream */
  --dark-color: #0F1021; /* Dark Night */
  --gradient-primary: linear-gradient(135deg, #5F6F52 0%, #337357 100%);
  --hover-color: #2A5F45;
  --background-color: #F2F2F2; /* Soft Grey */
  --text-color: #5F6F52;
  --border-color: rgba(51, 115, 87, 0.2);
  --divider-color: rgba(95, 111, 82, 0.1);
  --shadow-color: rgba(51, 115, 87, 0.15);
  --highlight-color: #D35400; /* Complementary Burnt Orange */
  
  --main-font: 'Open Sans', sans-serif;
  --alt-font: 'Roboto Condensed', sans-serif;
  
  --container-width: 1000px; /* Random 900-1400 */
  --prod-img-width: 350px; /* Random 300-400 */
}

body {
    font-family: var(--main-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--alt-font);
}

/* Abstract Background Pattern SVG */
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23337357' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}