/* ==========================================================================
   FINKU GEN-Z — MODE ANTI-IMPULSIF STYLES (anti-impulsive.css)
   ========================================================================== */

.guilt-free-envelope {
  padding: 28px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, var(--bg-card) 70%);
  border: 1px solid var(--accent-pink);
  border-radius: var(--border-radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.guilt-free-envelope.empty {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.25) 0%, var(--bg-card) 70%);
  border: 2px solid var(--accent-red);
  box-shadow: var(--shadow-glow-red);
}

.envelope-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.envelope-title {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wishlist Parking Lot Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.wishlist-item {
  padding: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition-fast);
}

.wishlist-item:hover {
  border-color: var(--accent-purple);
  transform: translateY(-3px);
}

.timer-countdown {
  padding: 10px 14px;
  background-color: var(--bg-tertiary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
}

.streak-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, var(--bg-card) 70%);
  border: 1px solid var(--accent-purple);
  border-radius: var(--border-radius-md);
  margin-bottom: 28px;
}

.streak-flame {
  font-size: 48px;
  filter: drop-shadow(0 0 12px rgba(255, 181, 71, 0.6));
}
