body {
  background: #f5f5f1;
}

.etsy-tool-wrap {
  max-width: 1150px;
  margin: 48px auto;
  padding: 36px;
  background: #ffffff;
  border: 1px solid #e1e3df;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(34, 34, 34, 0.08);
  font-family: inherit;
}

.etsy-tool-wrap h2 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #222222;
  font-weight: 800;
}

.tool-subtitle {
  font-size: 18px;
  color: #595959;
  margin-bottom: 30px;
  line-height: 1.6;
}

.etsy-form {
  display: grid;
  grid-template-columns: 1fr 240px 230px;
  gap: 12px;
  margin-bottom: 32px;
}

.etsy-form input,
.etsy-form select {
  width: 100%;
  padding: 17px 20px;
  border: 2px solid #222222;
  border-radius: 999px;
  font-size: 16px;
  background: #ffffff;
  color: #222222;
  outline: none;
}

.etsy-form input:focus,
.etsy-form select:focus {
  box-shadow: 0 0 0 4px rgba(241, 100, 30, 0.18);
}

.etsy-form button,
.tool-actions button,
.copy-btn {
  border: none;
  border-radius: 999px;
  background: #f1641e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.etsy-form button {
  padding: 16px 22px;
}

.etsy-form button:hover,
.tool-actions button:hover,
.copy-btn:hover {
  background: #d65316;
  transform: translateY(-1px);
}

.etsy-output {
  display: grid;
  gap: 18px;
}

.output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.output-head h3 {
  margin: 0;
  font-size: 20px;
  color: #222222;
  font-weight: 800;
}

.copy-btn {
  padding: 9px 16px;
  font-size: 13px;
}

#etsy-title-output,
#etsy-tags-output,
#etsy-description-output,
#etsy-niche-output,
#etsy-buyer-output,
#etsy-gift-output,
#etsy-keywords-output,
#etsy-alt-output,
#etsy-batch-output {
  min-height: 56px;
  padding: 18px 20px;
  background: #fffdf9;
  border: 1px solid #e6e1dc;
  border-radius: 18px;
  color: #222222;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
}

#etsy-title-output {
  font-size: 17px;
  font-weight: 700;
}

#etsy-tags-output {
  font-weight: 600;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.tool-actions button {
  padding: 13px 20px;
}

.batch-wrap {
  margin-top: 28px;
  padding: 24px;
  background: #fdf8f3;
  border: 1px solid #e6e1dc;
  border-radius: 24px;
}

.batch-wrap h3 {
  margin-top: 0;
  font-size: 22px;
  color: #222222;
}

@media (max-width: 900px) {
  .etsy-tool-wrap {
    padding: 24px;
    margin: 28px auto;
  }

  .etsy-tool-wrap h2 {
    font-size: 30px;
  }

  .etsy-form {
    grid-template-columns: 1fr;
  }

  .tool-actions {
    flex-direction: column;
  }

  .tool-actions button {
    width: 100%;
  }
}