
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #333;
  color: #fff;
  padding: 16px 0;
}
.site-header .logo {
  font-size: 20px;
  font-weight: bold;
}
.site-header nav {
  float: right;
}
.site-header nav a {
  color: #fff;
  margin-left: 24px;
  text-decoration: none;
}
.product-page {
  padding: 40px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.product-images img {
  width: 100%;
  border-radius: 8px;
}
.product-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.price {
  font-size: 24px;
  color: #b46d4e;
  margin-bottom: 20px;
}
.description {
  margin-bottom: 20px;
}
.swatches {
  display: flex;
  margin-bottom: 20px;
}
.swatch {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.swatch-light {
  background: #d9d0c3;
}
.swatch-wood {
  background: #a88a6c;
}
.add-to-cart {
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.site-footer {
  text-align: center;
  padding: 24px 0;
  background: #f5f5f5;
  margin-top: 80px;
}
