/* Explore Button Styling */
.explore-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  border-radius: 100px; /* Fully rounded corners */
  font-family: var(--font-sf-pro), sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative;
  width: auto;
  text-align: center;
  padding: 15px 30px;
  font-size: 18px;
  min-width: 160px;
}

.explore-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  color: black;
  text-decoration: none;
}

/* Fix for z-index issues */
.explore-button {
  z-index: 10;
}

/* Mobile styles *