/* AgricHub storefront theme overrides to match landing-page */

:root {
  /* Landing-page palette mapped to storefront variables */
  --primary: #79b823; /* thm-base */
  --secondary: #2a7d2e; /* thm-primary */
  --text: #123316; /* thm-black */
  --textSubdued: #7c8082; /* thm-gray */
  --background: #ffffff;
  --divider: #e1e3e5;
  --border: #e4e4e4;
  --interactive: #2a7d2e; /* accent */
  --success: #79b823;
}

/* Typography to mirror landing-page */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--background);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', cursive;
}

/* Buttons: align with .thm-btn look & feel */
.button.primary, .thm-btn {
  background: var(--primary);
  color: #ffffff;
  border: 2px solid var(--primary);
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}
.button.primary:hover, .thm-btn:hover {
  filter: brightness(0.92);
}

/* Header & footer softness */
.header {
  border-bottom: 1px solid var(--divider);
}
.footer {
  background-color: #f6f6f6;
  border-top: 1px solid #ddd;
}

/* Form field accent */
input, select, textarea {
  border-color: var(--border);
}

