/* Chips container */
#acc-food-rows {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 0;
}

#acc-food-rows:empty {
  display: none;
}

#acc-open-food-popup {
  height: 56px;
}

.acc-no-food-selected {
  color: #999;
  font-style: italic;
  font-size: 14px;
}

/* Individual chip */
.acc-food-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 2px 5px 2px 4px;
  font-size: 14px;
  color: #2a2a2a;
}

.acc-food-form-group {
  height: auto !important;
  min-height: 56px;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column;
  position: relative;
  grid-row: span 1; /* don't stretch across rows */
}

.acc-profile-column {
  overflow: visible;
  height: auto;
}

.acc-food-chip-label {
  line-height: 1.3;
}

.acc-food-chip-remove {
  background: none;
  border: none !important;
  cursor: pointer;
  font-size: 17px;
  color: #888;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.15s;
}

.acc-food-chip-remove:hover {
  color: #e33;
}

/* Actions bar */
.acc-food-actions-bar {
  display: block; /* change from flex to block */
  width: 100%;
  height: auto;
}

#acc-food-popup h3 {
  font-size: 24px;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 600 !important;
}

.acc-select-food-btn {
  background: #eceae9 !important;
  border: none !important;
  width: 100% !important;
  height: 100%;
  text-align: center !important;
  padding: 20px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 16px;
  color: #000;
}

.food-actions-bar {
  height: auto;
}

.acc-clear-all-food-btn {
  background: none;
  border: 1px solid #e33;
  color: #e33;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
}

.acc-clear-all-food-btn:hover {
  background: #e33;
  color: white;
}

/* Popup selected state */
#acc-food-popup a.acc-selected {
  color: white;
  border-radius: 4px;
  padding: 2px 6px;
}

/* Popup overlay */
.acc-grape-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.acc-popup-inner {
  background: white;
  border-radius: 12px;
  padding: 28px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.acc-popup-inner h3 {
  margin-top: 0;
}

/* Popup grid */
.acc-grape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.acc-grape-group {
  min-width: 140px;
}

.acc-grape-tree,
.acc-grape-tree ul {
  list-style: none;
  padding-left: 12px;
  margin: 0;
}

@media (max-width: 500px) {
  .acc-grape-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.acc-grape-tree > li {
  padding-left: 0;
}

.acc-grape-tree a {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  text-decoration: none;
  color: #2a2a2a;
  font-size: 14px;
  transition: background 0.12s, color 0.12s;
}

.acc-grape-tree a:hover {
  background: #e8eeff;
}

/* Popup footer */
.acc-popup-footer {
  margin-top: 16px;
  text-align: right;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.acc-confirm-food-btn {
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

.grape-popup {
  z-index: 10000;
}

/* Footer layout: chips left, button right */
.acc-popup-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

/* Chips row inside popup */
.acc-popup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.acc-popup-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #000;
  border-radius: 0px;
  padding: 4px 10px 4px 12px;
  font-size: 13px;
  border: 1px solid #000 !important;
}

.acc-popup-chip-remove {
  background: none;
  border: none !important;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.12s;
}

.acc-popup-chip-remove:hover {
  color: #FFF;
}

/*# sourceMappingURL=style.css.map */
