/* Body font */
body {
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.5;
    background-color: #f9fafb;

}
h1, h2, h3 {
    font-weight: 600;
}
.text-xs {
    font-size: 12px;
    font-weight: 400;
}
button {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}
input {
    font-family: 'Fredoka', sans-serif;
}
/* 🔥 Primary Button Style */
.btn-primary {
    background-color: rgb(168 85 247);
   
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 500;
    transition: 0.2s ease;
}

/* Hover */
.btn-primary:hover {
    background-color: rgb(147 51 234); /* darker purple */
}

/* Active */
.btn-primary:active {
    transform: scale(0.97);
}

/* Soft cards */
.card {
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Hover effect */
.card:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

/* Cute buttons */
.btn-primary {
    ackground: linear-gradient(45deg, #91C2FF, #FFC1CC);
    color: white;
    border-radius: 999px;
    padding: 8px 16px;
}

/* Category circle */
.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #EAF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-container {
  position: relative;
  width: 300px;
}

#locationInput {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.autocomplete-box {
  position: absolute;
  top: 45px;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.autocomplete-item {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-item:hover {
  background: #f5f5f5;
}
