* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f7f4f1;
  color: #222;
  line-height: 1.6;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e0d7cf;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a:hover {
  color: #000;
}

main {
  max-width: 1100px;
  margin: 32px auto 64px;
  padding: 0 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: #1f1b18;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.btn-primary:hover {
  background: #3a332d;
}

.hero-image {
  background: linear-gradient(135deg, #e7ded5, #f7f4f1);
  border-radius: 18px;
  height: 260px;
}

.section-title {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-subtitle {
  color: #666;
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e0d7cf;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.product-price {
  font-weight: 600;
  margin: 6px 0;
}

.product-detail {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
}

.product-meta {
  font-size: 0.85rem;
  color: #777;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #d0c4b8;
  font-size: 0.75rem;
  margin-right: 4px;
  margin-bottom: 4px;
}

form {
  max-width: 520px;
}

label {
  display: block;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d0c4b8;
  background: #fdfaf7;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  border-top: 1px solid #e0d7cf;
  padding: 18px 32px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  background: #fff;
  margin-top: 40px;
}
