
.wc-feedback {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.wc-feedback-title {
  font-size: 22px;
  margin-bottom: 15px;
}
.wc-feedback-buttons {
  display: flex;
  justify-content: space-around;
}
.wc-feedback-btn {
  font-size: 40px;
  border: none;
  background: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: transform 0.2s;
}
.wc-feedback-btn:hover {
  transform: scale(1.1);
}
.wc-feedback-thanks {
  font-size: 18px;
  color: #28a745;
  font-weight: bold;
}
