body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #d4a373, #faedcd);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.card {
  background: #fffaf2;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.coffee-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

h2 {
  color: #6b4226;
}

p {
  color: #5c3d2e;
}

button {
  margin: 8px;
  padding: 10px 20px;
  border: none;
  background: #6f4e37;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #3c2f2f;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.6s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

@media (max-width: 600px) {
  .coffee-img {
    max-height: 200px;
  }

  button {
    width: 100%;
    margin: 5px 0;
  }
}
