:root {
  --terracotta: #D27D56;
  --terracotta-dark: #B85C38;
  --green: #2F6B3E;
  --green-dark: #1E4A2F;
  --light-bg: #FDF8F4;
  --text: #2D2D2D;
  --white: #FFFFFF;
  --gray-light: #F5F0EC;
  --border: #E0D6CD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--light-bg);
  color: var(--text);
}

/* Top bar */
.top-bar {
  background: var(--green-dark);
  color: white;
  padding: 6px 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
}
.top-bar a { color: white; margin-left: 15px; text-decoration: none; }

/* Header */
.site-header {
  background: white;
  padding: 7px 10px;
  border-bottom: 3px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
position: sticky;
  top: 0;
  z-index: 1000;
}
}
.logo img {
    max-width: 100%;
    height: auto;
}
.logo { font-size: 1.8rem; font-weight: bold; color: var(--green); text-decoration: none; }
.logo span { color: var(--terracotta); }
nav a { color: var(--text); margin: 0 12px; text-decoration: none; font-weight: 500; }
nav a:hover { color: var(--terracotta); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary { background: var(--terracotta); color: white; border: none; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: white; }

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../images/hero-bg.jpg');
  background-size: cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; margin-bottom: 25px; }

/* Category grid, product cards, etc. */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.section-title { text-align: center; margin: 40px 0 20px; color: var(--green); }
.grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card .info { padding: 15px; }
.card .price { color: var(--terracotta); font-weight: bold; font-size: 1.1rem; }

/* Footer */

.site-footer {
  background: var(--green-dark);
  color: white;
  padding: 40px 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col { margin: 10px; }
.footer-col a { color: #ccc; text-decoration: none; display: block; margin: 5px 0; }


.card { position: relative; }

