.htsp-pricing {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.htsp-currency-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  padding-bottom: 1.5rem;
}

.htsp-currency-switcher select {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.htsp-pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 6rem;
}

.plan-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  padding: 1.5rem;
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-display {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.price-display .currency-symbol {
  font-size: 1.25rem;
  font-weight: 500;
  margin-right: 0.1rem;
}

.plan-card ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 0.95rem;
  flex-grow: 1;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.plan-card .button {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.button.disabled {
  background-color: #d1d5db; /* Tailwind's gray-300 */
  color: #6b7280;            /* Tailwind's gray-600 */
  cursor: not-allowed;
  pointer-events: none;
}

.plan-card .button:hover {
  background-color: #1d4ed8;
}


@media (max-width: 768px) {
  .htsp-pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .htsp-currency-switcher {
    position: static;
    text-align: center;
    margin-bottom: 1rem;
  }
}