/* Telegram order button in product popup */
.tg-custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-top: 15px;
  background: transparent;
  border: 1px solid #c34623;
  color: #c34623;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.tg-custom-btn:hover {
  background: #c34623;
  color: #fff;
}
.tg-custom-btn svg {
  width: 18px;
  height: 18px;
  fill: #c34623;
  transition: fill 0.3s ease;
  flex-shrink: 0;
}
.tg-custom-btn:hover svg {
  fill: #fff;
}