
/* Welcome Panel */
#welcome-panel {
  position: relative;
  margin: -150px auto 0 auto; /* negative top margin pushes it up */
  max-width: 600px;
  margin: 0 auto;
  padding: 25px 20px;
  background: linear-gradient(135deg, #4b3621 0%, #3a2c1e 100%); /* Mocha Mousse tones */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 1s ease-out;
  color: #f5f5f0; /* light sand text for readability */
}


#welcome-panel-empty-wishlist {
  position: relative;
  margin: -150px auto 0 auto; /* negative top margin pushes it up */
  max-width: 600px;
  margin: 0 auto;
  padding: 25px 20px;
  background: linear-gradient(135deg, #4b3621 0%, #3a2c1e 100%); /* Mocha Mousse tones */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 1s ease-out;
  color: #f5f5f0; /* light sand text for readability */
}

/* Sand Buttons with Gold Border */
.btn-orange {
  display: inline-block;
  margin: 12px 0;
  padding: 14px 32px;
  border-radius: 40px;
  border: 1.5px solid #d4af37; /* subtle gold border */
  background: linear-gradient(135deg, #e8dfc9, #d6c6a5);
  color: #2f2a23;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 60%;   /* bigger but still centered */
  max-width: 400px;


}

.btn-orange:hover {
  background: linear-gradient(135deg, #d6c6a5, #c8b690);
  border-color: #c5a028; /* slightly deeper gold on hover */
  color: #1e1a15;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}



.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* === Mobile adjustments === */
@media (max-width: 768px) {

  .btn-orange {
    width: 85%;
    font-size: 0.95rem;
  }
  #welcome-panel-empty-wishlist {
  margin: 40px auto 0 auto; /* negative top margin pushes it up */
    padding: 20px 15px;

  }
   #welcome-panel-empty-wishlist h1 {
    font-size: 1.5rem;
  }
  #welcome-panel-empty-wishlist .welcome-text {
    font-size: 0.95rem;
  }

  #welcome-panel {
  margin: 40px auto 0 auto; /* negative top margin pushes it up */
    padding: 20px 15px;
  }
  #welcome-panel h1 {
    font-size: 1.5rem;
  }
  #welcome-panel .welcome-text {
    font-size: 0.95rem;
  }
}