* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background: #fff8f0;
  color: #222;
}

.hero {
  max-width: 520px;
  margin: auto;
  background: #111;
  text-align: center;
}

.hero img {
  width: 100%;
  display: block;
}

.hero.small {
  padding: 45px 20px;
  color: white;
  background: linear-gradient(135deg, #111, #9b6a22);
}

.hero.small h1 {
  font-size: 42px;
  margin: 0;
  color: #ffd98a;
}

.container {
  max-width: 520px;
  margin: auto;
  background: white;
  padding: 20px;
}

h1 {
  font-size: 27px;
  line-height: 1.4;
  color: #9b5c17;
}

h2 {
  font-size: 20px;
  margin-top: 25px;
}

.desc {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
}

.price {
  background: #111;
  color: #ffd98a;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 18px;
  border-radius: 18px;
  margin: 20px 0;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust p {
  background: #fff3df;
  padding: 13px;
  border-radius: 12px;
  text-align: center;
  margin: 0;
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #eee;
}

.warning {
  background: #fff0d9;
  color: #7b4300;
  border-right: 5px solid #d98a24;
  padding: 14px;
  margin: 20px 0;
  border-radius: 12px;
  line-height: 1.7;
  font-weight: bold;
}

form {
  background: #f7f7f7;
  padding: 16px;
  border-radius: 18px;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.products {
  max-width: 520px;
  margin: auto;
  padding: 20px;
}

.card {
  display: block;
  background: white;
  text-decoration: none;
  color: #222;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  display: block;
}

.card h2 {
  margin: 15px;
  color: #9b5c17;
}

.card p {
  margin: 0 15px 18px;
  font-weight: bold;
  color: #111;
}
.main-img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.video-container {
  margin: 20px 0;
}

.video-container video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

select {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
}

.note {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

button:hover {
  background: #1ebe5d;
}