/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fffaf7;
  color: #3a2f2b;
  line-height: 1.6;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #f4ede4;
  padding: 20px 0;
  border-bottom: 1px solid #d8cfc0;
}

.site-title a {
  font-size: 2rem;
  font-weight: bold;
  color: #3a2f2b;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.site-nav a {
  text-decoration: none;
  color: #3a2f2b;
  font-weight: bold;
  padding: 8px 10px;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #7a5c4b;
}

/* Storefront Layout */
.storefront {
  display: flex;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  align-items: flex-start;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background-color: #f4ede4;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sidebar h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #3a2f2b;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list li a {
  color: #3a2f2b;
  text-decoration: none;
  font-weight: bold;
}

.category-list li a:hover {
  color: #7a5c4b;
}

/* Product Area */
.product-area {
  flex: 1;
  text-align: center;
}

.product-area h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Smaller Grid for Featured Picks and Wedding Signs */
.small-grid .small-card {
  width: 220px;
}

.small-grid .small-card img {
  max-height: 150px;
}

/* Product Card */
.product-card {
  background-color: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  color: #6e5c4b;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #3a2f2b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.3s;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover {
  background-color: #7a5c4b;
}

/* Responsive Grid for Mobile */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 90%;
  }
}
