body {
margin: 0;
font-family: 'Montserrat', sans-serif;
background-color: #fff8f5;
color: #5b3a29;
}

header {
background-color: #f5e6de;
padding: 20px 0;
text-align: center;
}

header h1 {
font-family: 'Pacifico', cursive;
font-size: 3rem;
color: #c48f65;
margin: 0;
}

header p {
font-size: 1.2rem;
color: #8c6c55;
margin-top: 5px;
}

nav {
display: flex;
justify-content: center;
gap: 30px;
margin: 20px 0;
}

nav a {
text-decoration: none;
color: #5b3a29;
font-weight: 600;
}

nav a:hover {
color: #c48f65;
}

section {
padding: 60px 20px;
text-align: center;
}

.hero h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.hero p {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}

/* ======== Products / Shop ======== */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product {
  background: #FFF4F0;
  width: 220px;
  height: 350px; /* fixed height for uniformity */
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product img {
  width: 160px;
  height: 160px;
  object-fit: contain; /* ensures full image visible */
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.product h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.product p {
  font-size: 0.9rem;
  margin: 10px 0;
  flex-grow: 1;
}

.product a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #C48F65;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}

.product a:hover {
  background-color: #A36946;
}

/* ======== Blog Pages ======== */
.blog-list {
  max-width: 700px;
  margin: auto;
  padding: 20px;
}

.blog-list article {
  background: #FFF4F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-post {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
}

.shop-link {
  margin-top: 30px;
  font-weight: bold;
}

.blog-product {
  background: #FFF4F0;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  width: 200px;
  margin: 20px auto; /* centers it in the blog */
}

.blog-product img {
  width: 160px;
  height: 160px;
  object-fit: contain; /* keeps the full image visible */
  border-radius: 10px;
  display: block;
  margin: 0 auto 10px;
}

.blog-product h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.blog-product p {
  font-size: 0.9rem;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.blog-card {
  background: #FFF4F0;
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  transition: transform 0.2s;
}

.blog-card img {
  width: 100%;
  height: 160px;        /* fixed card image height */
  object-fit: contain;   /* shows the full image without cropping */
  background: #FFF8F5;  /* fills empty space with soft nude */
  border-radius: 10px;
  margin-bottom: 10px;
}


.blog-card h3 {
  font-size: 1rem;
  margin: 10px 0;
}

.blog-card p {
  font-size: 0.9rem;
  flex-grow: 1;
}

.blog-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #C48F65;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}

.blog-card a:hover {
  background-color: #A36946;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 80%;
  }
}

/* ======== Footer ======== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #8C6C55;
}

/* ======== Responsive ======== */
@media screen and (max-width: 600px) {
  .products {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 80%;
    height: auto;
  }

  .product img {
    width: 100%;
    height: auto;
  }
}
