
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f9f6f1;
  color: #2b2b2b;
}


.top-bar {
  background-color: #d8c4a3;
  color: #4b3f2f;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 1.1rem;
}


.hero {
  background: linear-gradient(rgba(248, 243, 235, 0.9), rgba(255, 255, 255, 0.9)), url('office-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 2px solid #d4c4a3;
}
.hero h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #4b3f2f;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.hero h1::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #b48c58;
  bottom: 0;
  left: 25%;
  border-radius: 2px;
}
.hero p {
  font-size: 1.2rem;
  color: #6b5843;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


.btn-shop {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  background-color: #b48c58;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-shop:hover {
  background-color: #8a6e45;
}


main {
  max-width: 950px;
  margin: 50px auto;
  padding: 20px 30px;
  background-color: #fffaf0;
  border: 1px solid #e0d3b8;
  border-radius: 14px;
  line-height: 1.8;
  color: #3b2f22;
}
main h2 {
  text-align: center;
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 25px;
}
main p {
  font-size: 1.1rem;
  text-align: justify;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.product-card {
  background-color: #fffaf0;
  border: 1px solid #e0d3b8;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: auto;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.product-card h3 {
  color: #4b3f2f;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.product-card p {
  color: #3b2f22;
  font-size: 1rem;
  margin-bottom: 12px;
}


nav {
  background-color: #eaddc3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}
nav a {
  text-decoration: none;
  color: #4b3f2f;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #8a6e45;
}


footer {
  background-color: #f0e7d8;
  border-top: 2px solid #d4c4a3;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  color: #4b3f2f;
}
.footer-links {
  margin-bottom: 8px;
}
.footer-links a {
  color: #4b3f2f;
  text-decoration: none;
  font-weight: bold;
}
.footer-links a:hover {
  text-decoration: underline;
  color: #8a6e45;
}
