.carton-suggestion-box {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #e7d58a;
  background: #fffbea;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.carton-suggestion-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.carton-suggestion-text {
  font-size: 14px;
  line-height: 1.45;
  color: #222;
  flex: 1 1 260px;
}

.carton-suggestion-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carton-suggestion-confirm {
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #111;
  color: #fff;
}

.carton-suggestion-confirm:hover {
  opacity: 0.92;
}

.carton-suggestion-dismiss {
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.carton-suggestion-dismiss:hover {
  background: #f5f5f5;
}