/* =============================================
   BASE.CSS — Variables, Reset, Utilities
   Gigi's Sweets & Treats
   ============================================= */

:root {
  --pink: #f4a7b9;
  --pink-light: #fce4ec;
  --pink-deep: #e91e8c;
  --mauve: #c06080;
  --brown: #5c2d1e;
  --brown-light: #8b5e52;
  --lavender: #d4b8e0;
  --mint: #b2e0d4;
  --cream: #fff8f5;
  --white: #ffffff;
  --text: #3a1a1a;
  --shadow: rgba(92, 45, 30, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Toast ---- */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--brown);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  z-index: 2000;
  transition: transform 0.3s;
  pointer-events: none;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ---- Footer ---- */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
  line-height: 1.8;
}

footer a { color: var(--pink); text-decoration: none; }

footer .footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--pink-light);
  margin-bottom: 8px;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--brown-light);
  font-size: 14px;
}
.empty-state .empty-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
