body {
  background: #f6f2e8 url('images/bg-texture.jpg') no-repeat center top;
  background-size: cover;
  color: #3a2b1a;
  font-family: "Georgia", serif;
  margin: 0;
  line-height: 1.6;
}

header {
  background: rgba(58, 43, 26, 0.8);
  color: #fcebb6;
  padding: 30px 15px;
  text-align: center;
}

h1 {
  font-family: "Papyrus", cursive;
  font-size: 2.5em;
  margin: 0;
}

nav {
  background: #4a3724;
  text-align: center;
  padding: 10px;
}

nav a {
  color: #fcebb6;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 30px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

img.preview {
  margin-top: 20px;
  max-width: 100%;
  border: 4px solid #d4b483;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

footer {
  margin-top: 40px;
  padding: 20px;
  background: rgba(58, 43, 26, 0.9);
  color: #fcebb6;
  text-align: center;
  font-size: 0.9em;
}
.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px auto;
  max-width: 900px;
}

.price-card {
  background: rgba(250, 240, 210, 0.95);
  border: 2px solid #d4b483;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.price-card h3 {
  color: #3a2b1a;
  margin-bottom: 10px;
}

.price-card p {
  margin: 5px 0;
}

.price-card .price {
  font-size: 1.4em;
  font-weight: bold;
  color: #4a3724;
  margin-top: 10px;
}