.gold-button {
  /* Căn chỉnh chung */
  display: inline-block;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f7f1e1; /* Màu chữ nhạt, hơi gần trắng ngả kem */
  letter-spacing: 1px;
  cursor: pointer;
  background: linear-gradient(to bottom, #f7d08a, #e1b94b);
  border: 2px dotted #d32f2f; /* Viền chấm đỏ đậm */
  border-radius: 50px; /* Bo tròn hai đầu */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

/* Hiệu ứng hover: làm sáng hơn một chút và đẩy lên */
.gold-button:hover {
  background: linear-gradient(to bottom, #f8d58e, #e3bc4f);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
