/* ============================
   B-DOGS Wood Working - Styles
=============================== */

/* ---------------------------
   Global
--------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* ---------------------------
   Containers & Layout
--------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 16px 0;
}

/* ---------------------------
   Header
--------------------------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .brand {
  display: flex;
  align-items: center;
}

.site-header .brand h1 {
  font-size: 18px;
  font-weight: 600;
}

.site-header .brand div {
  font-size: 12px;
  color: #666;
}

.nav a {
  margin-left: 20px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #8b0000;
}

/* ---------------------------
   Buttons
--------------------------- */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #8b0000;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #a20000;
}

.btn-outline {
  background-color: #fff;
  color: #8b0000;
  border: 2px solid #8b0000;
}

.btn-outline:hover {
  background-color: #8b0000;
  color: #fff;
}

/* ---------------------------
   Hero
--------------------------- */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin: 24px 0;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.hero p.lead {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* ---------------------------
   Grid / Cards
--------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 8px;
}

.card h4 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.card .price {
  color: #8b0000;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

.card a.btn {
  align-self: flex-start;
  text-align: center;
}

/* ---------------------------
   Stock Label
--------------------------- */
.stock.in-stock {
  color: green;
  font-weight: 600;
}

.stock.out-of-stock {
  color: red;
  font-weight: 600;
}

/* ---------------------------
   Forms
--------------------------- */
input, textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
