body {
  font-family: 'Outfit', sans-serif;
  background-color: #f8f5f1;
  color: #4b3e3e;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.instructions {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.order-btn {
  background-color: #c8b8a9;
  color: white;
  border: none;
  padding: 14px 26px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background 0.3s;
}
.order-btn:hover {
  background-color: #b6a798;
}

.catalog img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Modal */
.form-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.form-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  margin: 100px auto;
  position: relative;
  text-align: left;
}

.form-content h2 {
  margin-top: 0;
}

.form-content label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.form-content input,
.form-content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
  border-radius: 6px;
  font-size: 1em;
}

.form-content button {
  background-color: #c8b8a9;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.form-content button:hover {
  background-color: #b6a798;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}