/* ===== BUTTON BÁO GIÁ ===== */
.btn-quote {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #4cd964);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  animation: pulse 1.6s infinite;
  position: relative;
  overflow: hidden;
}

.btn-quote:hover {
  transform: scale(1.08);
}

.btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
}

.btn-quote:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes shine {
  100% { left: 120%; }
}

/* tránh bị theme override */
.btn-quote * {
  color: inherit;
}