@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color:  #2b1e17;
  color: #f2ede8;
  line-height: 1.7;
}
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.section {
  max-width: 720px;
  margin: 7rem auto;
  padding: 0 2rem;
}

}

.products {
  list-style: none;
  margin-top: 1rem;
}

.products li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
#chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(242, 237, 232, 0.9);
  color: #2b1e17;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

#chat-toggle:hover {
  opacity: 1;
}


#chatbox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 280px;
  background: #f5f1ed;
  color: #3a2a21;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: Georgia, serif;
}

#chat-header {
  background: #3a2a21;
  color: #f5f1ed;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

#chat-messages {
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.message {
  margin-bottom: 8px;
}

.message.bot {
  opacity: 0.85;
}

.message.user {
  text-align: right;
  font-weight: bold;
}

#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#chat-input input {
  flex: 1;
  border: none;
  padding: 8px;
  font-family: inherit;
}

#chat-input button {
  border: none;
  background: #3a2a21;
  color: #f5f1ed;
  padding: 8px 12px;
  cursor: pointer;
}
.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 6px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 500px;
  opacity: 0.85;
}

 .section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 241, 237, 0.3);
  display: inline-block;
  padding-bottom: 0.4rem;
   ::selection {
  background: rgba(245, 241, 237, 0.2);
}

footer {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}
   h1 {
  text-transform: uppercase;
  letter-spacing: 8px;
}

h2 {
  letter-spacing: 1px;
}
