/* Avalehe korrigeerimine – EI mõjuta kategooria- ega tootelehti */

/* kogu avalehe sisu mõistlikku raami */
body {
  background: var(--bg);
  color: var(--ink);
}

/* bänner + menu konteiner */
header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  box-sizing: border-box;
}

/* bänner ise */
header img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* tsitaat bänneri all */
header .quote {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

/* menüü õigele kohale */
header nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 0;
  margin: 22px 0 6px;
  list-style: none;

}


header nav ul li a {
  text-decoration: none;
  color: #4b2e2e;
  font-size: 15px;
  font-weight: 600;
}


header nav ul li a:hover {
  text-decoration: underline;
}

/* avalehe sisu */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1.75;
}


/* Etsy blokk – keskel */
.main .etsy-block,
.etsy-block {
  text-align: center;
}
.main h1 {
  text-align: center;
}
.shop-cta {
  text-align: center;
  margin: 40px 0 30px;
}

.shop-button {
  display: inline-block;
  background: #6b8f71; /* rahulik roheline */
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.shop-button:hover {
  background: #5f8a72;
}





