body{
  margin:0;
  font-family: "Roboto", Pacifico, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
header {
  background-color: #15803D;
}
:where([class^="ri-"])::before { content: "\f3c2"; }
.header-logo {
  max-height: 40px;
  width: auto;
}
.whatsapp-btn {
  background-color:#006838;
  transition: all 0.2s ease;
}
.whatsapp-btn:hover {
  background-color: #006838;
}
.notification {
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  animation: slideIn 0.8s ease-out;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 300px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.success {
  background-color: #4CAF50;
}

.notification.error {
  background-color: #F44336;
}

.payment-option {
  transition: all 0.3s ease;
}
.payment-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.payment-option.selected {
  border-color: #22c55e;
  background-color: #f0fdf4;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .header-logo {
    max-height: 32px;
  }
  header div.flex.items-center.justify-between {
    padding: 0.75rem 1rem;
  }
  .header-buttons {
    gap: 0.5rem;
  }
  .header-buttons span {
    display: none;
  }
}