/* crg-shopping.css - styles for the shopping list widget */

#airecipes-shopping-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 340px;
  max-height: 70vh;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  z-index: 99999;
}

#airecipes-shopping-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  background: linear-gradient(180deg,#f7f7f7,#efefef);
  border-bottom:1px solid #eee;
}

#airecipes-shopping-title { font-weight:600; color:#333; }
#airecipes-shopping-toggle {
  border: none;
  background: transparent;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  color:#666;
}

#airecipes-shopping-body {
  padding: 10px;
  overflow:auto;
  max-height: 52vh;
}

#airecipes-shopping-items {
  margin-bottom: 12px;
}

.airecipes-item {
  display:flex;
  align-items:center;
  gap:8px;
  border-bottom: 1px dashed #eee;
  padding:6px 4px;
}

.airecipes-item .thumb {
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:4px;
  border: 1px solid #eee;
}

.airecipes-item .name { flex:1; font-size:14px; color:#222;}
.airecipes-item .controls { display:flex; align-items:center; gap:6px; }

.airecipes-item button.small {
  padding:4px 6px;
  background:#f0f0f0;
  border:1px solid #ddd;
  border-radius:4px;
  cursor:pointer;
}

.airecipes-item button.small:hover { background:#e6e6e6; }

.airecipes-item .trash {
  color:#c0392b;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size:16px;
}

#airecipes-shopping-actions {
  display:flex;
  gap:8px;
  justify-content:space-between;
  margin-top:8px;
}

#airecipes-shopping-actions .button {
  flex:1;
  padding:8px;
  border-radius:6px;
  border:1px solid #ddd;
  background:#ff6b35;
  color:#fff;
  cursor:pointer;
  font-weight:600;
}

#airecipes-send-form input[type="email"] {
  width:100%;
  padding:8px;
  margin:8px 0;
  border-radius:6px;
  border:1px solid #ddd;
}

#airecipes-send-form .button {
  padding:8px 10px;
  margin-right:6px;
  cursor:pointer;
}

#airecipes-shopping-empty { color:#777; font-size:14px; text-align:center; padding:10px 0; }
