body {
  font-family: 'Montserrat', sans-serif;
  background: #fdf9f3;
  color: #3c2f2f;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #a45c40;
}

a {
  color: #a45c40;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #f2c6a0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 0;
}

/* HEADER */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #a45c40;
}
.logo .accent {
  color: #f2c6a0;
}
.container img {
  max-height: 100px;
  margin-right: 15px;
}

/* NAVIGATION */
.nav {
  display: flex;
}
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 4px;
  color: #3c2f2f;
}
.nav-list a:hover {
  background: #f2c6a0;
  color: #ffffff;
}

/* HERO */
.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  background-color: rgb(243, 202, 161);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  background-color: #f2c6a0;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background-color: #e0b48f;
}

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-card img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 1px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}
.product-card .price {
  color: #a45c40;
  font-weight: bold;
  margin: 0.5rem 0;
}
.product-card .desc {
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #a45c40;
  color: #ffffff;
}
.btn-primary:hover {
  background: #3c2f2f;
}
.btn-secondary {
  background: #fff2e6;
  color: #3c2f2f;
}
.btn-secondary:hover {
  background: #f2c6a0;
  color: #ffffff;
}

/* CONTACT SECTION */
.section.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
}
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
 
}
.contact-form label {
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn-primary {
  background: #E07A5F;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}
.contact-form .btn-primary:hover {
  background: #CD5A3E;
}

/* CART ITEMS */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.cart-item p {
  margin: 0;
}
#cart-total {
  font-weight: bold;
  margin-top: 2rem;
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-text p {
  font-size: 1rem;
  color: #3c2f2f;
}
.about-image img {
  border-radius: 8px;
  width: 100%;
}
@media(min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
}

/* FOOTER */
.site-footer {
  background: #a45c40;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}
.footer-links a {
  color: #ffffff;
  margin: 0 1rem;
}
.footer-links a:hover {
  color: #f2c6a0;
}
.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
}
