/* ----- Основни стилове ----- */
body {
  margin: 0;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #111;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

h1, h2 {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 12px;
  line-height: 1.3;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 20px;
}

/* ----- Връзки ----- */
a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}

a:hover {
  opacity: 0.7;
}

/* ----- Формуляри ----- */
input, select, textarea, button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  background: #fff;
}

textarea {
  resize: none;
}

/* ----- Бутон ----- */
button {
  background: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #333;
}

/* ----- Контейнер за цена ----- */
#priceBox, #priceBoxBottom {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ----- Контейнер за изображение ----- */
.product-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
}


/* ----- Скрити елементи ----- */
.hidden {
  display: none;
}

/* ----- Thanks page ----- */
.thanks-box {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 25px;
  font-weight: 600;
}

.btn:hover {
  background: #333;
}

/* ----- Мобилен вид ----- */
@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  h1 {
    font-size: 24px;
  }

  #priceBox, #priceBoxBottom {
    font-size: 20px;
  }
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 14px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.topnav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
}

.topnav a:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .topnav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
}

.topnav a.active {
  border-bottom: 2px solid #000;
}

.payment-box {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #fafafa;
  text-align: center;
  font-size: 15px;
}

.payment-box h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

